From ae43c2bc32fbb838bfebeeaf2c2b058ccab5c83c Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@burninator.cs.washington.edu>
Date: Thu, 23 Jun 2016 05:31:14 +0000
Subject: [PATCH] hi

---
 src/network.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/network.h b/src/network.h
index 66ceb30..af64e06 100644
--- a/src/network.h
+++ b/src/network.h
@@ -7,10 +7,11 @@
 #include "data.h"
 
 typedef enum {
-    CONSTANT, STEP, EXP, POLY, STEPS, SIG
+    CONSTANT, STEP, EXP, POLY, STEPS, SIG, RANDOM
 } learning_rate_policy;
 
 typedef struct network{
+    float *workspace;
     int n;
     int batch;
     int *seen;
@@ -33,6 +34,7 @@
     float *scales;
     int   *steps;
     int num_steps;
+    int burn_in;
 
     int inputs;
     int h, w, c;
@@ -49,6 +51,7 @@
     float *truth;
     float *input;
     float *delta;
+    float *workspace;
     int train;
     int index;
     network net;

--
Gitblit v1.10.0