-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1164 from Wanglongzhi2001/master
fix: partially fix the bug of load_model
- Loading branch information
Showing
19 changed files
with
178 additions
and
17 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/ExponentialArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class ExponentialArgs : LayerArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/HardSigmoidArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class HardSigmoidArgs : LayerArgs | ||
{ | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SELUArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class SELUArgs : LayerArgs | ||
{ | ||
|
||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftplusArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class SoftplusArgs : LayerArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftsignArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class SoftsignArgs : LayerArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SwishArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class SwishArgs : LayerArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/TanhArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class TanhArgs : LayerArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Convolution/Conv2DTransposeArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class Conv2DTransposeArgs : Conv2DArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/AddArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class AddArgs : MergeArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/ConcatenateArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class ConcatenateArgs : MergeArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/SubtractArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class SubtractArgs : MergeArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling1DArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class GlobalAveragePooling1DArgs : Pooling1DArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling2DArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class GlobalAveragePooling2DArgs : Pooling2DArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling1DArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class GlobalMaxPooling1DArgs : Pooling1DArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling2DArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class GlobalMaxPooling2DArgs : Pooling2DArgs | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/MaxPooling1DArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Tensorflow.Keras.ArgsDefinition | ||
{ | ||
public class MaxPooling1DArgs : Pooling1DArgs | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters