-
Notifications
You must be signed in to change notification settings - Fork 464
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
Ideas to improve the training accuracy #93
Comments
How many frames are being used in training and testing ?
Joao
…On Wed, Feb 12, 2020 at 2:45 PM Leslie-Fang ***@***.***> wrote:
I am trying to fine-tune the model with UCF-101 dataset.
with the SGD optimizer and lr decay, I can get almost 91.79% accuracy
after 6000 steps with BS: 32.
global_step = tf.Variable(0, trainable=False)
learning_rate = tf.compat.v1.train.exponential_decay(3, global_step, 100, 0.96)
optimizer = tf.compat.v1.train.GradientDescentOptimizer(learning_rate).minimize(loss, global_step=global_step)
From the paper, I see the accuracy could be 94.x%, any ideas to improve my
accuracy?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#93>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADXKU2QV7URPHTL7SC4A4ADRCQDSNANCNFSM4KT3DOCQ>
.
|
@joaoluiscarreira Thanks for looking into my issue. |
Let me clarify: what we did was to use 64 frames in training and 250 frames
in testing. If you're testing on only 64 frames for each video that would
have a negative impact.
Joao
…On Wed, Feb 12, 2020 at 2:50 PM Leslie-Fang ***@***.***> wrote:
@joaoluiscarreira <https://github.com/joaoluiscarreira> Thanks for
looking into my issue.
Training: almost 9500 frame in one epoch.
Testing: almost 3700 frame.
BTW: I am using depth 64.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#93>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADXKU2VMJL7D5ZHYW3WMNP3RCQECZANCNFSM4KT3DOCQ>
.
|
Can I share the code? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to fine-tune the model with UCF-101 dataset.
with the SGD optimizer and lr decay, I can get almost 91.79% accuracy after 6000 steps with BS: 32.
From the paper, I see the accuracy could be 94.x%, any ideas to improve my accuracy?
The text was updated successfully, but these errors were encountered: