-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrun.sh
24 lines (16 loc) · 1008 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# * laptop
# * SSEGCN
python ./train.py --model_name ssegcn --dataset laptop --seed 1000 --num_epoch 40 --vocab_dir ./dataset/Laptops_corenlp --cuda 0
# * SSEGCN with Bert
# python ./train.py --model_name ssegcn_bert --dataset laptop --seed 1000 --bert_lr 2e-5 --num_epoch 10 --hidden_dim 768 --max_length 100 --cuda 0
# * restaurant
# * SSEGCN
# python ./train.py --model_name ssegcn --dataset restaurant --seed 1000 --num_epoch 50 --vocab_dir ./dataset/Restaurants_corenlp --cuda 0
# * SSEGCN with Bert
# python ./train.py --model_name ssegcn_bert --dataset restaurant --seed 1000 --bert_lr 2e-5 --num_epoch 15 --hidden_dim 768 --max_length 100 --cuda 0
# * twitter
# * SSEGCN
# python ./train.py --model_name ssegcn --dataset twitter --seed 1000 --num_epoch 40 --vocab_dir ./dataset/Tweets_corenlp --cuda 0
# * SSEGCN with Bert
# python ./train.py --model_name ssegcn_bert --dataset twitter --seed 1000 --bert_lr 2e-5 --num_epoch 15 --hidden_dim 768 --max_length 100 --cuda 0