Skip to content

Commit 7e80994

Browse files
committed
Disable colored log by default
1 parent b5e2d3c commit 7e80994

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dense_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Define hyperparameters
1515
flags = tf.app.flags
1616
FLAGS = flags.FLAGS
17-
flags.DEFINE_boolean("enable_colored_log", True, "Enable colored log")
17+
flags.DEFINE_boolean("enable_colored_log", False, "Enable colored log")
1818
flags.DEFINE_string("train_tfrecords_file",
1919
"./data/cancer/cancer_train.csv.tfrecords",
2020
"The glob pattern of train TFRecords files")

sparse_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Define hyperparameters
1515
flags = tf.app.flags
1616
FLAGS = flags.FLAGS
17-
flags.DEFINE_boolean("enable_colored_log", True, "Enable colored log")
17+
flags.DEFINE_boolean("enable_colored_log", False, "Enable colored log")
1818
flags.DEFINE_string("train_tfrecords_file",
1919
"./data/a8a/a8a_train.libsvm.tfrecords",
2020
"The glob pattern of train TFRecords files")

0 commit comments

Comments
 (0)