Implementation of Few-Shot Object Detection through a CenterNet architecture
Taken from FSOD GitHub Repo Download dataset and annotation from: FSOD Dataset
Insert them in your data structure as follows:
MAIN_FOLDER_PATH
└── repo_folder
├── src
├── ...
│
└── data
├──── fsod
├── annotations
│ ├── fsod_train.json
│ └── fsod_test.json
└── images
├── part_1
└── part_2
Install pyenv and pyenv-virtualenv: Install python 3.11.4:
pyenv install 3.11.4Move to repo_folder_path and:
pyenv local 3.11.4
pyenv virtualenv 3.11.4 env-FSOD_CenterNet
pyenv activate env-FSOD_CenterNet
python3.11 -m pip install --upgrade pip
pip install -r requirements.txt