Skip to content

Commit 6220f5c

Browse files
committed
minor
1 parent ace5c4e commit 6220f5c

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

html/js/viz.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,7 @@ function load_event_1(config){
135135
me.attr('r', deactive_r);
136136
}
137137
})
138-
// .on('mousein', tip.show)
139-
.on('mousein', function(){
140-
console.log('mousein');
141-
})
138+
.on('mouseover', tip.show)
142139
.on('mouseout', tip.hide);
143140

144141
if(true){

scripts/copy_result_from_ukko.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ ds=$1
1010
rsync -v ukko140:code/lst/data/${ds}/model* data/${ds}
1111
rsync -v ukko140:code/lst/data/${ds}/dict* data/${ds}
1212
rsync -v ukko140:code/lst/data/${ds}/interactions* data/${ds}
13+
rsync -v ukko140:code/lst/data/${ds}/people* data/${ds}
1314
rsync -v ukko140:code/lst/tmp/${ds}/result* tmp/${ds}
1415
# scp ukko140:code/lst/data/${ds}/model* data/${ds}
1516
# scp ukko140:code/lst/data/${ds}/dict* data/${ds}

scripts/make_json_data_for_d3.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ for p in $(ls ${pickle_dir}/result-*.pkl); do
3838
python dump_events_to_json.py \
3939
--candidate_tree_path ${p} \
4040
--dirname "${output_dir}/event/original_graph" \
41-
--interactions_path "data/${dataset}/interactions.*" \
42-
--people_path "data/${dataset}/people.*" \
41+
--interactions_path data/${dataset}/interactions.* \
42+
--people_path data/${dataset}/people.* \
4343
--to_original_graph \
4444
-k 5 \
4545
${extra}
@@ -52,8 +52,8 @@ for p in $(ls ${pickle_dir}/result-*.pkl); do
5252
python dump_events_to_json.py \
5353
--candidate_tree_path ${p} \
5454
--dirname "${output_dir}/event/meta_graph" \
55-
--interactions_path "data/${dataset}/interactions.*" \
56-
--people_path "data/${dataset}/people.*" \
55+
--interactions_path data/${dataset}/interactions.* \
56+
--people_path data/${dataset}/people.* \
5757
-k 5 \
5858
${extra}
5959
else

0 commit comments

Comments
 (0)