mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
It's time, to du-du-du-du-DU-DU-DUEL!!
https://www.youtube.com/watch?v=IVmtUK_1jh4
This commit is contained in:
@ -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){
|
||||
|
Reference in New Issue
Block a user