little fix
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ model = BlipForConditionalGeneration.from_pretrained("noamrot/FuseCap_Image_Capt
|
|
11 |
|
12 |
@spaces.GPU(duration=15)
|
13 |
def inference(raw_image):
|
|
|
14 |
cur_device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
15 |
model = model.to(device)
|
16 |
text = "a picture of "
|
|
|
11 |
|
12 |
@spaces.GPU(duration=15)
|
13 |
def inference(raw_image):
|
14 |
+
global model
|
15 |
cur_device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
16 |
model = model.to(device)
|
17 |
text = "a picture of "
|