aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
blob: 00567a80952dd815cd7753827f6f188e859af934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef UTIL_
#define UTIL_

#include <stddef.h>

struct Configs {
    /* net cfgs */
    size_t epochs;
    double alpha;
    char *loss;
    char **input_keys, **label_keys;
    size_t n_input_keys, n_label_keys;
    char *weights_filepath;
    char *config_filepath;
    /* cli cfgs */
    char *in_filepath;
    char *out_filepath;
    /* layer cfgs */
    size_t network_size;
    size_t *neurons;
    char **activations;
};

void die(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);
void *erealloc(void *ptr, size_t size);
void util_load_cli(struct Configs *ml, int argc, char *argv[]);
void util_load_config(struct Configs *ml, char *filepath);
void util_free_config(struct Configs *ml);
#endif
Feel free to download, copy and edit any repo