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.

BUILD 355 B

12345678910111213141516171819
  1. load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
  2. cc_library(
  3. name = "cswrap_tfe_lib",
  4. srcs = [
  5. "cswrap_tfe_src.cc",
  6. ],
  7. hdrs = [
  8. "cswrap_tfe.h",
  9. ],
  10. visibility = [
  11. "//learning/deepmind/courier:__subpackages__",
  12. "//tensorflow:internal",
  13. ],
  14. deps = [
  15. "//tensorflow/c:c_api",
  16. ],
  17. )

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