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 'tf.keras-0.3.image-classification'
tags/keras_v0.3.0
Oceania2018
4 years ago
parent
4eb9323f9c
8b6dc478b2
commit
8e4a98a282
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/TensorFlowNET.Core/Data/DatasetV2.cs
+ 3
- 1
src/TensorFlowNET.Core/Data/DatasetV2.cs
View File
@@ -132,7 +132,9 @@ namespace Tensorflow
break;
}
yield return (results[0], results.Length == 1 ? null : results[1]);
yield return results.Length == 2
? (results[0], results[1])
: (null, results[0]);
}
}
Write
Preview
Loading…
Cancel
Save