https://github.com/jedymatt/faster-r-cnn
https://github.com/jedymatt/faster-r-cnn
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jedymatt/faster-r-cnn
- Owner: jedymatt
- Created: 2023-01-22T06:13:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T05:41:40.000Z (over 2 years ago)
- Last Synced: 2024-12-29T06:42:00.527Z (5 months ago)
- Language: Jupyter Notebook
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Faster R-CNN
Setup Local Environment using Anaconda or Miniconda
```bash
# setup virtual env
conda create -p .venv# activate virtual env
conda activate ./.venv# install dependencies
conda install -c conda-forge --file requirements.txt
```If you don't have anaconda or miniconda you can use pip instead with venv as the environment
```bash
# setup venv
python -m venv .venv# activate vertual env
./.venv/Scripts/activate# install dependencies
pip install -r requirements.txt
```Run either jupyterlab or notebook
```bash
jupyter-lab
# or
# jupyter notebook
```You can also use vscode with [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) extension installed instead of jupyter-lab or notebook