1. 25 12月, 2016 1 次提交
  2. 20 11月, 2016 1 次提交
  3. 18 11月, 2016 1 次提交
  4. 05 11月, 2016 1 次提交
  5. 04 11月, 2016 1 次提交
  6. 29 10月, 2016 1 次提交
  7. 23 10月, 2016 1 次提交
  8. 15 10月, 2016 1 次提交
  9. 11 10月, 2016 1 次提交
  10. 05 10月, 2016 1 次提交
  11. 30 9月, 2016 1 次提交
    • S
      Fix gcs_test issues · add1b323
      Shanqing Cai 提交于
      1) pip install issue related to recent numpy upgrade
      2) OutOfRange package issue caused by recent changes in TF Python code
      add1b323
  12. 24 9月, 2016 1 次提交
  13. 22 9月, 2016 1 次提交
  14. 19 9月, 2016 1 次提交
  15. 06 9月, 2016 1 次提交
  16. 02 9月, 2016 1 次提交
  17. 19 8月, 2016 1 次提交
  18. 01 8月, 2016 1 次提交
  19. 26 7月, 2016 1 次提交
  20. 12 7月, 2016 1 次提交
  21. 10 7月, 2016 1 次提交
  22. 01 7月, 2016 2 次提交
  23. 21 6月, 2016 1 次提交
  24. 04 6月, 2016 1 次提交
  25. 18 5月, 2016 1 次提交
  26. 06 5月, 2016 1 次提交
  27. 25 4月, 2016 1 次提交
  28. 19 4月, 2016 1 次提交
  29. 13 4月, 2016 1 次提交
  30. 18 3月, 2016 1 次提交
    • A
      Test for distributed (grpc) runtime in OSS TensorFlow · 9742a2ed
      A. Unique TensorFlower 提交于
      See README.md for detailed descriptions of the usage of the tools and tests in this changeset.
      
      Three modes of testing are supported:
      1) Launch a local Kubernetes (k8s) cluster and run the test suites on it
         (See local_test.sh)
      2) Launch a remote k8s cluster on Google Container Engine (GKE) and run the test suite on it
         (See remote_test.sh)
      3) Run the test suite on an existing k8s TensorFlow cluster
         (Also see remote_test.sh)
      
      Take the remote test for example, the following steps are performed:
      1) Builds a Docker image with gcloud and Kubernetes tools, and the latest TensorFlow pip installed (see Dockerfile)
      2) Launches a Docker container based on the said image (see test_distributed.sh)
      3) From within the image, authenticate the gcloud user (with credentials files mapped from outside the container), configer the k8s cluster and launch a new k8s container cluster for TensorFlow workers
      4) Generate a k8s (yaml) config file and user this yaml file to create a TensorFlow worker cluster consisting of a certian number of parameter servers (ps) and workers. The workers are exposed as external services with public IPs (see dist_test.sh)
      5) Run a simple softmax MNIST model on multiple workers, with the model weights and biases located on the ps nodes. Train the models in parallel and observe the final validation cross entropy (see dist_mnist_test.sh)
      Change: 117543657
      9742a2ed