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.

csni.cc 149 B

1234567
  1. #include <iostream>
  2. #include "tensorflow/c/c_api.h"
  3. int main() {
  4. printf("Hello from TensorFlow C library version %s", TF_Version());
  5. return 0;
  6. }

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