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

added print statements because I am really confused

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -149,6 +149,7 @@ def predict_and_analyze(model_name, num_channels, dim, image):
149
  image = np.load(image.name, allow_pickle=True)
150
 
151
  image = image.reshape((num_channels, W, W))
 
152
 
153
  # W = int(np.sqrt(image.shape[1]))
154
 
 
149
  image = np.load(image.name, allow_pickle=True)
150
 
151
  image = image.reshape((num_channels, W, W))
152
+ print(image)
153
 
154
  # W = int(np.sqrt(image.shape[1]))
155