월간 데이콘 이미지 기반 질의 응답 AI 경진대회
os:
Ubuntu 18.04.6 LTS
GPU:
Driver Version: 525.60.13
CUDA Version: 12.0
NVIDIA GeForce RTX 3090(x4)
├── arguments
│ ├── __init__.py
│ ├── DatasetsArguments.py
│ ├── ModelArguments.py
│ └── MyTrainingArguments.py
├── data
│ └── open.zip
├── shell_scripts
│ └── run_train.sh
├── inference.ipynb
├── literal.py
├── preprocess.py
├── train.py
├── utils.py
├── README.md
└── requirements.txt
$ cd data
data$ unzip open.zip
black *.py --line-length 119
python=3.8
$ python3.8 -m venv .venv
$ source .venv/bin/activate
$ pip install --upgrade pip
$ pip install -r requiremets.txt
$ python preprocess.py
$ bash shell_scripts/run_train.sh
inference.ipynb 실행