|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Tensorflow;
- using NumSharp.Core;
-
- namespace TensorFlowNET.UnitTest
- {
- [TestClass]
- public class VariableTest : Python
- {
- [TestMethod]
- public void Initializer()
- {
- var x = tf.Variable(10, name: "x");
-
- using (var session = tf.Session())
- {
- session.run(x.initializer);
- var result = session.run(x);
- Assert.AreEqual(10, (int)result);
- }
- }
-
- [TestMethod]
- public void StringVar()
- {
- var mammal1 = tf.Variable("Elephant", "var1", tf.chars);
- var mammal2 = tf.Variable("Tiger");
- }
-
- [TestMethod]
- public void SimpleScope()
- {
- with(tf.variable_scope("foo"), delegate
- {
- with(tf.variable_scope("bar"), delegate
- {
- var v = tf.get_variable("v", new TensorShape(1));
- });
- });
- }
-
- [TestMethod]
- public void ScalarVar()
- {
- var x = tf.constant(3, name: "x");
- var y = tf.Variable(x + 1, name: "y");
-
- var model = tf.global_variables_initializer();
-
- using (var session = tf.Session())
- {
- session.run(model);
- int result = session.run(y);
- Assert.AreEqual(result, 4);
- }
- }
-
- [TestMethod]
- public void Assign1()
- {
- with<Graph>(tf.Graph().as_default(), graph =>
- {
- var variable = tf.Variable(31, name: "tree");
- var init = tf.global_variables_initializer();
-
- var sess = tf.Session(graph);
- sess.run(init);
-
- var result = sess.run(variable);
- Assert.IsTrue((int)result == 31);
-
- var assign = variable.assign(12);
- result = sess.run(assign);
- Assert.IsTrue((int)result == 12);
- });
- }
-
- [TestMethod]
- public void Assign2()
- {
- var v1 = tf.Variable(10.0f, name: "v1"); //tf.get_variable("v1", shape: new TensorShape(3), initializer: tf.zeros_initializer);
- var inc_v1 = v1.assign(v1 + 1.0f);
-
- // Add an op to initialize the variables.
- var init_op = tf.global_variables_initializer();
-
- with<Session>(tf.Session(), sess =>
- {
- sess.run(init_op);
- // o some work with the model.
- inc_v1.op.run();
- });
- }
-
- /// <summary>
- /// https://databricks.com/tensorflow/variables
- /// </summary>
- [TestMethod]
- public void Add()
- {
- int result = 0;
- Tensor x = tf.Variable(10, name: "x");
-
- var init_op = tf.global_variables_initializer();
- using (var session = tf.Session())
- {
- session.run(init_op);
- for(int i = 0; i < 5; i++)
- {
- x = x + 1;
- result = session.run(x);
- print(result);
- }
- }
-
- Assert.AreEqual(15, result);
- }
- }
- }
|