mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +00:00
12 lines
349 B
Markdown
12 lines
349 B
Markdown
|
## Heuristics
|
||
|
|
||
|
```bash
|
||
|
# These scripts accept the same arguments.
|
||
|
# heuristics/random_unweighted.py
|
||
|
# heuristics/random_weighted.py
|
||
|
# heuristics/most_common_answer.py
|
||
|
|
||
|
python heuristics/random_unweighted.py --aokvqa-dir ${AOKVQA_DIR} --split val --mc --out ${PREDS_DIR}/random-unweighted_val-mc.json
|
||
|
# Exclude --mc for the direct answer setting
|
||
|
```
|