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.

CApiVariableTest.cs 525 B

12345678910111213141516171819202122232425262728
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using Tensorflow;
  6. namespace TensorFlowNET.UnitTest.Eager
  7. {
  8. /// <summary>
  9. /// tensorflow\c\eager\c_api_test.cc
  10. /// </summary>
  11. [TestClass]
  12. public class CApiVariableTest : CApiTest, IDisposable
  13. {
  14. Status status = new Status();
  15. [TestMethod]
  16. public void Variables()
  17. {
  18. }
  19. public void Dispose()
  20. {
  21. }
  22. }
  23. }

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