I just started using the tensorflow api and trained few models. Suddenly i realised the name of coco model is different and the accuracy is also the poor like what is the main difference between the faster_rcnn_inception_resnet_v2_atrous_coco Vs faster_rcnn_inception_resnet_v2_atrous_lowproposals_coco VS faster_rcnn_resnet50_coco?? why the terms atrous , low proposals , where in resnet 50 nothing is being used :
object detection api , coco model
207 Views Asked by mONA At
1
There are 1 best solutions below
Related Questions in API
- SuiteCRM how to retrieve all account related contacts
- how do i submit a pastebin or pastee from an android app and get the url back
- BigCommerce PHP API delete Category which contains products
- Interact with chrome bookmarks outside of extensions
- purchase individual items and subscriptions in the same PayPal REST API transaction
- youtube api v3 insert comments
- Youtube api v3 duration
- Responding to an Office 365 event invite via REST
- Convert youtube video to mp3 using Quick MP3 API
- How to real-time monitor the emails?
- Laravel - Fractal - Using Find() in transformer file- is it correct or can it be done more efficiently?
- return data from a Azure API json
- Accessing Picasa Web API using PHP
- RAML multivalued form parameter
- TestFlight API and stats with as3
Related Questions in TENSORFLOW
- (Tensorflow)Does the op assign change the gradient computation?
- Tensorflow Windows Accessing Folders Denied:"NewRandomAccessFile failed to Create/Open: Access is denied. ; Input/output error"
- Android App TensorFlow Google Cloud ML
- Convert Tensorflow model to Caffe model
- Google Tensorflow LSTMCell Variables Mapping to Hochreiter97_lstm.pdf paper
- additive Gaussian noise in Tensorflow
- TFlearn evaluate method results meaning
- Regularization losses Tensorflow - TRAINABLE_VARIABLES to Tensor Array
- feed picture to model tensorflow for training
- Fail to read the new format of tensorflow checkpoint?
- I got a error when running a github project in tensorflow
- Tensorflow R0.12 softmax_cross_entropy_with_logits ASSERT Error
- RuntimeError in run_one_batch of TensorFlowDataFrame in tensorflow
- Same output in neural network for each input after training
- ConvNet : Validation Loss not strongly decreasing but accuracy is improving
Related Questions in DETECTION
- Handle a value being changed in a c++ struct
- Detecting if a file is open
- Removing items from ArrayList upon collision (Java)?
- android - why does this gps mock work and how to prevent/detect it?
- Detect google chrome on click and redirect if it's not
- Shazam for video
- What is the best way to detect character set of an E-Mail message?
- AS3 AI barrier detection and movement
- shoulder detection on a segmented image
- How to save previous barometer value to compare it with current Fall Detection Android
- PHP detecting TCP client disconnect
- Computer vision and body composition
- OpenCV Detecting a sheet of paper
- hough transform in a limited frame height of a video
- Detect swipe right/ left in Fragments?
Related Questions in COCO
- Error in exporting detectron2 trained model to onnx or torch script model
- Tracking animals in videos with android
- Kotlin compiler to JavaScript in JavaScript?
- AttributeError: module 'tensorflow._api.v2.sets' has no attribute 'set_intersection'
- Reading data from a json using Python and using it to draw shapes
- how to change float array into integers array in json file
- How do I fine tune using eager few shot object detection on custom dataset with multiple classes which is in coco format?
- VGG image annotator not exporting in COCO format
- How to delete multiple json objects from a big json file
- Resize COCO bounding boxes for object detection
- Detectron2 "AssertionError: Dataset 'xx_train' is already registered!" / How can I re-run register_coco_instances?
- How to Convert Model Mask into Polygon and save JSON?
- object detection api , coco model
- COCO annotations to masks - For instance segmentation model training
- Error Training Custom COCO Dataset with Detectron2
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The naming has to do with the respective submitted variations in the COCO competition and respective papers. They are versions of the Faster RCNN which originally used the VGG-16 for feature extraction.
Not going too deep on this, ResNet Faster RCNN variation, as the name implies, uses the ResNet for Feature Extraction. Then atrous and low proposals are also variations of the model. Atrous:
The low proposals, I'm not familiar from where it comes, but from the name, I would guess it just generates less proposals in the Region Proposal Network (RPN) thus being faster at inference time (as you can see in the table of the model zoo).