Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Publaynet | 583 | a year ago | 23 | other | Jupyter Notebook | |||||
Mmdetection Annotated | 522 | 2 years ago | 12 | apache-2.0 | Python | |||||
mmdetection源码注释 | ||||||||||
Mvpose | 366 | 2 years ago | 12 | apache-2.0 | Jupyter Notebook | |||||
Code for "Fast and Robust Multi-Person 3D Pose Estimation from Multiple Views" (CVPR 2019, T-PAMI 2021) | ||||||||||
Scene Graph Tf Release | 293 | 4 years ago | 20 | mit | Python | |||||
"Scene Graph Generation by Iterative Message Passing" code repository | ||||||||||
Fast Rcnn Train Another Dataset | 260 | 7 years ago | 7 | Python | ||||||
train on another dataset | ||||||||||
Faster_rcnn_for_dota | 249 | 5 years ago | 17 | apache-2.0 | Python | |||||
Code used for training Faster R-CNN on DOTA | ||||||||||
Keypoints Of Humanpose With Mask R Cnn | 181 | 4 years ago | 12 | Jupyter Notebook | ||||||
Use the Mask RCNN for the human pose estimation | ||||||||||
Da_detection | 179 | 4 years ago | 23 | mit | Python | |||||
Implementation of "Strong-Weak Distribution Alignment for Adaptive Object Detection" | ||||||||||
Anime Face Detector | 168 | a year ago | 2 | mit | Python | |||||
A Faster-RCNN based anime face detector implementation using tensorflow. | ||||||||||
Affordance Net | 102 | 2 years ago | 34 | other | Jupyter Notebook | |||||
AffordanceNet - Multiclass Instance Segmentation Framework - ICRA 2018 |
Developed by @coopss
This project was intended to explore the properties of convolution neural networks (CNN) and see how they compare to recurrent convolution neural networks (RCNN). This was inspired by a paper I read that details the effectiveness of RCNNs in object recognition as they perform or even out perform their CNN counterparts with fewer parameters. Aside from exploring CNN/RCNN effectiveness, I built a simple interface to test the more challenging EMNIST dataset dataset (as opposed to the MNIST dataset)
Note: All dependencies for current build can be found in dependencies.txt
A training program for classifying the EMNIST dataset
usage: training.py [-h] --file [--width WIDTH] [--height HEIGHT] [--max MAX] [--epochs EPOCHS] [--verbose]
-f FILE, --file FILE Path .mat file data
-h, --help show this help message and exit
--width WIDTH Width of the images
--height HEIGHT Height of the images
--max MAX Max amount of data to use
--epochs EPOCHS Number of epochs to train on
--verbose Enables verbose printing
A webapp for testing models generated from training.py on the EMNIST dataset
usage: server.py [-h] [--bin BIN] [--host HOST] [--port PORT]
-h, --help show this help message and exit
--bin BIN Directory to the bin containing the model yaml and model h5 files
--host HOST The host to run the flask server on
--port PORT The port to run the flask server on