sublee

↗ HN profile [ 46.0 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. https://github.com/kakaobrain/torchgpipe Kakao Brain announces torchgpipe, an implementation of GPipe in PyTorch as a handy library. GPipe is a scalable pipeline parallelism library published by Google Brain. It…

  2. When we use setuptools for packaging our Python library, why write like this? setup( name='mymodule', version='0.1', ) not this? import mymodule setup( name=mymodule.__name__, version=mymodule.__version__, ) Please…

  3. Cra-ezCounter - Back to the early 2000s (craezcounter.appspot.com)
  4. doctest is a testing library for Python. I usually use it. But I don't know the name of doctest's way exactly. Is doctest TDD or BDD? Or some other? How do you think of it?