lehmannerich commited on
Commit
94b026f
·
1 Parent(s): a4c58be

Changed python version

Browse files
Files changed (2) hide show
  1. README.md +1 -0
  2. app.py +2 -1
README.md CHANGED
@@ -8,6 +8,7 @@ sdk_version: 3.4
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
+ python_version: 3.7
12
  ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -1,9 +1,10 @@
1
- from fastai.vision.all import *
2
  import gradio as gr
 
3
 
4
  _all_ = ['is_cat', 'learn', 'classify_image',
5
  'categories', 'image', 'label', 'examples', 'intf']
6
 
 
7
  # cell
8
 
9
 
 
 
1
  import gradio as gr
2
+ from fastai.vision.all import *
3
 
4
  _all_ = ['is_cat', 'learn', 'classify_image',
5
  'categories', 'image', 'label', 'examples', 'intf']
6
 
7
+
8
  # cell
9
 
10