Spaces:
Runtime error
Runtime error
Merge branch 'main' of https://huggingface.co/spaces/jdinh/freeze-detection
Browse files- app.py +1 -0
- requirements.txt +3 -1
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
__all__ = ['learn', 'classify_image', 'categories',
|
2 |
'image', 'label', 'examples', 'intf']
|
3 |
|
|
|
4 |
import gradio as gr
|
5 |
from fastai.vision.all import *
|
6 |
|
|
|
1 |
__all__ = ['learn', 'classify_image', 'categories',
|
2 |
'image', 'label', 'examples', 'intf']
|
3 |
|
4 |
+
import timm
|
5 |
import gradio as gr
|
6 |
from fastai.vision.all import *
|
7 |
|
requirements.txt
CHANGED
@@ -1,2 +1,4 @@
|
|
|
|
1 |
fastai
|
2 |
-
torch==1.12.1
|
|
|
|
1 |
+
timm
|
2 |
fastai
|
3 |
+
torch==1.12.1
|
4 |
+
gradio
|