1. 14 Jun, 2016 1 commit
    • Vladimir's avatar
      Update README · e1219803
      Vladimir authored
      Changed the example to the VGG-16 net
      e1219803
  2. 02 Jun, 2016 6 commits
  3. 31 May, 2016 1 commit
  4. 25 May, 2016 1 commit
  5. 19 May, 2016 1 commit
  6. 18 May, 2016 1 commit
  7. 17 May, 2016 1 commit
  8. 16 May, 2016 3 commits
  9. 15 May, 2016 1 commit
  10. 14 May, 2016 2 commits
  11. 12 May, 2016 7 commits
  12. 16 Apr, 2016 1 commit
  13. 13 Apr, 2016 2 commits
  14. 12 Apr, 2016 3 commits
  15. 11 Apr, 2016 2 commits
  16. 08 Apr, 2016 4 commits
  17. 07 Apr, 2016 1 commit
  18. 06 Apr, 2016 1 commit
  19. 05 Apr, 2016 1 commit
    • Orion Reblitz-Richardson's avatar
      Fix issue in neural_gpu.py where TypeError is raised. · ba15af6e
      Orion Reblitz-Richardson authored
      * `python neural_gpu_trainer.py --task=rev` raises the following TypeError:
      
        File “..models/neural_gpu/neural_gpu.py", line 26, in conv_linear
          assert args
        File “..tensorflow/python/framework/ops.py", line 475, in __nonzero__
          raise TypeError("Using a `tf.Tensor` as a Python `bool` is not allowed. "
      TypeError: Using a `tf.Tensor` as a Python `bool` is not allowed. Use `if t is not None:` instead of `if t:` to test if a tensor is defined, and use the logical TensorFlow ops to test the value of a tensor.
      ba15af6e