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: add the GRU, LSTM, SimpleRNN's OptionalArgs
tags/v0.150.0-BERT-Model
Wanglongzhi2001
1 year ago
parent
a73694ab2d
commit
3fcc4d8d15
3 changed files
with
23 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/GRUOptionalArgs.cs
+11
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/LSTMOptionalArgs.cs
+11
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/SimpleRNNOptionalArgs.cs
+ 1
- 3
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/GRUOptionalArgs.cs
View File
@@ -4,10 +4,8 @@ using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class GRUOptionalArgs
public class GRUOptionalArgs
: RnnOptionalArgs
{
public string Identifier => "GRU";
public Tensor Mask { get; set; } = null;
}
}
+ 11
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/LSTMOptionalArgs.cs
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition.Rnn
{
public class LSTMOptionalArgs : RnnOptionalArgs
{
public string Identifier => "LSTM";
}
}
+ 11
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Rnn/SimpleRNNOptionalArgs.cs
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition.Rnn
{
public class SimpleRNNOptionalArgs : RnnOptionalArgs
{
public string Identifier => "SimpleRNN";
}
}
Write
Preview
Loading…
Cancel
Save