Browse Source

fix: partially fix the bug of load_model

tags/v0.110.4-Transformer-Model
Wanglongzhi2001 2 years ago
parent
commit
f5eb4ff0a0
16 changed files with 161 additions and 0 deletions
  1. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/ExponentialArgs.cs
  2. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/HardSigmoidArgs.cs
  3. +11
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SELUArgs.cs
  4. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftplusArgs.cs
  5. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SoftsignArgs.cs
  6. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/SwishArgs.cs
  7. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Activation/TanhArgs.cs
  8. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Convolution/Conv2DTransposeArgs.cs
  9. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/AddArgs.cs
  10. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/ConcatenateArgs.cs
  11. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Merging/SubtractArgs.cs
  12. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling1DArgs.cs
  13. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalAveragePooling2DArgs.cs
  14. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling1DArgs.cs
  15. +10
    -0
      src/TensorFlowNET.Core/Keras/ArgsDefinition/Pooling/GlobalMaxPooling2DArgs.cs
  16. +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
{
}
}

Loading…
Cancel
Save