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.

LayersApi.Merging.cs 574 B

12345678910111213141516171819202122
  1. using Tensorflow.NumPy;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using Tensorflow.Keras.ArgsDefinition;
  6. namespace Tensorflow.Keras.Layers
  7. {
  8. public partial class LayersApi
  9. {
  10. /// <summary>
  11. /// Layer that concatenates a list of inputs.
  12. /// </summary>
  13. /// <param name="axis">Axis along which to concatenate.</param>
  14. /// <returns></returns>
  15. public ILayer Concatenate(int axis = -1)
  16. => new Concatenate(new MergeArgs
  17. {
  18. Axis = axis
  19. });
  20. }
  21. }