AItool commited on
Commit
0ecbfab
1 Parent(s): 0a588ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -1,10 +1,9 @@
1
- import pathlib
2
- temp = pathlib.PosixPath
3
- #pathlib.PosixPath = pathlib.WindowsPath
4
- #|export
5
- #fastai has to be available, i.e. fastai folder
6
  from fastai.vision.all import *
7
  import gradio as gr
 
8
 
9
  def is_real(x): return x[0].isupper()
10
 
 
1
+ __all__ = ['learn', 'classify_image', 'categories', 'classifier', 'dog','image', 'label', 'examples', 'intf']
2
+
3
+ # Cell
 
 
4
  from fastai.vision.all import *
5
  import gradio as gr
6
+ import timm
7
 
8
  def is_real(x): return x[0].isupper()
9