Merge branch 'main' of https://github.com/SushantGautam/MedVQA
Browse files- README.md +7 -3
- pyproject.toml +2 -2
README.md
CHANGED
@@ -10,11 +10,15 @@ A CLI tool for MedVQA competition (https://github.com/simula/ImageCLEFmed-MEDVQA
|
|
10 |
## Installation
|
11 |
|
12 |
```bash
|
13 |
-
pip install medvqa
|
14 |
```
|
|
|
15 |
|
16 |
## Usage
|
17 |
|
18 |
```bash
|
19 |
-
medvqa competition=gi-2025 task=1
|
20 |
-
```
|
|
|
|
|
|
|
|
10 |
## Installation
|
11 |
|
12 |
```bash
|
13 |
+
pip install -U medvqa
|
14 |
```
|
15 |
+
The library is under heavy development. So, we recommend to always make sure you have the latest version installed.
|
16 |
|
17 |
## Usage
|
18 |
|
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.
|
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"
|
@@ -27,4 +27,4 @@ include = ["*", "competitions/**/"]
|
|
27 |
|
28 |
[project.urls]
|
29 |
Homepage = "https://github.com/SushantGautam/MedVQA"
|
30 |
-
Issues = "https://github.com/SushantGautam/MedVQA/issues"
|
|
|
1 |
[project]
|
2 |
name = "medvqa"
|
3 |
+
version = "0.14.4"
|
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"
|
|
|
27 |
|
28 |
[project.urls]
|
29 |
Homepage = "https://github.com/SushantGautam/MedVQA"
|
30 |
+
Issues = "https://github.com/SushantGautam/MedVQA/issues"
|