jpterry commited on
Commit
4169a48
·
1 Parent(s): 50266c5

added print statements because I am really confused

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -142,6 +142,10 @@ def predict_and_analyze(model_name, num_channels, dim, image):
142
  # im = f.readlines()
143
  # image = np.frombuffer(image)
144
 
 
 
 
 
145
  image = np.load(image.name, allow_pickle=True)
146
 
147
  image = image.reshape((num_channels, W, W))
 
142
  # im = f.readlines()
143
  # image = np.frombuffer(image)
144
 
145
+ print(image)
146
+ print(type(image))
147
+ print(image.name)
148
+
149
  image = np.load(image.name, allow_pickle=True)
150
 
151
  image = image.reshape((num_channels, W, W))