Spaces:
Runtime error
Runtime error
El loza
commited on
Commit
·
7f3abec
1
Parent(s):
f14feeb
First commit with model
Browse files- .gitignore +1 -0
- app.py +5 -0
- export.pkl +3 -0
- flujo.png +3 -0
- requirements.txt +2 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
winenv
|
app.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastgradio import Demo
|
2 |
+
from fastai.vision.all import *
|
3 |
+
|
4 |
+
learn = load_learner('export.pkl')
|
5 |
+
Demo(learn).launch(title="Estructuras sedimentarias", description="Clasifica imágenes de 6 estructuras distintas", examples=[["flujo.png"]])
|
export.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfd20eed2969bcc209370c048d9a79c2ce840c5f10b7d2ee3a77f99d31add3de
|
3 |
+
size 102893461
|
flujo.png
ADDED
![]() |
Git LFS Details
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
fastai
|
2 |
+
fastgradio==0.1
|