mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
12 lines
318 B
C
12 lines
318 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
#include "network.h"
|
|
|
|
network parse_network_cfg(char *filename);
|
|
void save_network(network net, char *filename);
|
|
void save_weights(network net, char *filename);
|
|
void load_weights(network *net, char *filename);
|
|
void load_weights_upto(network *net, char *filename, int cutoff);
|
|
|
|
#endif
|