Spaces:
Running
Running
Commit
·
3272f01
1
Parent(s):
867460e
update user
Browse files- README.md +1 -1
- medvqa/competitions/gi-2025/task_1.py +2 -2
- pyproject.toml +1 -1
README.md
CHANGED
|
@@ -19,6 +19,6 @@ The library is under heavy development. So, we recommend to always make sure you
|
|
| 19 |
```bash
|
| 20 |
medvqa validate_and_submit --competition=gi-2025 --task=1 --repo_id=...
|
| 21 |
```
|
| 22 |
-
where repo_id is your HuggingFace Model repo id (like SushantGautam/XXModelCheckpoint) submission script, for eg, submission_task1.py file for task 1.
|
| 23 |
|
| 24 |
Submission for task 2 is not yet implemented. Will be soon live. Stay tuned.
|
|
|
|
| 19 |
```bash
|
| 20 |
medvqa validate_and_submit --competition=gi-2025 --task=1 --repo_id=...
|
| 21 |
```
|
| 22 |
+
where repo_id is your HuggingFace Model repo id (like SushantGautam/XXModelCheckpoint) with the submission script as required by the competition organizers, for eg, submission_task1.py file for task 1.
|
| 23 |
|
| 24 |
Submission for task 2 is not yet implemented. Will be soon live. Stay tuned.
|
medvqa/competitions/gi-2025/task_1.py
CHANGED
|
@@ -12,8 +12,8 @@ import json
|
|
| 12 |
import os
|
| 13 |
from huggingface_hub import HfApi, grant_access
|
| 14 |
|
| 15 |
-
HF_GATE_ACESSLIST = ["
|
| 16 |
-
"
|
| 17 |
|
| 18 |
MEDVQA_SUBMIT = True if os.environ.get(
|
| 19 |
'_MEDVQA_SUBMIT_FLAG_', 'FALSE') == 'TRUE' else False
|
|
|
|
| 12 |
import os
|
| 13 |
from huggingface_hub import HfApi, grant_access
|
| 14 |
|
| 15 |
+
HF_GATE_ACESSLIST = ["SushantGautam",
|
| 16 |
+
"stevenah", "vlbthambawita"]
|
| 17 |
|
| 18 |
MEDVQA_SUBMIT = True if os.environ.get(
|
| 19 |
'_MEDVQA_SUBMIT_FLAG_', 'FALSE') == 'TRUE' else False
|
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[project]
|
| 2 |
name = "medvqa"
|
| 3 |
-
version = "0.14.
|
| 4 |
description = "Competition Submission CLI for ImageCLEFmed-MedVQA-GI-2025 (https://github.com/simula/ImageCLEFmed-MEDVQA-GI-2025)"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.6"
|
|
|
|
| 1 |
[project]
|
| 2 |
name = "medvqa"
|
| 3 |
+
version = "0.14.7"
|
| 4 |
description = "Competition Submission CLI for ImageCLEFmed-MedVQA-GI-2025 (https://github.com/simula/ImageCLEFmed-MEDVQA-GI-2025)"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.6"
|