pinkieseb's picture
Upload README.md with huggingface_hub
9141ade verified
|
raw
history blame
320 Bytes
---
pipeline_tag: image-regression
---
# Carb Regression Model
This model predicts carbohydrate content from food images.
## Usage
```python
from transformers import pipeline
regressor = pipeline("image-regression", model="pinkieseb/carb_regression_model")
result = regressor("path/to/image.jpg")
print(result)
```