forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtensorflow.cs
More file actions
111 lines (90 loc) · 3.95 KB
/
tensorflow.cs
File metadata and controls
111 lines (90 loc) · 3.95 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
/*****************************************************************************
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 Serilog;
using Serilog.Core;
using System.Threading;
using Tensorflow.Contexts;
using Tensorflow.Eager;
using Tensorflow.Gradients;
namespace Tensorflow
{
public delegate Tensor[] BackwardFunction(Tensor[] grads, long[] unneeded_gradients);
public partial class tensorflow
{
public TF_DataType byte8 = TF_DataType.TF_UINT8;
public TF_DataType int8 = TF_DataType.TF_INT8;
public TF_DataType int16 = TF_DataType.TF_INT16;
public TF_DataType int32 = TF_DataType.TF_INT32;
public TF_DataType int64 = TF_DataType.TF_INT64;
public TF_DataType float16 = TF_DataType.TF_HALF;
public TF_DataType float32 = TF_DataType.TF_FLOAT;
public TF_DataType float64 = TF_DataType.TF_DOUBLE;
public TF_DataType @bool = TF_DataType.TF_BOOL;
public TF_DataType chars = TF_DataType.TF_STRING;
public TF_DataType @string = TF_DataType.TF_STRING;
public OpDefLibrary OpDefLib;
public Logger Logger;
ThreadLocal<Status> _status = new ThreadLocal<Status>(() => new Status());
public Status Status => _status.Value;
ThreadLocal<Context> _context = new ThreadLocal<Context>(() => new Context());
public Context Context => _context.Value;
ThreadLocal<IEagerRunner> _runner = new ThreadLocal<IEagerRunner>(() => new EagerRunner());
public IEagerRunner Runner => _runner.Value;
public tensorflow()
{
Logger = new LoggerConfiguration()
.MinimumLevel.Error()
.WriteTo.Console()
.CreateLogger();
OpDefLib = new OpDefLibrary();
InitGradientEnvironment();
}
public string VERSION => c_api.StringPiece(c_api.TF_Version());
private void InitGradientEnvironment()
{
_tapeSet = new GradientTape();
ops.RegisterFromAssembly();
}
public ResourceVariable Variable<T>(T data,
bool trainable = true,
bool validate_shape = true,
bool use_resource = true,
string name = null,
TF_DataType dtype = TF_DataType.DtInvalid,
VariableAggregation aggregation = VariableAggregation.None,
Shape shape = null)
=> new ResourceVariable(data,
trainable: trainable,
validate_shape: validate_shape,
name: name,
dtype: dtype,
aggregation: aggregation,
shape: shape);
public Tensor placeholder(TF_DataType dtype, Shape shape = null, string name = null)
=> array_ops.placeholder(dtype, shape, name);
public void enable_eager_execution()
=> Context.eager_mode();
public Session get_default_session()
=> ops.get_default_session();
public Session Session()
=> compat.v1.Session();
public Session Session(Graph graph, ConfigProto config = null)
{
return new Session(graph, config: config).as_default();
}
public Session Session(ConfigProto config)
{
return new Session(null, config).as_default();
}
}
}