Commit eae63621 authored by Matt Harvey's avatar Matt Harvey
Browse files

Save tensorboard logs to a model subdir

Showing with 1 addition and 1 deletion
+1 -1
......@@ -18,7 +18,7 @@ def train(data_type, seq_length, model, saved_model=None,
save_best_only=True)
# Helper: TensorBoard
tb = TensorBoard(log_dir=os.path.join('data', 'logs'))
tb = TensorBoard(log_dir=os.path.join('data', 'logs', model))
# Helper: Stop when we stop learning.
early_stopper = EarlyStopping(patience=5)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment