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 +2 -0
pipeline.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
from typing import Dict, List, Any
|
| 2 |
from fastai.learner import load_learner
|
|
|
|
|
|
|
| 3 |
from PIL import Image
|
| 4 |
import os
|
| 5 |
import json
|
|
|
|
| 1 |
from typing import Dict, List, Any
|
| 2 |
from fastai.learner import load_learner
|
| 3 |
+
import fastai
|
| 4 |
+
from fastbook import *
|
| 5 |
from PIL import Image
|
| 6 |
import os
|
| 7 |
import json
|