You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
Bash
14 lines
351 B
Bash
12 years ago
|
echo "Enter text to be classified, hit return to run classification."
|
||
|
read text
|
||
|
|
||
|
if [ `echo "$text" | sed -r 's/ +/ /g' | bin/stupidfilter data/c_rbf` = "1.000000" ]
|
||
|
then
|
||
|
echo "Text is not likely to be stupid."
|
||
|
fi
|
||
|
|
||
|
if [ `echo "$text" | sed -r 's/ +/ /g' | bin/stupidfilter data/c_rbf` = "0.000000" ]
|
||
|
then
|
||
|
echo "Text is likely to be stupid."
|
||
|
fi
|
||
|
|