This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
scisharp
/
TensorFlow.NET
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
21
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix IO Exception from keras.fit.
tags/v0.100.4-load-saved-model
AsakusaRinne
Haiping
2 years ago
parent
def066498d
commit
10f66f0baf
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/TensorFlowNET.Keras/Engine/Model.Fit.cs
+ 4
- 1
src/TensorFlowNET.Keras/Engine/Model.Fit.cs
View File
@@ -137,7 +137,10 @@ namespace Tensorflow.Keras.Engine
remaining += ".";
Binding.tf_output_redirect.Write($"{step + 1:D4}/{data_handler.Inferredsteps:D4} [{progress}{remaining}] - {elapse}ms/step {result_pairs}");
Console.CursorLeft = 0;
if (!Console.IsOutputRedirected)
{
Console.CursorLeft = 0;
}
}
}
}
Write
Preview
Loading…
Cancel
Save