You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SimpleRNN.cs 200 B

1234567891011121314
  1. using Tensorflow.Keras.ArgsDefinition;
  2. namespace Tensorflow.Keras.Layers
  3. {
  4. public class SimpleRNN : RNN
  5. {
  6. public SimpleRNN(RNNArgs args) : base(args)
  7. {
  8. }
  9. }
  10. }