Ayushs799 commited on
Commit
f3f601e
·
1 Parent(s): 8c092ed

Final touches

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ if __name__ == '__main__':
92
  in_range = (y_pred+sigma)<budget
93
 
94
  fig1, ax1 = plt.figure(figsize=(10,7),dpi=150), plt.gca()
95
- ax1.imshow(california_img, alpha=0.3,cmap=plt.get_cmap("jet"),extent=[-124.55, -113.80, 32.45, 42.05],zorder=1)
96
  ax1.scatter(x_test[in_range,7],x_test[in_range,6],s=10,alpha=0.5,label='Can be Bought',c='C2',zorder=3)
97
  ax1.scatter(x_test[~in_range,7],x_test[~in_range,6],s=10,alpha=0.5,label='Cannot Buy',c='r',zorder=3)
98
 
 
92
  in_range = (y_pred+sigma)<budget
93
 
94
  fig1, ax1 = plt.figure(figsize=(10,7),dpi=150), plt.gca()
95
+ ax1.imshow(california_img, alpha=0.6,cmap=plt.get_cmap("jet"),extent=[-124.55, -113.80, 32.45, 42.05],zorder=1)
96
  ax1.scatter(x_test[in_range,7],x_test[in_range,6],s=10,alpha=0.5,label='Can be Bought',c='C2',zorder=3)
97
  ax1.scatter(x_test[~in_range,7],x_test[~in_range,6],s=10,alpha=0.5,label='Cannot Buy',c='r',zorder=3)
98