|
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Tensorflow;
-
- namespace TensorFlowNET.UnitTest
- {
- [TestClass]
- public class TrainSaverTest
- {
- [TestMethod]
- public void Save()
- {
- 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);
-
-
- }
- }
- }
|