File size: 304 Bytes
03a65b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
base_model: deepset/tinyroberta-6l-768d
tags:
- fastc
- fastc-2.0
---
# groq-stroke-detector-fastc
## Install fastc
```bash
pip install fastc
```
## Model Inference
```python
from fastc import Fastc
model = Fastc('labteral/groq-stroke-detector-fastc')
label = model.predict_one(text)['label']
``` |