You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LoggingTest.cs 336 B

4 years ago
12345678910111213141516
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using static Tensorflow.Binding;
  3. namespace TensorFlowNET.UnitTest.ManagedAPI
  4. {
  5. [TestClass]
  6. public class LoggingTest
  7. {
  8. [TestMethod]
  9. public void PrintTest()
  10. {
  11. var tensor = tf.range(10);
  12. tf.print(tensor);
  13. }
  14. }
  15. }