Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update refs in setup tutorial to v1.3.2 #1078

Merged
merged 1 commit into from
Apr 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update setup tutorial jiant version refs to 1.3.2
  • Loading branch information
pyeres committed Apr 24, 2020
commit 4f070c59b243d0ce75cb7a94daaa80db7005bd11
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.3.1 --recursive https://github.com/nyu-mll/jiant.git jiant
git clone --branch v1.3.2 --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.3.1 release with
This will download the full repository and load the 1.3.2 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.3.2 release with
```
git checkout tags/v1.3.1 -b 1.3.1_master
git checkout tags/v1.3.2 -b 1.3.2_master
```
This will create a branch called 1.3.1_master with HEAD at version 1.3.1. If you already cloned and just need to get the submodules, you can run:
This will create a branch called 1.3.2_master with HEAD at version 1.3.2. If you already cloned and just need to get the submodules, you can run:

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