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 480 B

6 years ago
6 years ago
6 years ago
6 years ago
1234567891011121314151617181920212223
  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. ![tensors_flowing](docs/assets/tensors_flowing.gif)
  5. ### How to use
  6. ```cs
  7. using tf = TensorFlowNET.Core.Tensorflow;
  8. namespace TensorFlowNET.Examples
  9. {
  10. public class HelloWorld : IExample
  11. {
  12. public void Run()
  13. {
  14. var hello = tf.constant("Hello, TensorFlow!");
  15. }
  16. }
  17. }
  18. ```

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

Contributors (1)