source: main/trunk/model-sites-dev/mars/RUN-APPLY-VALANCE-MODEL.sh@ 34788

Last change on this file since 34788 was 34788, checked in by davidb, 3 years ago

Code refactored, and then valence version of training and applying model developed

  • Property svn:executable set to *
File size: 354 bytes
Line 
1#!/bin/bash
2
3input_data_filename=${1:-collect/deam/etc/deam-essentia-features-arousal-valence.arff}
4output_data_filename=${2:-predicted-valance.csv}
5
6. ./_set_weka_classpath.bash
7
8java -cp "$cp_args" org.greenstone.mars.WekaApplyValanceModel \
9 "reptree-valance-serialized.model" \
10 "$input_data_filename" \
11 "$output_data_filename"
12
13
14
15
Note: See TracBrowser for help on using the repository browser.