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 1.0 kB

6 years ago
1234567891011121314151617181920212223242526
  1. Here are some pre-built TensorFlow binaries you can use for each platform:
  2. - Linux
  3. - CPU-only: https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.12.0.tar.gz
  4. - GPU-enabled: https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.12.0.tar.gz
  5. - Mac: https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.12.0.tar.gz
  6. - Windows: https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-windows-x86_64-1.12.0.zip
  7. https://www.tensorflow.org/install/source_windows
  8. pacman -S git patch unzip
  9. 1. Build static library
  10. `bazel build --config=opt //tensorflow:libtensorflow.so`
  11. 2. Build pip package
  12. `bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package`
  13. 3. Generate pip installation file
  14. `bazel-bin\tensorflow\tools\pip_package\build_pip_package C:/tmp/tensorflow_pkg`
  15. 4. Install from local wheel file.
  16. `pip install C:/tmp/tensorflow_pkg/tensorflow-1.13.0-cp36-cp36m-win_amd64.whl`

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