diff options
author | jvech <jmvalenciae@unal.edu.co> | 2023-08-08 17:04:04 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2023-08-08 17:04:04 -0500 |
commit | 4b2fec340e01d09902ca790621b476a05f4b8c2a (patch) | |
tree | 542e59795357b9a94c873f6cd44371e3bd48ea38 /Makefile | |
parent | fff35116eed83c9368e8bd07d02c9e95c447e018 (diff) |
add: pass activations to a separate file
The point is have this file for new activation function without bloating
nn.c file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ run: build ./${BIN} debug: build - gdb ${BIN} -x breaks.txt --tui + gdb ${BIN} -x commands.gdb --tui clean: @rm $(OBJS) $(OBJDIR) -rv |