Skip to content

Commit

Permalink
Prepare for 1.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepinyourhat committed Sep 16, 2019
1 parent 2692f65 commit 80845ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ If you use `jiant` in academic work, please cite it directly:

```
@misc{wang2019jiant,
author = {Alex Wang and Ian F. Tenney and Yada Pruksachatkun and Katherin Yu and Jan Hula and Patrick Xia and Raghu Pappagari and Shuning Jin and R. Thomas McCoy and Roma Patel and Yinghui Huang and Jason Phang and Edouard Grave and Najoung Kim and Phu Mon Htut and Thibault F'{e}vry and Berlin Chen and Nikita Nangia and Haokun Liu and Anhad Mohananey and Shikha Bordia and Nicolas Patry and Ellie Pavlick and Samuel R. Bowman},
title = {\texttt{jiant} 1.1: A software toolkit for research on general-purpose text understanding models},
author = {Alex Wang and Ian F. Tenney and Yada Pruksachatkun and Katherin Yu and Jan Hula and Patrick Xia and Raghu Pappagari and Shuning Jin and R. Thomas McCoy and Roma Patel and Yinghui Huang and Jason Phang and Edouard Grave and Haokun Liu and Najoung Kim and Phu Mon Htut and Thibault F'{e}vry and Berlin Chen and Nikita Nangia and Anhad Mohananey and Katharina Kann and Shikha Bordia and Nicolas Patry and David Benton and Ellie Pavlick and Samuel R. Bowman},
title = {\texttt{jiant} 1.2: A software toolkit for research on general-purpose text understanding models},
howpublished = {\url{http://jiant.info/}},
year = {2019}
}
Expand Down
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.1.0 --recursive https://github.com/nyu-mll/jiant.git jiant
git clone --branch v1.2.0 --recursive https://github.com/nyu-mll/jiant.git jiant
```
This will download the full repository and load the 1.1 release of `jiant`. If you already have `jiant` downloaded locally, you can switch to the 1.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.2 release with
```
git checkout tags/v1.1.0 -b 1.1_master
git checkout tags/v1.2.0 -b 1.2_master
```
This will create a branch called 1.1_master with HEAD at version 1.1. If you already cloned and just need to get the submodules, you can run:
This will create a branch called 1.2_master with HEAD at version 1.2. 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 80845ba

Please sign in to comment.