Skip to content
Permalink
4e6b38c6e6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (14 sloc) 585 Bytes
:: Replicates configurations tested by Pang and Lee (2002) (Figure 3)
@echo off
echo (1) Unigrams (Frequency)
python review_svm.py --gram-length 1 --frequency
echo (2) Unigrams (Presence)
python review_svm.py --gram-length 1 --presence
echo (4) Bigrams
python review_svm.py --gram-length 2 --presence
echo (5) Unigrams + POS tags
python review_svm.py --gram-length 1 --presence --use-pos-tags
echo (6) Adjectives
python review_svm.py --gram-length 1 --presence --use-pos-tags --use-adj-only
echo (8) Unigrams + Position
python review_svm.py --gram-length 1 --presence --use-position