|
12345678910111213141516171819202122 |
- using Tensorflow.NumPy;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Tensorflow.Keras.ArgsDefinition;
-
- namespace Tensorflow.Keras.Layers
- {
- public partial class LayersApi
- {
- /// <summary>
- /// Layer that concatenates a list of inputs.
- /// </summary>
- /// <param name="axis">Axis along which to concatenate.</param>
- /// <returns></returns>
- public ILayer Concatenate(int axis = -1)
- => new Concatenate(new MergeArgs
- {
- Axis = axis
- });
- }
- }
|