blob: e1bcf188196acd6774030658af92ed9cfdcdf3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef UTIL_
#define UTIL_
#include <stddef.h>
struct Configs {
size_t epochs;
double alpha;
char **input_keys, **label_keys;
size_t n_input_keys, n_label_keys;
char *in_filepath;
char *out_filepath;
char *weights_filepath;
char *config_filepath;
};
void die(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);
void util_load_cli(struct Configs *ml, int argc, char *argv[]);
void util_load_config(struct Configs *ml);
void util_free_config(struct Configs *ml);
#endif
|