aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2023-08-08 08:55:34 -0500
committerjvech <jmvalenciae@unal.edu.co>2023-08-08 08:55:34 -0500
commitfff35116eed83c9368e8bd07d02c9e95c447e018 (patch)
tree1394111719a7482348b6c871cdac5d856685df01 /Makefile
parentaeb27a882087ee447a155bd589bd3712050a16f5 (diff)
add: activation and cost functions added
Training function were fixed and new activation and cost function were implemented
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 26f5ec1..cd3e4ea 100644
--- a/Makefile
+++ b/Makefile
@@ -24,8 +24,8 @@ build: $(OBJS)
run: build
./${BIN}
-debug: $(BIN)
- gdb $< --tui
+debug: build
+ gdb ${BIN} -x breaks.txt --tui
clean:
@rm $(OBJS) $(OBJDIR) -rv
Feel free to download, copy and edit any repo