git pull https://github.com/CJ445/Object-Detection-Models.git
cd Object-Detection-Models
Open your terminal and download the latest Miniconda installer for Linux (64-bit):
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
Run the downloaded installer script:
bash Miniconda3-latest-Linux-x86_64.sh
Follow the prompts:
- Press Enter to review the license agreement.
- Type yes to accept the terms.
- Choose the installation directory (or press Enter to install in the default location ~/miniconda3).
- Type yes to initialize Miniconda.
Once the installation completes, restart the terminal or run the following command to activate Miniconda:
source ~/.bashrc
conda create -n obj-detect python=3.9 -y
conda activate obj-detect
pip install -r requirements.txt
python cascade_rcnn_detection.py
python efficientdet_detection.py
python faster_rcnn_detection.py
python mask_rcnn_detection.py
python retinanet_detection.py
python sparse_rcnn_detection.py
python yolonas_detection.py