forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackendImpl.cs
More file actions
250 lines (219 loc) · 9.58 KB
/
BackendImpl.cs
File metadata and controls
250 lines (219 loc) · 9.58 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*****************************************************************************
Copyright 2018 The TensorFlow.NET Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
******************************************************************************/
using NumSharp;
using System;
using System.Collections.Generic;
using static Tensorflow.Binding;
namespace Tensorflow.Keras
{
public class BackendImpl : BackendBase
{
/* ---------------------------------------- KERAS BACKEND NATIVE OBJECTS ---------------------------------------- */
public Func<Array, double> py_sum = sum;
public Func<Array, bool> py_all = all;
//Func<Array, bool> py_any = any;
//Func<double, double, double, IEnumerable<double>> py_slice = slice;
public Session _SESSION => ops.get_default_session();
public Graph _GRAPH;
public Dictionary<Graph, GraphLearningPhase> _GRAPH_LEARNING_PHASES;
//Dictionary<Graph, Dictionary<string, int>> PER_GRAPH_LAYER_NAME_UIDS;
public bool _MANUAL_VAR_INIT = false;
public List<string> _LOCAL_DEVICES = null;
/* -------------------------------------- KERAS BACKEND NATIVE OBJECTS END -------------------------------------- */
/// <summary>
/// A global dictionary mapping graph objects to an index of counters used
/// for various layer names in each graph.
/// Allows to give unique autogenerated names to layers, in a graph-specific way.
/// </summary>
public Dictionary<Graph, Dictionary<string, int>> PER_GRAPH_LAYER_NAME_UIDS = new Dictionary<Graph, Dictionary<string, int>>();
public Dictionary<string, IVariableV1> _GRAPH_VARIABLES = new Dictionary<string, IVariableV1>();
public Dictionary<string, Optimizer> _GRAPH_TF_OPTIMIZERS = new Dictionary<string, Optimizer>();
public _DummyEagerGraph _DUMMY_EAGER_GRAPH = new _DummyEagerGraph();
public BackendImpl()
{
}
public void track_variable(IVariableV1 v)
{
var graph = v.Graph;
_GRAPH_VARIABLES[graph.graph_key] = v;
}
public Tensor placeholder(TensorShape shape = null,
int ndim = -1,
TF_DataType dtype = TF_DataType.DtInvalid,
bool sparse = false,
string name = null,
bool ragged = false)
{
if (sparse)
{
throw new NotImplementedException("placeholder sparse is true");
}
else
{
return array_ops.placeholder(dtype: dtype, shape: shape, name: name);
}
}
public Graph get_graph()
{
return ops.get_default_graph();
}
public int get_uid(string prefix)
{
var graph = tf.get_default_graph();
if (!PER_GRAPH_LAYER_NAME_UIDS.ContainsKey(graph))
PER_GRAPH_LAYER_NAME_UIDS.Add(graph, new defaultdict<string, int>());
if (!PER_GRAPH_LAYER_NAME_UIDS[graph].ContainsKey(prefix))
PER_GRAPH_LAYER_NAME_UIDS[graph][prefix] = 0;
PER_GRAPH_LAYER_NAME_UIDS[graph][prefix] += 1;
return PER_GRAPH_LAYER_NAME_UIDS[graph][prefix];
}
public void reset_uids() => PER_GRAPH_LAYER_NAME_UIDS = new Dictionary<Graph, Dictionary<string, int>>();
public void clear_session()
{
ops.reset_default_graph();
reset_uids();
ops.set_default_session(tf.Session(ops.get_default_graph()));
var phase = tf.placeholder_with_default(false, new int[] { }, name: "keras_learning_phase");
_GRAPH_LEARNING_PHASES = new Dictionary<Graph, GraphLearningPhase>();
_GRAPH_LEARNING_PHASES[tf.get_default_graph()] = 0;
}
public void manual_variable_initialization(bool value)
{
_MANUAL_VAR_INIT = value;
}
public GraphLearningPhase learning_phase()
{
var graph = tf.get_default_graph();
if (_GRAPH_LEARNING_PHASES.ContainsKey(graph))
{
var phase = tf.placeholder_with_default(false, shape: new int[] { }, name: "keras_learning_phase");
_GRAPH_LEARNING_PHASES[graph] = 0;
}
return _GRAPH_LEARNING_PHASES[graph];
}
public void set_learning_phase(bool value)
{
_GRAPH_LEARNING_PHASES[tf.get_default_graph()] = (GraphLearningPhase)((value) ? 1 : 0);
}
/// <summary>
/// Pads the 2nd and 3rd dimensions of a 4D tensor.
/// </summary>
/// <param name="x"></param>
/// <param name="padding"></param>
/// <param name="data_format"></param>
/// <returns></returns>
public Tensor spatial_2d_padding(Tensor x, NDArray padding = null, string data_format = null)
{
if (padding == null)
padding = new[,] { { 1, 1 }, { 1, 1 } };
NDArray pattern;
if (data_format == "channels_first")
pattern = new int[,]
{
{ 0, 0 },
{ 0, 0 },
{ padding[0][0], padding[0][1] },
{ padding[1][0], padding[1][1] }
};
else
pattern = new int[,]
{
{ 0, 0 },
{ padding[0][0], padding[0][1] },
{ padding[1][0], padding[1][1] },
{ 0, 0 }
};
return array_ops.pad(x, pattern);
}
/// <summary>
/// Method to evaluate a tensor in eager or in a tf.function.
/// </summary>
/// <param name="outputs"></param>
/// <returns></returns>
public NDArray eval_in_eager_or_function(Tensor outputs)
{
return outputs.eval();
}
public class _DummyEagerGraph
{ }
/// <summary>
/// Categorical crossentropy between an output tensor and a target tensor.
/// </summary>
/// <param name="target"></param>
/// <param name="output"></param>
/// <param name="from_logits"></param>
/// <param name="axis"></param>
/// <returns></returns>
public Tensor categorical_crossentropy(Tensor target, Tensor output, bool from_logits = false, int axis = -1)
{
if (from_logits)
return tf.nn.softmax_cross_entropy_with_logits_v2(labels: target, logits: output, axis: axis);
throw new NotImplementedException("");
}
/// <summary>
/// Resizes the images contained in a 4D tensor.
/// </summary>
/// <param name="x"></param>
/// <param name="height_factor"></param>
/// <param name="width_factor"></param>
/// <param name="data_format"></param>
/// <param name="interpolation"></param>
/// <returns></returns>
public Tensor resize_images(Tensor x, int height_factor, int width_factor,
string data_format, string interpolation = "nearest")
{
var (rows, cols) = (0, 0);
if (data_format == "channels_first")
(rows, cols) = (2, 3);
else if (data_format == "channels_last")
(rows, cols) = (1, 2);
else
throw new ValueError($"Invalid `data_format` argument: {data_format}");
var original_shape = x.shape;
var new_shape = array_ops.shape(x)[new Slice(rows, cols + 1)];
new_shape *= constant_op.constant(np.array(height_factor, width_factor));
if (data_format == "channels_first")
// x = permute_dimensions(x, [0, 2, 3, 1]);
throw new NotImplementedException("");
if (interpolation == "nearest")
x = tf.image.resize_images_v2(x, new_shape, method: ResizeMethod.NEAREST_NEIGHBOR);
if (data_format == "channels_first")
// x = permute_dimensions(x, [0, 3, 1, 2]);
throw new NotImplementedException("");
int new_height = original_shape[rows] < 0 ? -1 : original_shape[rows] * height_factor;
int new_width = original_shape[cols] < 0 ? -1 : original_shape[cols] * width_factor;
TensorShape output_shape = data_format == "channels_first" ?
(-1, -1, new_height, new_width) : (-1, new_height, new_width, -1);
x.set_shape(output_shape);
return x;
}
/// <summary>
/// Concatenates a list of tensors alongside the specified axis.
/// </summary>
/// <param name="tensors">list of tensors to concatenate.</param>
/// <param name="axis">concatenation axis.</param>
/// <returns></returns>
public Tensor concatenate(Tensors tensors, int axis = -1)
{
if(axis < 0)
{
var rank = tensors[0].NDims;
if (rank > -1)
axis %= rank;
else
axis = 0;
}
return array_ops.concat(tensors, axis);
}
}
}