delphiclinic commited on
Commit
da9a288
·
verified ·
1 Parent(s): b6a1bf1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,7 +6,7 @@ import os
6
 
7
  ## Where to store flagged data
8
  HF_TOKEN = os.getenv('HF_TOKEN')
9
- hf_writer = gr.HuggingFaceDatasetSaver(HF_TOKEN, "Crowd-sourced images")
10
 
11
  # Load your trained model
12
  model = YOLO('best.pt')
@@ -68,7 +68,8 @@ platform = gr.Interface( fn = predict,
68
  providing an additional layer of analysis for consideration in conjunction with the clinician's expertise.
69
  Users are encouraged to interpret the algorithm's output in conjunction with their clinical judgment,
70
  and the tool should be viewed as a supplementary resource rather than a standalone diagnostic solution.
71
- """ )
 
72
 
73
 
74
  platform.launch(inline=True,share=True)
 
6
 
7
  ## Where to store flagged data
8
  HF_TOKEN = os.getenv('HF_TOKEN')
9
+ hf_writer = gr.HuggingFaceDatasetSaver(HF_TOKEN, "Crowd sourced images")
10
 
11
  # Load your trained model
12
  model = YOLO('best.pt')
 
68
  providing an additional layer of analysis for consideration in conjunction with the clinician's expertise.
69
  Users are encouraged to interpret the algorithm's output in conjunction with their clinical judgment,
70
  and the tool should be viewed as a supplementary resource rather than a standalone diagnostic solution.
71
+ """,
72
+ thumbnail = "thumbnail.jpg")
73
 
74
 
75
  platform.launch(inline=True,share=True)