1. 25 Aug, 2016 2 commits
  2. 24 Aug, 2016 1 commit
  3. 19 Aug, 2016 1 commit
  4. 16 Aug, 2016 3 commits
  5. 08 Aug, 2016 4 commits
  6. 07 Aug, 2016 1 commit
  7. 05 Aug, 2016 1 commit
  8. 04 Aug, 2016 2 commits
  9. 02 Aug, 2016 1 commit
  10. 21 Jul, 2016 1 commit
  11. 20 Jul, 2016 3 commits
  12. 28 Jun, 2016 1 commit
    • David Mansfield's avatar
      Compatibility with tensorflow master (#204) · a4b7bb9a
      David Mansfield authored
      * TF defines the same external repositories but with different commit and BUILD
      
      * Fix a bunch of bazel namespace issues
      
      @tf changed to @org_tensorflow
      Tensorflow stopped using protobuf as submodule, now it's external, so use @protobuf
      
      * Sync to master of tensorflow submodule:
        - local version of is_cuda in syntaxnet.bzl,
        - using unique_ptr in file api.
      a4b7bb9a
  13. 27 Jun, 2016 1 commit
  14. 24 Jun, 2016 1 commit
  15. 23 Jun, 2016 2 commits
  16. 22 Jun, 2016 2 commits
  17. 21 Jun, 2016 3 commits
  18. 20 Jun, 2016 1 commit
  19. 17 Jun, 2016 2 commits
  20. 16 Jun, 2016 1 commit
  21. 15 Jun, 2016 2 commits
  22. 14 Jun, 2016 1 commit
    • Orion Reblitz-Richardson's avatar
      Update neural_gpu documentation. · b1ad92b8
      Orion Reblitz-Richardson authored
      * Add list of algorithmic tasks.
      * Detail what is stored in /tmp/neural_gpu/ (default location).
      * Detail that one should hit Ctrl-C to stop the training process.
      * Add sections around decoding and animation, but couldn't get those to work myself. Still worth having in the docs.
      b1ad92b8
  23. 02 Jun, 2016 3 commits
    • Olivia's avatar
      Removed extra parens (#152) · f8cc1ea5
      Olivia authored
      fixes b/28821889
      f8cc1ea5
    • Weilin Xu's avatar
      Fixed a typo. (#108) · f3d896bd
      Weilin Xu authored
      f3d896bd
    • Evan Lezar's avatar
      Import scipy.ndimage before tensorflow to fix jpeg load. (#165) · c716c1b8
      Evan Lezar authored
      When importing tensorflow before scipi.ndimage and running the
      example in a docker container, the following error is given:
      
      ```
       % python example.py
      Traceback (most recent call last):
        File "example.py", line 25, in <module>
          im = im / 255.
      TypeError: unsupported operand type(s) for /: 'instance' and 'float'
      ```
      This only happens for 'cat.jpg'. When converting the image to a '.png'
      file, the example runs as expected.
      
      When swapping the imports around so that scipy.ndimage is imported
      BEFORE tensorflow, both 'jpg' and 'png' files work.
      c716c1b8