-
Notifications
You must be signed in to change notification settings - Fork 514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some question about codes and paper #43
Comments
@wubaoyuan I need your help, thanks! |
@Jason-xin Sorry for the late reply. In the code, The principle of designing r_t^j is monotonically decreasing with respect to t. You can try other decreasing functions in your training. |
@Jason-xin For the second question, as the tasks and datasets of the training and fine-tuning are significantly different, it is a natural choice of different pre-processing. |
@wubaoyuan OK, another question.
` |
@wubaoyuan And, I changed the tf.nn.softmax to tf.nn.sigmoid in image_classification.py, and test mlimagenet model, so the result was multi-label classification? I don't know whether it works out or not? |
@wubaoyuan with the formula you provided, when t change from 1 to 2, the ratio of weight
|
I have the same question with you! |
sorry to bother you, I have two questions:
when calculating loss, the first step is "a. get loss coeficiente" and the corresponding codes as follows:
Whether it refers to r in loss function:
But the explanation of r is not matched with these codes,
So, can you tell me what is these codes? Especially for pos_loss_coef(0.01), neg_loss_coef(8) and loss_coef...
In train.py, record_parser_fn make image like
image = image_preprocess.preprocess_image(image=image, output_height=FLAGS.image_size, output_width=FLAGS.image_size, object_cover=0.7, area_cover=0.7, is_training=is_training,, bbox=bbox)
But in finetune.py, record_parser_fn make image like
image = image_preprocess.preprocess_image(image=image, output_height=FLAGS.image_size, output_width=FLAGS.image_size, object_cover=0.0, area_cover=0.05, is_training=is_training,, bbox=bbox)
Can you tell me why differ in object_cover and area_cover?
Thanks!
The text was updated successfully, but these errors were encountered: