You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,11 @@ This repository consists of:
15
15
* `torchtext.data <#data>`_: Generic data loaders, abstractions, and iterators for text (including vocabulary and word vectors)
16
16
* `torchtext.datasets <#datasets>`_: Pre-built loaders for common NLP datasets
17
17
18
-
Note: we are currently re-designing the torchtext library to make it more compatible with pytorch (e.g. ``torch.utils.data``). Several datasets have been written with the new abstractions in `torchtext.experimental <https://github.com/pytorch/text/tree/master/torchtext/experimental>`_ folder. We also created an issue to discuss the new abstraction, and users are welcome to leave feedback `link <https://github.com/pytorch/text/issues/664>`_.
18
+
Note: we are currently re-designing the torchtext library to make it more compatible with pytorch (e.g. ``torch.utils.data``). Several datasets have been written with the new abstractions in `torchtext.experimental <https://github.com/pytorch/text/tree/master/torchtext/experimental>`_ folder. We also created an issue to discuss the new abstraction, and users are welcome to leave feedback `link <https://github.com/pytorch/text/issues/664>`_. These prototype building blocks and datasets in the experimental folder are available in the nightly release only. The nightly packages are accessible via Pip and Conda for Windows, Mac, and Linux. For example, Linux users can install the nightly wheels with the following command::
For more detail instructions, please refer to `Install PyTorch <https://pytorch.org/get-started/locally/>`_. It should be noted that the new building blocks are still under development, and the APIs have not been solidified.
20
23
21
24
Installation
22
25
============
@@ -28,15 +31,17 @@ We recommend Anaconda as Python package management system. Please refer to `pyto
28
31
:widths: 10, 10, 10
29
32
30
33
nightly build, master, 3.6+
31
-
1.5, 0.5, 3.5+
32
-
1.4, 0.4, "2.7, 3.5+"
34
+
1.7, 0.8, 3.6+
35
+
1.6, 0.7, 3.6+
36
+
1.5, 0.6, 3.5+
37
+
1.4, 0.5, "2.7, 3.5+"
33
38
0.4 and below, 0.2.3, "2.7, 3.5+"
34
39
35
-
Using conda;::
40
+
Using conda::
36
41
37
42
conda install -c pytorch torchtext
38
43
39
-
Using pip;::
44
+
Using pip::
40
45
41
46
pip install torchtext
42
47
@@ -64,7 +69,13 @@ To build torchtext from source, you need ``git``, ``CMake`` and C++11 compiler s
0 commit comments