Skip to content

Commit 2d6feb2

Browse files
committed
Small fix to installation
1 parent b604f19 commit 2d6feb2

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ ENV/
101101
# PyCharm files
102102
.idea/
103103

104+
# VIM stuff
105+
*.swp
106+
104107
# data downloaded automatically using pull_data.sh
105108
data/
106109

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Here is a list of performance results on six datasets using pretrained models in
8080
git clone https://github.com/pcyin/tranX
8181
cd tranX
8282

83-
./pull_data.sh # get datasets and pre-trained models
83+
bash ./pull_data.sh # get datasets and pre-trained models
8484

8585
conda env create -f config/env/tranx.yml # create conda Python environment.
8686

pull_data.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
echo "download dataset"
4-
data_file="tranx.0.2.0.zip"
4+
data_file="tranx.0.2.1.zip"
55
wget -c http://www.cs.cmu.edu/~pengchey/${data_file}
66
unzip ${data_file}
77
rm ${data_file}

0 commit comments

Comments
 (0)