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.

README.md 369 B

7 years ago
7 years ago
123456789101112131415161718192021
  1. # TensorFlow.NET
  2. TensorFlow.NET provides .NET Standard binding for [TensorFlow](https://www.tensorflow.org/).
  3. TensorFlow.NET is a member project of SciSharp stack.
  4. ### How to use
  5. ```cs
  6. using tf = TensorFlowNET.Core.Tensorflow;
  7. namespace TensorFlowNET.Examples
  8. {
  9. public class HelloWorld : IExample
  10. {
  11. public void Run()
  12. {
  13. }
  14. }
  15. }
  16. ```

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

Contributors (1)