-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_vocab.sh
18 lines (14 loc) · 1.22 KB
/
build_vocab.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# build vocab for different datasets
python ./prepare_vocab.py --data_dir dataset/Restaurants_corenlp --vocab_dir dataset/Restaurants_corenlp
python ./prepare_vocab.py --data_dir dataset/Laptops_corenlp --vocab_dir dataset/Laptops_corenlp
python ./prepare_vocab.py --data_dir dataset/Tweets_corenlp --vocab_dir dataset/Tweets_corenlp
python ./prepare_vocab.py --data_dir dataset/Restaurants_allennlp --vocab_dir dataset/Restaurants_allennlp
python ./prepare_vocab.py --data_dir dataset/Laptops_allennlp --vocab_dir dataset/Laptops_allennlp
python ./prepare_vocab.py --data_dir dataset/Tweets_allennlp --vocab_dir dataset/Tweets_allennlp
python ./prepare_vocab.py --data_dir dataset/Restaurants_stanza --vocab_dir dataset/Restaurants_stanza
python ./prepare_vocab.py --data_dir dataset/Laptops_stanza --vocab_dir dataset/Laptops_stanza
python ./prepare_vocab.py --data_dir dataset/Tweets_stanza --vocab_dir dataset/Tweets_stanza
python ./prepare_vocab.py --data_dir dataset/Restaurants_biaffine --vocab_dir dataset/Restaurants_biaffine
python ./prepare_vocab.py --data_dir dataset/Laptops_biaffine --vocab_dir dataset/Laptops_biaffine
python ./prepare_vocab.py --data_dir dataset/Tweets_biaffine --vocab_dir dataset/Tweets_biaffine