Skip to content

Instantly share code, notes, and snippets.

@matpalm
Created February 18, 2015 04:18
Show Gist options
  • Save matpalm/588035bb4527d7b8b74c to your computer and use it in GitHub Desktop.
Save matpalm/588035bb4527d7b8b74c to your computer and use it in GitHub Desktop.

sorted by sum log(P)

$ cat test | ./mm_loglikelihood.py --model oms.mm.json | sort -k1 -nr -t"     "
sum_log(P)      mean_log(P)     B? sequence
-20.0139103713	-1.42956502652	F  A/DT white/JJ blaze/NN and/CC noseband/NN is/VBZ preferred/VBN over/IN a/DT solid-colored/JJ head/NN ./.
-21.8407084327	-3.12010120468	T  Sign/VB In/IN |/CD Sign/NN Up/IN
-30.9669696364	-1.93543560227	F  The/DT average/JJ household/NN size/NN was/VBD 2.69/CD and/CC the/DT average/JJ family/NN size/NN was/VBD 3.09/CD ./.
-36.3208027746	-2.59434305533	T  com/NN is/VBZ a/DT division/NN of/IN ThreadPit/NNP Copyright/NNP ©/CD 2005-2014/CD 6/CD Dollar/NN Shirts/NNS
-38.8882082333	-1.94441041167	F  The/DT airline/NN was/VBD established/VBN in/IN 1991/CD and/CC began/VBD operations/NNS in/IN 1992/CD as/IN Iran/NNP 's/POS first/JJ private/JJ airline/NN ./.
-59.0899825633	-4.22071304023	T  Home/NNP >/JJR Entertainment/NNP >/JJR Photos/NNS >/JJR Celebrities/NNPS Without/IN Makeup/NNP Join/VB the/DT Discussion/NN
-59.5663974354	-2.58984336676	T  About/IN Us/NNP |/CD Ordering/NNP Info/NNP |/NNP Contact/NN Us/NNP |/CD Become/VB an/DT Affiliate/NNP Privacy/NNP Policy/NNP |/NNP Terms/NNS of/IN Use/NN |/CD User/NN Login/NN

sorted by mean log(P)

cat test | ./mm_loglikelihood.py --model oms.mm.json | sort -k2 -nr -t"     "
sum_log(P)      mean_log(P)     B? sequence
-20.0139103713	-1.42956502652	F  A/DT white/JJ blaze/NN and/CC noseband/NN is/VBZ preferred/VBN over/IN a/DT solid-colored/JJ head/NN ./.
-30.9669696364	-1.93543560227	F  The/DT average/JJ household/NN size/NN was/VBD 2.69/CD and/CC the/DT average/JJ family/NN size/NN was/VBD 3.09/CD ./.
-38.8882082333	-1.94441041167	F  The/DT airline/NN was/VBD established/VBN in/IN 1991/CD and/CC began/VBD operations/NNS in/IN 1992/CD as/IN Iran/NNP 's/POS first/JJ private/JJ airline/NN ./.
-59.5663974354	-2.58984336676	T  About/IN Us/NNP |/CD Ordering/NNP Info/NNP |/NNP Contact/NN Us/NNP |/CD Become/VB an/DT Affiliate/NNP Privacy/NNP Policy/NNP |/NNP Terms/NNS of/IN Use/NN |/CD User/NN Login/NN
-36.3208027746	-2.59434305533	T  com/NN is/VBZ a/DT division/NN of/IN ThreadPit/NNP Copyright/NNP ©/CD 2005-2014/CD 6/CD Dollar/NN Shirts/NNS
-21.8407084327	-3.12010120468	T  Sign/VB In/IN |/CD Sign/NN Up/IN
-59.0899825633	-4.22071304023	T  Home/NNP >/JJR Entertainment/NNP >/JJR Photos/NNS >/JJR Celebrities/NNPS Without/IN Makeup/NNP Join/VB the/DT Discussion/NN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment