It's time, to du-du-du-du-DU-DU-DUEL!!

https://www.youtube.com/watch?v=IVmtUK_1jh4
This commit is contained in:
Joseph Redmon
2015-04-20 08:43:54 -07:00
parent f199fd3b64
commit 451ef0a0a6
5 changed files with 82 additions and 37 deletions

View File

@ -623,6 +623,7 @@ void load_weights_upto(network *net, char *filename, int cutoff)
fread(&net->momentum, sizeof(float), 1, fp);
fread(&net->decay, sizeof(float), 1, fp);
fread(&net->seen, sizeof(int), 1, fp);
fprintf(stderr, "%f %f %f %d\n", net->learning_rate, net->momentum, net->decay, net->seen);
int i;
for(i = 0; i < net->n && i < cutoff; ++i){