File size: 348 Bytes
94372f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
base_model: intfloat/multilingual-e5-large-instruct
language:
- multilingual
tags:
- fastc
- fastc-2.0
- spam-detection
---
# iq-agents-spam-2501.0
## Install fastc
```bash
pip install fastc
```
## Model Inference
```python
from fastc import Fastc
model = Fastc('braindao/iq-agents-spam-2501.0')
label = model.predict_one(text)['label']
``` |