Instructions to use mpd/test_tea with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastai
How to use mpd/test_tea with fastai:
from huggingface_hub import from_pretrained_fastai learn = from_pretrained_fastai("mpd/test_tea") - Notebooks
- Google Colab
- Kaggle
Update pipeline.py
Browse files- pipeline.py +1 -1
pipeline.py
CHANGED
|
@@ -7,7 +7,7 @@ import numpy as np
|
|
| 7 |
|
| 8 |
print('PIPELINE')
|
| 9 |
|
| 10 |
-
class
|
| 11 |
def __init__(self, path=""):
|
| 12 |
# IMPLEMENT_THIS
|
| 13 |
# Preload all the elements you are going to need at inference.
|
|
|
|
| 7 |
|
| 8 |
print('PIPELINE')
|
| 9 |
|
| 10 |
+
class ImageClassificationPipeline:
|
| 11 |
def __init__(self, path=""):
|
| 12 |
# IMPLEMENT_THIS
|
| 13 |
# Preload all the elements you are going to need at inference.
|