BUILD 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. py_library(
  2. name = "data_utils",
  3. srcs = [
  4. "data_utils.py",
  5. ],
  6. deps = [
  7. "//file/colossus/public:cns",
  8. "//third_party/py/numpy",
  9. "//third_party/py/tensorflow",
  10. ],
  11. )
  12. py_library(
  13. name = "neural_gpu",
  14. srcs = [
  15. "neural_gpu.py",
  16. ],
  17. deps = [
  18. ":data_utils",
  19. "//third_party/py/numpy",
  20. "//third_party/py/tensorflow",
  21. ],
  22. )
  23. py_binary(
  24. name = "neural_gpu_trainer",
  25. srcs = [
  26. "neural_gpu_trainer.py",
  27. ],
  28. launcher = "//devtools/python/launcher",
  29. malloc = "//tcmalloc:tcmalloc_or_debug",
  30. deps = [
  31. ":neural_gpu",
  32. "//file/colossus/public:cns",
  33. "//net/proto2/python/public:use_fast_cpp_protos",
  34. "//third_party/py/Tkinter",
  35. "//third_party/py/matplotlib",
  36. "//third_party/py/numpy",
  37. "//third_party/py/tensorflow",
  38. ],
  39. )