|
1 | | -# pytorch [alpha-5] |
| 1 | +# pytorch [alpha-6] |
2 | 2 |
|
3 | 3 | - [About PyTorch?](#about-pytorch) |
4 | 4 | - [Installation](#installation) |
@@ -148,9 +148,10 @@ After that, we will reevaluate progress, and if we are ready, we will hit beta-0 |
148 | 148 | * ~~alpha-2: sharing tensors across processes for hogwild training or data-loading processes. a rewritten optim package for this new nn.~~ |
149 | 149 | * ~~alpha-3: binary installs, contbuilds, etc.~~ |
150 | 150 | * ~~alpha-4: multi-GPU support, cudnn integration, imagenet / resnet example~~ |
151 | | -* alpha-5: a ton of examples across vision, nlp, speech, RL -- this phase might make us rethink parts of the APIs, and hence want to do this in alpha than beta |
152 | | -* alpha-6: Putting a simple and efficient story around multi-machine training. Probably simplistic like torch-distlearn. Building the website, release scripts, more documentation, etc. |
| 151 | +* ~~alpha-5: a ton of examples across vision, nlp, speech, RL -- this phase might make us rethink parts of the APIs, and hence want to do this in alpha than beta~~ |
| 152 | +* alpha-6: Building the website, release scripts, more documentation, etc. |
153 | 153 | * beta-0: First public release |
| 154 | +* beta-1: Putting a simple and efficient story around multi-machine training. See: https://github.com/pytorch/pytorch/issues/241 and https://github.com/apaszke/pytorch-dist for current progress. |
154 | 155 |
|
155 | 156 | The beta phases will be leaning more towards working with all of you, convering your use-cases, active development on non-core aspects. |
156 | 157 |
|
@@ -239,7 +240,7 @@ queue = multiprocessing.Queue() |
239 | 240 | buffers = [torch.Tensor(2, 2) for i in range(4)] |
240 | 241 | for b in buffers: |
241 | 242 | queue.put(b) |
242 | | - processes = [multiprocessing.Process(target=fill, args=(queue,)).start() for i in range(10)] |
| 243 | +processes = [multiprocessing.Process(target=fill, args=(queue,)).start() for i in range(10)] |
243 | 244 | ``` |
244 | 245 |
|
245 | 246 | ```python |
|
0 commit comments