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.
|
- using System;
- using System.Collections.Generic;
-
- namespace Tensorflow.Keras.Engine
- {
- public partial class Layer
- {
- protected List<ILayer> _layers = new List<ILayer>();
- public virtual List<ILayer> Layers => _layers;
-
- protected void StackLayers(params ILayer[] layers)
- {
- _layers.AddRange(layers);
- }
-
- public virtual Shape ComputeOutputShape(Shape input_shape)
- => throw new NotImplementedException("");
- }
- }
|