Skip to content

Commit 133c1e9

Browse files
authored
fix readme, bump version
1 parent 2290798 commit 133c1e9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pytorch [alpha-5]
1+
# pytorch [alpha-6]
22

33
- [About PyTorch?](#about-pytorch)
44
- [Installation](#installation)
@@ -148,9 +148,10 @@ After that, we will reevaluate progress, and if we are ready, we will hit beta-0
148148
* ~~alpha-2: sharing tensors across processes for hogwild training or data-loading processes. a rewritten optim package for this new nn.~~
149149
* ~~alpha-3: binary installs, contbuilds, etc.~~
150150
* ~~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.
153153
* 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.
154155

155156
The beta phases will be leaning more towards working with all of you, convering your use-cases, active development on non-core aspects.
156157

@@ -239,7 +240,7 @@ queue = multiprocessing.Queue()
239240
buffers = [torch.Tensor(2, 2) for i in range(4)]
240241
for b in buffers:
241242
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)]
243244
```
244245

245246
```python

0 commit comments

Comments
 (0)