brunneis commited on
Commit
a622111
1 Parent(s): 4b8f4f3

Updated README.md via fastc

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