1. 05 May, 2018 3 commits
  2. 04 May, 2018 4 commits
    • Tal Sh's avatar
      Fix RepeatedData + PrefetchDataZMQ (#747) · 7388f508
      Tal Sh authored
      Doing:
      
      ```
      ds = RepeatedData(ds, -1)
      ds = PrefetchDataZMQ(ds, num_workers)
      ds.reset_state()
      ```
      
      Would blow up, since `RepeatedData` raises a ValueError, and `PrefetchDataZMQ` only checks for `NotImplementedError`.
      
      Not the cleanest fix but 🤷‍♂️
      7388f508
    • Yuxin Wu's avatar
      TENSORPACK_SERIALIZE (#746) · e6bd7188
      Yuxin Wu authored
      e6bd7188
    • Tal Sh's avatar
      Removed excess copying when fetching data from ZMQ (#746) · 3dd7171d
      Tal Sh authored
      * Removed excess copying when fetching data from ZMQ
      
      The `.bytes` explicitly triggers a copy in order to create a Python `bytes` object. This isn't necessary for pyarrow deserialization.
      
      * Remove all the `.bytes`!
      
      * Fixed crash when deleting a MultiThreadPrefetchData instance when `reset_state()` was not called
      3dd7171d
    • Yuxin Wu's avatar
      update DoReFa readme · a156f2bf
      Yuxin Wu authored
      a156f2bf
  3. 03 May, 2018 2 commits
  4. 02 May, 2018 1 commit
  5. 01 May, 2018 1 commit
  6. 30 Apr, 2018 1 commit
  7. 26 Apr, 2018 2 commits
  8. 25 Apr, 2018 1 commit
  9. 23 Apr, 2018 1 commit
  10. 21 Apr, 2018 2 commits
  11. 20 Apr, 2018 2 commits
  12. 19 Apr, 2018 1 commit
  13. 17 Apr, 2018 3 commits
  14. 16 Apr, 2018 1 commit
  15. 12 Apr, 2018 1 commit
  16. 11 Apr, 2018 1 commit
  17. 07 Apr, 2018 1 commit
  18. 06 Apr, 2018 1 commit
  19. 05 Apr, 2018 2 commits
  20. 04 Apr, 2018 2 commits
  21. 03 Apr, 2018 1 commit
  22. 02 Apr, 2018 1 commit
  23. 31 Mar, 2018 2 commits
  24. 30 Mar, 2018 1 commit
  25. 29 Mar, 2018 2 commits
    • vfdev's avatar
      Update raw.py (#716) · 881338a0
      vfdev authored
      Remove `self`, otherwise `AttributeError: 'DataFromIterable' object has no attribute 'iterable'`
      881338a0
    • vfdev's avatar
      Fix small typos (#717) · 0b615550
      vfdev authored
      * Fix typos
      
      * Fix typo
      
      * Fix typo
      0b615550