brunneis commited on
Commit
853f8af
·
verified ·
1 Parent(s): 28943a0

Updated README.md via fastc

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: intfloat/multilingual-e5-large-instruct
3
+ language:
4
+ - multilingual
5
+ tags:
6
+ - fastc
7
+ - fastc-2.0
8
+ - spam-detection
9
+ ---
10
+
11
+ # iq-agents-spam-2501.3
12
+
13
+ ## Install fastc
14
+ ```bash
15
+ pip install fastc
16
+ ```
17
+
18
+ ## Model Inference
19
+ ```python
20
+ from fastc import Fastc
21
+
22
+ model = Fastc('braindao/iq-agents-spam-2501.3')
23
+ label = model.predict_one(text)['label']
24
+ ```