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.

VersionTest.cs 439 B

1234567891011121314151617181920
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TensorFlowNET.Core;
  6. using tf = TensorFlowNET.Core.Tensorflow;
  7. namespace TensorFlowNET.UnitTest
  8. {
  9. [TestClass]
  10. public class VersionTest
  11. {
  12. [TestMethod]
  13. public void GetVersion()
  14. {
  15. var ver = tf.VERSION;
  16. Assert.IsTrue(ver.Contains("."));
  17. }
  18. }
  19. }

tensorflow框架的.NET版本,提供了丰富的特性和API,可以借此很方便地在.NET平台下搭建深度学习训练与推理流程。

Contributors (1)