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: partially fix the bug of load_model
tags/v0.110.4-Transformer-Model
Wanglongzhi2001
2 years ago
parent
adeed05f64
commit
f5eb4ff0a0
16 changed files
with
161 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/ExponentialArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/HardSigmoidArgs.cs
+11
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SELUArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftplusArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftsignArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SwishArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/TanhArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Convolution/Conv2DTransposeArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/AddArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/ConcatenateArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/SubtractArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling1DArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling2DArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling1DArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling2DArgs.cs
+10
-0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/MaxPooling1DArgs.cs
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/ExponentialArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class ExponentialArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/HardSigmoidArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class HardSigmoidArgs : LayerArgs
{
}
}
+ 11
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SELUArgs.cs
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class SELUArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftplusArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class SoftplusArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftsignArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class SoftsignArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SwishArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class SwishArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/TanhArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class TanhArgs : LayerArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Convolution/Conv2DTransposeArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class Conv2DTransposeArgs : Conv2DArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/AddArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class AddArgs : MergeArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/ConcatenateArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class ConcatenateArgs : MergeArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/SubtractArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class SubtractArgs : MergeArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling1DArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class GlobalAveragePooling1DArgs : Pooling1DArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling2DArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class GlobalAveragePooling2DArgs : Pooling2DArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling1DArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class GlobalMaxPooling1DArgs : Pooling1DArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling2DArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class GlobalMaxPooling2DArgs : Pooling2DArgs
{
}
}
+ 10
- 0
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/MaxPooling1DArgs.cs
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.ArgsDefinition
{
public class MaxPooling1DArgs : Pooling1DArgs
{
}
}
Write
Preview
Loading…
Cancel
Save