Instructions to use Lerik/cat_vs_dog_recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastai
How to use Lerik/cat_vs_dog_recognition with fastai:
from huggingface_hub import from_pretrained_fastai learn = from_pretrained_fastai("Lerik/cat_vs_dog_recognition") - Notebooks
- Google Colab
- Kaggle
test
Browse files
app.py
CHANGED
|
@@ -21,4 +21,4 @@ label = gr.outputs.Label()
|
|
| 21 |
examples = ["dog.jpg", "cat.jpg", "dunno.jpg"]
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 24 |
-
intf.launch(inline=False)
|
|
|
|
| 21 |
examples = ["dog.jpg", "cat.jpg", "dunno.jpg"]
|
| 22 |
|
| 23 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 24 |
+
intf.launch(inline=False, share=True)
|