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'] | |
``` |