forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathops.name_scope.cs
More file actions
66 lines (57 loc) · 1.68 KB
/
ops.name_scope.cs
File metadata and controls
66 lines (57 loc) · 1.68 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
using System;
using System.Collections.Generic;
using System.Text;
using Tensorflow.Eager;
namespace Tensorflow
{
public partial class ops
{
public class name_scope : IPython
{
public string _name;
public string _default_name;
public object _values;
public Context _ctx;
public string _name_scope;
private object _g_manager;
public name_scope(string name, string default_name = "", object values = null)
{
_name = name;
_default_name = default_name;
_values = values;
// _ctx = new Context();
}
public void __enter__()
{
if (String.IsNullOrEmpty(_name))
{
_name = _default_name;
}
Graph g = null;
if (_values is List<Tensor> values)
g = _get_graph_from_inputs(values);
if (g == null)
g = get_default_graph();
_name_scope = g.name_scope(_name);
}
public void Dispose()
{
var g = get_default_graph();
g._name_stack = g.old_stack;
// clear g._name_stack
g.old_stack = "";
}
public void __exit__()
{
}
/// <summary>
/// __enter__()
/// </summary>
/// <param name="ns"></param>
public static implicit operator string(name_scope ns)
{
return ns._name_scope;
}
}
}
}