tf-Faster-RCNN
TensorFlow implementation of Faster R-CNN
File Explorer
Download Latest Version (.zip)- MNIST.py
- PASCAL_VOC.py
- Conv5.py
- faster_rcnn_conv5.py
- ff_resnet101.py
- genClutteredMNIST.ipynb
- graphValid.py
- test_faster_rcnn_networks.ipynb
- tests.py
- cpu_nms.pyx
- gpu_nms.hpp
- gpu_nms.pyx
- nms_kernel.cu
- py_cpu_nms.py
- __init__.py
- bbox_overlaps.pyx
- bbox_transform.py
- evaluate_predictions.py
- faster_rcnn_config.py
- generate_anchors.py
- image_functions.py
- loss_functions.py
- Makefile
- nms_wrapper.py
- roi_pool.py
- rpn_softmax.py
- setup.py
- TensorBase
- test_aux.py
- train_aux.py
- clutteredMNIST.yml
- pascal_voc2007.yml
- faster_rcnn_conv5.py
- faster_rcnn_resnet50ish.py
- anchor_target_layer.py
- convnet.py
- faster_rcnn_networks.py
- proposal_layer.py
- proposal_target_layer.py
- resnet.py
- resnet50_reduced.py
- .gitignore
- .gitmodules
- README.md
# Installation Guide
git clone https://github.com/kevinjliang/tf-Faster-RCNN
Downloads the entire project code from GitHub to your computer.
cd tf-Faster-RCNN
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install --ignore-installed --upgrade \
Installs the package published on PyPI directly β no need to clone the source.
pip install cython easydict matplotlib scipy Pillow pyyaml tqdm
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install --ignore-installed --upgrade \
Installs the package published on PyPI directly β no need to clone the source.
pip install cython easydict matplotlib scipy Pillow pyyaml tqdm
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
