forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrainSaverTest.cs
More file actions
105 lines (86 loc) · 3.34 KB
/
TrainSaverTest.cs
File metadata and controls
105 lines (86 loc) · 3.34 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
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Tensorflow;
namespace TensorFlowNET.UnitTest
{
[TestClass]
public class TrainSaverTest : Python
{
public void ExportGraph()
{
var v = tf.Variable(0, name: "my_variable");
var sess = tf.Session();
tf.train.write_graph(sess.graph, "/tmp/my-model", "train1.pbtxt");
}
public void ImportGraph()
{
with<Session>(tf.Session(), sess =>
{
var new_saver = tf.train.import_meta_graph("C:/tmp/my-model.meta");
});
//tf.train.export_meta_graph(filename: "linear_regression.meta.bin");
// import meta
/*tf.train.import_meta_graph("linear_regression.meta.bin");
var cost = graph.OperationByName("truediv").output;
var pred = graph.OperationByName("Add").output;
var optimizer = graph.OperationByName("GradientDescent");
var X = graph.OperationByName("Placeholder").output;
var Y = graph.OperationByName("Placeholder_1").output;
var W = graph.OperationByName("weight").output;
var b = graph.OperationByName("bias").output;*/
/*var text = JsonConvert.SerializeObject(graph, new JsonSerializerSettings
{
Formatting = Formatting.Indented
});*/
}
public void ImportSavedModel()
{
with<Session>(Session.LoadFromSavedModel("mobilenet"), sess =>
{
});
}
public void ImportGraphDefFromPbFile()
{
var g = new Graph();
var status = g.Import("mobilenet/saved_model.pb");
}
public void Save1()
{
var w1 = tf.Variable(0, name: "save1");
var init_op = tf.global_variables_initializer();
// Add ops to save and restore all the variables.
var saver = tf.train.Saver();
with<Session>(tf.Session(), sess =>
{
sess.run(init_op);
// Save the variables to disk.
var save_path = saver.save(sess, "/tmp/model1.ckpt");
Console.WriteLine($"Model saved in path: {save_path}");
});
}
public void Save2()
{
var v1 = tf.get_variable("v1", shape: new TensorShape(3), initializer: tf.zeros_initializer);
var v2 = tf.get_variable("v2", shape: new TensorShape(5), initializer: tf.zeros_initializer);
var inc_v1 = v1.assign(v1 + 1.0f);
var dec_v2 = v2.assign(v2 - 1.0f);
// Add an op to initialize the variables.
var init_op = tf.global_variables_initializer();
// Add ops to save and restore all the variables.
var saver = tf.train.Saver();
with<Session>(tf.Session(), sess =>
{
sess.run(init_op);
// o some work with the model.
inc_v1.op.run();
dec_v2.op.run();
// Save the variables to disk.
var save_path = saver.save(sess, "/tmp/model2.ckpt");
Console.WriteLine($"Model saved in path: {save_path}");
});
}
}
}