Diff of /code/main.py [000000] .. [ebf7be]

Switch to side-by-side view

--- a
+++ b/code/main.py
@@ -0,0 +1,23 @@
+# -*- coding:utf-8 -*-
+"""
+	Start entry for training and testing
+"""
+import tensorflow as tf
+import os
+from model2 import model
+import numpy as np
+
+from project_config import *
+
+if __name__ =='__main__':
+    print(" beigin...")
+    epoch = 5
+    model = model(learning_rate,keep_prob,batch_size,epoch)
+    model.inference(normalization_output_path,test_path,2,True)
+
+
+
+
+
+
+