John6666 commited on
Commit
5cdc3ab
·
verified ·
1 Parent(s): 719ad71

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -11
app.py CHANGED
@@ -1,13 +1,4 @@
1
- import os
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
- @spaces.GPU
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)