Skip to content

Commit

Permalink
Update setup tutorial jiant version refs (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyeres committed Feb 26, 2020
1 parent 5d7a1c8 commit 3e5e3e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tutorials/setup_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ First off, let's make sure you've the full repository, including all the git sub
This project uses submodules to manage some dependencies on other research code, in particular for loading CoVe, GPT, and BERT. To make sure you get these repos when you download `jiant`, add `--recursive` to your `clone` command:

```
git clone --branch v1.2.1 --recursive https://github.com/nyu-mll/jiant.git jiant
git clone --branch v1.3.0 --recursive https://github.com/nyu-mll/jiant.git jiant
```
This will download the full repository and load the 1.2 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.2.1 release with
This will download the full repository and load the 1.2 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.3.0 release with
```
git checkout tags/v1.2.1 -b 1.2.1_master
git checkout tags/v1.3.0 -b 1.3.0_master
```
This will create a branch called 1.2.1_master with HEAD at version 1.2.1. If you already cloned and just need to get the submodules, you can run:
This will create a branch called 1.3.0_master with HEAD at version 1.3.0. If you already cloned and just need to get the submodules, you can run:

```
git submodule update --init --recursive
Expand Down

0 comments on commit 3e5e3e8

Please sign in to comment.