From 588aa288643224a1919cec889ede37d8c0196d35 Mon Sep 17 00:00:00 2001 From: Phil Yeres Date: Fri, 24 Apr 2020 14:16:30 -0400 Subject: [PATCH] update setup tutorial jiant version refs to 1.3.2 (#1078) --- tutorials/setup_tutorial.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/setup_tutorial.md b/tutorials/setup_tutorial.md index 67db15dcf..0d920014c 100644 --- a/tutorials/setup_tutorial.md +++ b/tutorials/setup_tutorial.md @@ -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