Pradeep Kumar commited on
Commit
a0f03b5
1 Parent(s): 1b38414

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,7 +1,10 @@
1
  import zipfile
 
 
2
  with zipfile.ZipFile('models.zip', 'r') as zip_ref:
3
  zip_ref.extractall('models')
4
 
 
5
  import numpy as np
6
  import tensorflow as tf
7
  import tensorflow_hub as hub
 
1
  import zipfile
2
+ import sys
3
+
4
  with zipfile.ZipFile('models.zip', 'r') as zip_ref:
5
  zip_ref.extractall('models')
6
 
7
+ sys.path.append('models')
8
  import numpy as np
9
  import tensorflow as tf
10
  import tensorflow_hub as hub