fffiloni commited on
Commit
a88740c
·
verified ·
1 Parent(s): ff7add1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -8
app.py CHANGED
@@ -7,14 +7,6 @@ from PIL import Image
7
  from sam2.build_sam import build_sam2
8
  from sam2.sam2_image_predictor import SAM2ImagePredictor
9
 
10
- # use bfloat16 for the entire notebook
11
- torch.autocast(device_type="cuda", dtype=torch.bfloat16).__enter__()
12
-
13
- if torch.cuda.get_device_properties(0).major >= 8:
14
- # turn on tfloat32 for Ampere GPUs (https://pytorch.org/docs/stable/notes/cuda.html#tensorfloat-32-tf32-on-ampere-devices)
15
- torch.backends.cuda.matmul.allow_tf32 = True
16
- torch.backends.cudnn.allow_tf32 = True
17
-
18
  def show_mask(mask, ax, random_color=False, borders = True):
19
  if random_color:
20
  color = np.concatenate([np.random.random(3), np.array([0.6])], axis=0)
 
7
  from sam2.build_sam import build_sam2
8
  from sam2.sam2_image_predictor import SAM2ImagePredictor
9
 
 
 
 
 
 
 
 
 
10
  def show_mask(mask, ax, random_color=False, borders = True):
11
  if random_color:
12
  color = np.concatenate([np.random.random(3), np.array([0.6])], axis=0)