Spaces:
Runtime error
Runtime error
Upload app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,4 @@
|
|
1 |
-
import
|
2 |
-
if os.environ.get("SPACES_ZERO_GPU") is not None:
|
3 |
-
import spaces
|
4 |
-
else:
|
5 |
-
class spaces:
|
6 |
-
@staticmethod
|
7 |
-
def GPU(func):
|
8 |
-
def wrapper(*args, **kwargs):
|
9 |
-
return func(*args, **kwargs)
|
10 |
-
return wrapper
|
11 |
import torch
|
12 |
import re
|
13 |
import gradio as gr
|
@@ -34,7 +25,7 @@ moondream = AutoModelForCausalLM.from_pretrained(
|
|
34 |
).to(device)
|
35 |
moondream.eval()
|
36 |
|
37 |
-
|
38 |
def answer_question(img, prompt):
|
39 |
image_embeds = moondream.encode_image(img)
|
40 |
streamer = TextIteratorStreamer(tokenizer, skip_special_tokens=True)
|
|
|
1 |
+
#import spaces
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
import torch
|
3 |
import re
|
4 |
import gradio as gr
|
|
|
25 |
).to(device)
|
26 |
moondream.eval()
|
27 |
|
28 |
+
#@spaces.GPU
|
29 |
def answer_question(img, prompt):
|
30 |
image_embeds = moondream.encode_image(img)
|
31 |
streamer = TextIteratorStreamer(tokenizer, skip_special_tokens=True)
|