davidr99 commited on
Commit
2b7826c
·
verified ·
1 Parent(s): 965e40b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -20,12 +20,13 @@ finetuned_model_id = "davidr99/finetuned_paligemma2_blackjack"
20
 
21
  import gradio as gr
22
 
 
 
 
 
 
23
  @spaces.GPU(duration=30)
24
  def blackjack_ai(image):
25
- model = PaliGemmaForConditionalGeneration.from_pretrained(model_id)
26
- model.load_adapter(finetuned_model_id)
27
-
28
- processor = AutoProcessor.from_pretrained(model_id)
29
 
30
  prompt = "<image><bos>extract json\n"
31
  image_file = Image.fromarray(image.astype('uint8'), 'RGB')
 
20
 
21
  import gradio as gr
22
 
23
+ model = PaliGemmaForConditionalGeneration.from_pretrained(model_id)
24
+ model.load_adapter(finetuned_model_id)
25
+
26
+ processor = AutoProcessor.from_pretrained(model_id)
27
+
28
  @spaces.GPU(duration=30)
29
  def blackjack_ai(image):
 
 
 
 
30
 
31
  prompt = "<image><bos>extract json\n"
32
  image_file = Image.fromarray(image.astype('uint8'), 'RGB')