diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-07-26 09:47:52 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-07-26 09:47:52 -0500 |
commit | ce0001538820d819bf965a24ffbb6f6e6269859c (patch) | |
tree | 4ae4de19596d8771ac0b4757f285e4f11fd94519 /src/util.h | |
parent | d45581c0b067b9526ce88ba9d3a1bd861f4ff7cc (diff) |
add: file_write() implemented
things implemented:
- CLI option --only-out added
- CLI option --format works more intuitively
- csv tsv and json output support
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ #ifndef UTIL_ #define UTIL_ +#include <stdbool.h> #include <stddef.h> struct Configs { @@ -16,6 +17,7 @@ struct Configs { char *file_format; char *in_filepath; char *out_filepath; + bool only_out; /* layer cfgs */ size_t network_size; size_t *neurons; |