From c123f320fcc2212f1d3b59a4d3d2ae6be71cf1e6 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Sun, 04 Mar 2018 20:41:23 +0000
Subject: [PATCH] Show avg-loss chart during Training, if compiled with OpenCV. Use -dont_show to disable.
---
src/list.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/list.c b/src/list.c
index 948d960..0e4165d 100644
--- a/src/list.c
+++ b/src/list.c
@@ -11,6 +11,7 @@
return l;
}
+/*
void transfer_node(list *s, list *d, node *n)
{
node *prev, *next;
@@ -22,6 +23,7 @@
if(s->front == n) s->front = next;
if(s->back == n) s->back = prev;
}
+*/
void *list_pop(list *l){
if(!l->back) return 0;
--
Gitblit v1.10.0