forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayer.State.cs
More file actions
28 lines (25 loc) · 841 Bytes
/
Layer.State.cs
File metadata and controls
28 lines (25 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
namespace Tensorflow.Keras.Engine
{
public partial class Layer
{
protected Dictionary<ILayer, bool> trainable_state;
protected Dictionary<ILayer, bool> _compiled_trainable_state;
/// <summary>
/// Get the `trainable` state of each sublayer.
/// </summary>
/// <returns></returns>
protected Dictionary<ILayer, bool> _get_trainable_state()
{
trainable_state = new Dictionary<ILayer, bool>();
foreach (var layer in _flatten_layers())
trainable_state[layer] = layer.Trainable;
return trainable_state;
}
void _set_trainable_state(Dictionary<Layer, object> trainable_state)
{
throw new NotImplementedException("");
}
}
}