This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
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 TransferLearning.Test null bug.
tags/v0.100.4-load-saved-model
Haiping Chen
2 years ago
parent
a432807c23
commit
0f7bf4d6a6
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/python/subclassing.py
+ 1
- 1
src/python/subclassing.py
View File
@@ -65,7 +65,7 @@ class ConvNet(Model):
x = self.maxpool2(x)
x = self.flatten(x)
x = self.fc1(x)
x = self.dropout(x
, training=is_training
)
x = self.dropout(x)
x = self.out(x)
if not is_training:
# tf cross entropy expect logits without softmax, so only
Write
Preview
Loading…
Cancel
Save