You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@for f in ./corpus/*.sh; do basename $${f%.*}; done
combinations:
@ARRAY=(); for f in ./corpus/*.sh; do ARRAY+=($$(basename $${f%.*})); done; for a in $${ARRAY[*]}; do shift; for b in $${ARRAY[*]}; do if [[ $$a != $$b ]]; then printf "%s + %s\n" "$$a" "$$b"; fi; done; done
# Provide arguments like so:
# make model ARGS="corpus1 corpus2 [(scale1 scale2) stateSize overlapTotal overlapRatio tries sentences modelComplexity]"