File size: 438 Bytes
3e273d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
base_model: intfloat/multilingual-e5-large-instruct
tags:
- fastc
- fastc-2.0
---
# iq-code-supervisor-transaction-state-dependency-v3-multilingual-e5-large-instruct-fastc
## Install fastc
```bash
pip install fastc
```
## Model Inference
```python
from fastc import Fastc
model = Fastc('braindao/iq-code-supervisor-transaction-state-dependency-v3-multilingual-e5-large-instruct-fastc')
label = model.predict_one(text)['label']
``` |