El loza commited on
Commit
7f3abec
·
1 Parent(s): f14feeb

First commit with model

Browse files
Files changed (5) hide show
  1. .gitignore +1 -0
  2. app.py +5 -0
  3. export.pkl +3 -0
  4. flujo.png +3 -0
  5. 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

  • SHA256: a2f5ffe3d95a9cb3cc4b92de0e2af98b774011484049362eb12cef89f715250b
  • Pointer size: 132 Bytes
  • Size of remote file: 2.29 MB
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ fastai
2
+ fastgradio==0.1