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.

Container.cs 264 B

4 years ago
12345678910111213
  1. namespace Tensorflow.Keras.Engine
  2. {
  3. public class Container
  4. {
  5. protected string[] _output_names;
  6. protected bool _built;
  7. public Container(string[] output_names)
  8. {
  9. _output_names = output_names;
  10. }
  11. }
  12. }