Better partial function

This commit is contained in:
Joseph Redmon
2015-07-20 16:16:26 -07:00
parent 23c08be144
commit 38bd6ae6ba
3 changed files with 8 additions and 3 deletions

View File

@ -5,6 +5,7 @@
network parse_network_cfg(char *filename);
void save_network(network net, char *filename);
void save_weights(network net, char *filename);
void save_weights_upto(network net, char *filename, int cutoff);
void load_weights(network *net, char *filename);
void load_weights_upto(network *net, char *filename, int cutoff);