-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenvironment.sh
More file actions
executable file
·57 lines (37 loc) · 1.77 KB
/
environment.sh
File metadata and controls
executable file
·57 lines (37 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
export SEN2VEC_DIR=~/Documents/DUC2001/sen2vec
export REUTERS_PATH=$SEN2VEC_DIR/Data/reuters21578
export SICK_PATH=$SEN2VEC_DIR/Data/sick_data
export NEWSGROUP_PATH=$SEN2VEC_DIR/Data/newsgroup/
export IMDB_PATH=$SEN2VEC_DIR/Data/aclImdb
export SENTTREE_PATH=$SEN2VEC_DIR/Data/stanfordSentimentTreebank
export DUC_PATH=$SEN2VEC_DIR/Data/DUC_merged
export REUTERS_DBSTRING=reuter,postgres,postgres,localhost,5432
export NEWSGROUP_DBSTRING=news,postgres,postgres,localhost,5432
export IMDB_DBSTRING=imdb,postgres,postgres,localhost,5432
export SENTTREE_DBSTRING=senttree,postgres,postgres,localhost,5432
export SENTTREE2WAY_DBSTRING=senttree2way,postgres,postgres,localhost,5432
export SICK_DBSTRING=sick,postgres,postgres,localhost,5432
export DUC_DBSTRING=duc,postgres,postgres,localhost,5432
export DOC2VECEXECDIR=$SEN2VEC_DIR/sen2vec/word2vec/word2vec
export RETROFITONEEXE=$SEN2VEC_DIR/sen2vec/word2vec/retrofit_word2vec_one
export REGSEN2VECEXE=$SEN2VEC_DIR/sen2vec/word2vec/reg_sen2vec_net
export JOINTSUPEXE=$SEN2VEC_DIR/sen2vec/word2vec/joint_learner
export TRTESTFOLDER=$SEN2VEC_DIR/Data
export GINTERTHR=0.4
export GINTRATHR=0.4
export GTHRSUMTFIDF=0.1
export GTHRSUMLAT=0.1
export DUMPFACTOR=0.85
# TOPNSUMMARY should be set to 0.2 for classification tasks (20%) and to 1.0 for ranking tasks
export TOPNSUMMARY=1.0
export KNEIGHBOR=20
export ROUGE=$SEN2VEC_DIR/sen2vec/rouge/ROUGE-1.5.5.pl
export ROUGE_EVAL_HOME=$SEN2VEC_DIR/sen2vec/rouge/data
export SUMMARYFOLDER=$SEN2VEC_DIR/Data/Summary/
export MODELSUMMARYFOLDER=$SEN2VEC_DIR/Data/Summary/model
export SYSTEMSUMMARYFOLDER=$SEN2VEC_DIR/Data/Summary/system
export DICTDIR=$SEN2VEC_DIR/Data/lexicons
export DICTREGDICT=wordnet-synonyms.txt
# Theano Stuffs : device=gpu0,lib.cnmem=1'
export THEANO_FLAGS='floatX=float32'