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
Merge branch 'master' of
https://github.com/SciSharp/TensorFlow.NET
tags/keras_v0.3.0
Oceania2018
4 years ago
parent
fda7e6df0b
4eb9323f9c
commit
862ff66924
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
src/TensorFlowNET.Core/Data/DatasetV2.cs
+ 1
- 3
src/TensorFlowNET.Core/Data/DatasetV2.cs
View File
@@ -132,9 +132,7 @@ namespace Tensorflow
break;
}
yield return results.Length == 2
? (results[0], results[1])
: (null, results[0]);
yield return (results[0], results.Length == 1 ? null : results[1]);
}
}
Write
Preview
Loading…
Cancel
Save