some question about the capacity of this codes ?
See original GitHub issueHi,
Q1) is this possible to add or remove a few of layers ? How ?is this possible to freeze the layers ? how ?
Q2)how do chose the name of layers : for example , in the ssd512 models ,
conv2_1 = Conv2D(128, (3, 3), activation='relu', padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(l2_reg), name='conv2_1')(pool1)
the name of layers must be same name in caffe ? if so , Where do you get the name of the layers?
Q3) my GPU is GTX 1080 (8G) and Ram 16G , Cpu i3 7100k , is this possible to retrain ssd512 on my own dataset?
Q4) what are they fc (6,7) ? is not ssd full convolution ?
fc6 = Conv2D(1024, (3, 3), dilation_rate=(6, 6), activation='relu', padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(l2_reg), name='fc6')(pool5)
fc7 = Conv2D(1024, (1, 1), activation='relu', padding='same', kernel_initializer='he_normal', kernel_regularizer=l2(l2_reg), name='fc7')(fc6)
Q5) is that possible to retrain this models with TFrecord dataset file ?
Request) please put the ssd512_training.ipynp.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Memory- Coding, Capacity and Duration EXAM QUESTIONS
Encoding is the way in which information is stored into memory, for example acoustic, visual, semantic. Unlimited capacity in LTM, 7+/- 2 items...
Read more >What does "capacity achieving code" mean?
The channel capacity is the largest rate at which communication can be made with arbitrary small error. This means that if you decide...
Read more >How to quantify the error correction capacity of LDPC code?
An easy example is RS code (Reed solomon code). For the setting RS(N,k), while N is the block size and K is the...
Read more >Shannon Channel Capacity | Solved problem - YouTube
Shannon Channel Capacity | Solved problem | Information Theory and Coding. Watch later. Share. Copy link. Info. Shopping. Tap to unmute.
Read more >Python OOP Exercise – Classes and Objects ... - PYnative
Use Online Code Editor to solve exercise questions. ... The default fare charge of any vehicle is seating capacity * 100.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
by_name
, the names of the layers in the model must be the same as the names of the respective layers in the HDF5 weights file. You get the names of a Caffe model from the.prototxt
file that defines the Caffe model.fc6
andfc7
are just called that to indicate that they were transformed into convolutional layers from thefc6
andfc7
layers of VGG.TFRecord
files with Keras models, but I don’t know what the status is there. It is certainly possible by using this SSD implementation inside TensorFlow’s Estimator API, which now fully supports Keras models.This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.