brunneis commited on
Commit
61e11b3
·
verified ·
1 Parent(s): 3762241

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: deepset/tinyroberta-6l-768d
3
+ language:
4
+ - multilingual
5
+ tags:
6
+ - fastc
7
+ - fastc-2.0
8
+ - spam-detection
9
+ ---
10
+
11
+ # iq-agents-spam-2501.6
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.6')
23
+ label = model.predict_one(text)['label']
24
+ ```