From 1648eaa7d22354fca7353cf778f03590c538be4e Mon Sep 17 00:00:00 2001 From: Aileen Reichelt <reichelt@cl.uni-heidelberg.de> Date: Tue, 23 Jan 2024 17:41:54 +0100 Subject: [PATCH] Restore word pair similarity files --- WordSim353/compare.py | 83 ++++ WordSim353/data/distribution1.png | Bin 0 -> 19144 bytes WordSim353/data/distribution2.png | Bin 0 -> 27975 bytes WordSim353/data/distribution3.png | Bin 0 -> 31443 bytes .../data/german_gurevych_zesch/gur_350.tsv | 351 +++++++++++++++++ .../german_gurevych_zesch/gur_350_reduced.tsv | 284 ++++++++++++++ .../wordsim353-english-rel.txt | 253 ++++++++++++ .../wordsim353-english-sim.txt | 202 ++++++++++ .../wordsim353-english.txt | 351 +++++++++++++++++ .../wordsim353-german-rel.txt | 253 ++++++++++++ .../wordsim353-german-sim.txt | 202 ++++++++++ .../wordsim353-german.txt | 351 +++++++++++++++++ .../data/original_finkelstein/combined.csv | 354 +++++++++++++++++ .../data/original_finkelstein/combined.tab | 354 +++++++++++++++++ .../original_finkelstein/instructions.txt | 41 ++ WordSim353/data/original_finkelstein/set1.csv | 154 ++++++++ WordSim353/data/original_finkelstein/set1.tab | 154 ++++++++ WordSim353/data/original_finkelstein/set2.csv | 201 ++++++++++ WordSim353/data/original_finkelstein/set2.tab | 201 ++++++++++ WordSim353/data/ws353simrel_agirre/test.tsv | 352 +++++++++++++++++ .../ws353simrel_agirre/wordsim353_agreed.txt | 363 ++++++++++++++++++ .../wordsim353_annotator1.txt | 363 ++++++++++++++++++ .../wordsim353_annotator2.txt | 362 +++++++++++++++++ .../wordsim_relatedness_goldstandard.txt | 252 ++++++++++++ .../wordsim_similarity_goldstandard.txt | 203 ++++++++++ .../wordsim_similarity_goldstandard_353.txt | 204 ++++++++++ WordSim353/evaluate.py | 173 +++++++++ WordSim353/run_evaluate.sh | 15 + WordSim353/run_evaluate_output.txt | 24 ++ 29 files changed, 6100 insertions(+) create mode 100644 WordSim353/compare.py create mode 100644 WordSim353/data/distribution1.png create mode 100644 WordSim353/data/distribution2.png create mode 100644 WordSim353/data/distribution3.png create mode 100644 WordSim353/data/german_gurevych_zesch/gur_350.tsv create mode 100644 WordSim353/data/german_gurevych_zesch/gur_350_reduced.tsv create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-english-rel.txt create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-english-sim.txt create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-english.txt create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-german-rel.txt create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-german-sim.txt create mode 100644 WordSim353/data/multilingual_leviant_reichart/wordsim353-german.txt create mode 100644 WordSim353/data/original_finkelstein/combined.csv create mode 100644 WordSim353/data/original_finkelstein/combined.tab create mode 100644 WordSim353/data/original_finkelstein/instructions.txt create mode 100644 WordSim353/data/original_finkelstein/set1.csv create mode 100644 WordSim353/data/original_finkelstein/set1.tab create mode 100644 WordSim353/data/original_finkelstein/set2.csv create mode 100644 WordSim353/data/original_finkelstein/set2.tab create mode 100644 WordSim353/data/ws353simrel_agirre/test.tsv create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim353_agreed.txt create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim353_annotator1.txt create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim353_annotator2.txt create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard.txt create mode 100644 WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard_353.txt create mode 100644 WordSim353/evaluate.py create mode 100644 WordSim353/run_evaluate.sh create mode 100644 WordSim353/run_evaluate_output.txt diff --git a/WordSim353/compare.py b/WordSim353/compare.py new file mode 100644 index 0000000..92ad6b6 --- /dev/null +++ b/WordSim353/compare.py @@ -0,0 +1,83 @@ +"""Compare similarity scores which one set of GloVe embeddings generates +versus another set of GloVe embeddings to determine whether the two sets +of embeddings are more or less the same.""" + +import pandas as pd +from gensim.models import KeyedVectors +from scipy.stats import spearmanr +from scipy.spatial.distance import cosine + +stanford_path = "/workspace/students/reichelt/ba_data/embeddings/glove/glove.6B.300d_w2vformat.txt" +dd_glove_path = "/workspace/students/reichelt/ba_data/embeddings/glove/dd-glove/english_vectors_no_debiasing.txt" + +stanford_model = KeyedVectors.load_word2vec_format(stanford_path, binary=False) +stanford_model.init_sims(replace=True) +dd_glove_model = KeyedVectors.load_word2vec_format(dd_glove_path, binary=False) +stanford_model.init_sims(replace=True) + +ws353_data = pd.read_csv("/home/students/reichelt/ba/bias-mitigation-ba/WordSim353/data/original_finkelstein/combined.csv") + +def calculate_embedding_similarity(row, embedding): + if embedding=="stanford": + model = stanford_model + elif embedding=="dd": + model = dd_glove_model + else: + raise ValueError + + word_1 = row["Word 1"].lower() + word_2 = row["Word 2"].lower() + + if word_1 in model: + embd_1 = model[word_1] + else: + print(f"{word_1} not in vocab. returning similarity 0.") + return 0.0 + if word_2 in model: + embd_2 = model[word_2] + else: + print(f"{word_2} not in vocab. returning similarity 0.") + return 0.0 + + return 1 - cosine(embd_1, embd_2) + +def calculate_stanford(row): + word_1 = row["Word 1"].lower() + word_2 = row["Word 2"].lower() + if word_1 in stanford_model: + embd_1 = stanford_model[word_1] + else: + print(f"{word_1} not in vocab. returning similarity 0.") + return 0.0 + if word_2 in stanford_model: + embd_2 = stanford_model[word_2] + else: + print(f"{word_2} not in vocab. returning similarity 0.") + return 0.0 + return 1 - cosine(embd_1, embd_2) + +def calculate_dd_glove(row): + word_1 = row["Word 1"].lower() + word_2 = row["Word 2"].lower() + if word_1 in dd_glove_model: + embd_1 = dd_glove_model[word_1] + else: + print(f"{word_1} not in vocab. returning similarity 0.") + return 0.0 + if word_2 in dd_glove_model: + embd_2 = dd_glove_model[word_2] + else: + print(f"{word_2} not in vocab. returning similarity 0.") + return 0.0 + return 1 - cosine(embd_1, embd_2) + +ws353_data["Stanford Score"] = ws353_data.apply(calculate_stanford, axis=1) +ws353_data["DD-GloVe Score"] = ws353_data.apply(calculate_dd_glove, axis=1) + +rho, p = spearmanr( + ws353_data["Stanford Score"], ws353_data["DD-GloVe Score"], + nan_policy="raise" + ) + +print("rho: " + str(rho)) +print("p: " + str(p)) diff --git a/WordSim353/data/distribution1.png b/WordSim353/data/distribution1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8f6fd099fe45870dca3324afd6d02e5569d20b GIT binary patch literal 19144 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 Kxag7L%l`r*d^QmP literal 0 HcmV?d00001 diff --git a/WordSim353/data/distribution2.png b/WordSim353/data/distribution2.png new file mode 100644 index 0000000000000000000000000000000000000000..115d7f72dddda532459728ee051123c87017dd0b GIT binary patch literal 27975 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	jqr&B{BPP*p7r08yf^^(i5<1p;Y3}VF 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 literal 0 HcmV?d00001 diff --git a/WordSim353/data/distribution3.png b/WordSim353/data/distribution3.png new file mode 100644 index 0000000000000000000000000000000000000000..d886b6a9966d40937b6e4267c0cfa58e017bf240 GIT binary patch literal 31443 zcmeFYbx>SS6g4=wTX2E}0)*fY+zA8-PH-n!2=49{NP=syBtQu6?(Po3-C=O|?fHFM z-%4%mf4fy%wNz0d^JeDt>+XB+x#ye?S5}n9LMKCqKp<GMGLotg2)sW80=I&S3|`?L zTi5{q@H<OsIe)M-cXl&&G=nG@JKI~^Ia^zPq;@rPbh5Ow<znS!eZx%s$=TW7Nq~*b z=6}9{)y~m^jVOq37<>tuy^OXK1cGA>`-S@}nrjJxc#6qNimSP&9W1)JtC=lzpBxQl zUm5rZlgaE*z|%+}mN7M4Mw;n6BRT6k9Mu0V)-Nk8@ZT@cA}U))M}O5cjjKZ)aK6OQ zH|X(1^8Fngz6@vF;6q(;ozZX_|Cu0W+`?H}ZZc*EJ1!phsWEnSg`)vK<Mjj(DM?Am zg>Udbzkr`q6$k;i?!bla54&vp4o(?d?Hqaqi2zq?Ns+{0ALq@2yaHF(%>Vxn|GzO| z>#I=sInIVfMRRldfPjExd3uW^S}_0LjYyEq%*>p3M&T-Eh3DG|AWGukEe;M2!>n(? zvMEZudxxAZ;Ns{?s`v}yjt-B20N3O9^XE@$2F?FIucD*#UQbW&;mE-)8(jCThdw7D z$cC-$cz3PS70XrQF$-*+yZ`Uk`OhM9E31CJ5oe08Q>uuM0Ay-vN<LF0{rK1(9v(hf zz~wbRKfhwJ4j5AQX4O2T*0=+?yu5tRZrS?`3*vXbP6e0D??j*Jb4g0&d;Nk*qmY`5 zEAA^>^GpieSFr6W(c_FsLMy(0!s0R?Tsa#NwODTUiBC*?MoQY(aMV0N^>~Z|xrENX zRaJdv^{>!)qc`TefVrh5V_REWe0=;TO0a2TcqCd{<{dCr*rp~YkB0@1>^rb{!H8!n zE%B?Ws^ru7%6v0BJ0;iF*R?Cmha93zs&p7xSZwU^!G5>2TA+cj8Z;)at$i$RI23@C zS5%ywp3=O0nce0)Ha2EzVL^4p=d?BWf{(BE@sEo?2&rrq$FGp<tyDWsvwi{r=N<d^ zJt@LoJalw)7d79$eKXI81y=S&<z1CO4wcB@c#fQQ<tLSg>f~gS&!0cPVr8`*MNf{4 zdn+$L=n%DeaPYmR#!W7f2`tC>+MEx@N~6cwmxze9G^gRbWggRBTp?j$?P_c7hw8~m zweg7wSw%(HcPZfAG(~^(Yanw6u3JN?Jyp{NU&DGva>>Za2P-WnlDVyjjE#*Ek&qnj z4r=1k(iV2`T8mx?3#Z@Tds`%py#&wR+0!G~fC>KK4{)V`B(dth_w*FtU9j)4qx3qg z+h$K4l1~>PEST!w=!^5%OwdeI-Ym<>&5etXmoYO-sF1UKCMs&Es(Sef5oC~B_L>xw zQo70wA&FF8JM-S?7mZFwbT7N4dG^b6-@o^y)D(V%OXacoc)Zd!%qlG@xsm(^$4Jl) z&Kf6njh1wwBCBEmB(NCQ>_r@SFebd1(Et0b`Tysy+7z&CQIx{{>YDme?(Tfe&CTcg z(^21_^ZpaHB|*j!I);>$m0jQ7ayqO@ULMSEcSgVpf{sB0mcNvg)Hh0DG9@LY=G#3c z*Q2E&t`VWPpFVwh5K$7oAYg00rYUK<B-{U2)Umvr*%!y~L0|u%v;V)(Cx%sEd}34* zxp@il(O@cXiLdT-vHt!OxaWxIlhD<o8x^shJsiZY<$(u;5HpCb0oI1XDJvqdtd>{@ z)kwz^N}^^vqrdJ?qWoUIejOnmgnZKd+-_1dBQf!vt1AyagJR(_5!lIJ@MyI_%yL9o z{vTp?&ITgneoS4`eES*=4bA)EVtT=IzvzCG&Cj?k5D5Z;76F%nVsXU--2Ni!VJ?l| z2^AZ=xTUMBs|qR$tA>^SuFoL{u7W`*I9n$@R2HK@#TUHKh8CPB6dEt*tQdR-XDci| zsH&>^4fOVY>i!=SCk-YJ%;@>yVnbVXcJ@mUjBsDV!{MkI7;@W0KqdtD`cYHED=sdM zWeW>X8wK!*Ea@nEZtkkK>L#zN@j54qRu1Zy^z@--1Bp|j20A+Z^)CA|ii);VI{!`X zhXx8HA*U_*ci+jn)}us+>5}x?Z!h+5rduAnS{^UhAoBG1uv}TzLrMGMML@BBgX7b~ z)x@v2D6Eag65B*<;I`v|V1mebtVyW+?l~$fMz&(4DSuf_7YjYzpXq@}zPMZPxmr|H zQ?oxC;{BkfH)xrg-W^LPcYJc<@NpA1aF&8aWHEoI5#c28dsQ2iDo;=8v4IDEV>Ali zgH6;~H)lijA7bF=`F{{OoY=d<IezrGxiLkm{+^bRlz9Yw21~AZ1Q2~S4Gkj5S0a{= z3eVB}war|6GDZKfg0UCN!i`E15)>v)jLX@N{wb%<{d8_5#=XvANk5>_7(vbbr=i z2I}aa$FD#pd?f;hG|VavzLo5kjh-$HBgL5ie+32AszDYSJ-7s2p?_PR`WQ0pS3`&$ zkD9JjKYW<THW5A_eVZ)*2f3!Rv-7s6pr9ZHl<?KnRYXKYc9%UhM@PpW2YTSaCG`^I zkXm(Z>q5X5g||Om5oc|Ha^BzHUmthi)ZHC6q<S}s_}oS(B&hq{t%gzUQKkN07WLZM zVb~t-RQKR(@Hd=maAQM2!A4x^z!BXzpHSLfbXzu?%2(HOoi&5)L<ND2urL%34vv;t z169@bRJ-Q?N`5dJJ|vmfj#5@uwotzzF@{z;V=oUDvbD@f=>DO`Mm6(rTJ_G1+ZkT0 z5Ria2wzqk2-0v<AvfhSaUteEGr=<;oc>fX=WijzbVe;QUko`Jueem(|!@)~KKe&6a z{51+dS<~@rsjRH*;|~8)nSFkK9(U`pD-Ra`f31o&YpQVeAVmpX&X@oQ5kttNalBVh z0v`=Bl(VyQTqO6$PSmZDOr;Worr!SkH83sagUKAwg}OK>)Vi^;5fu&1@;Gg0=Mz8_ zQC@@mPFu%dHhFIvK?Z&c3azYcIM~7b4e|6RXJ>SDW>FG9WtbfEAlLV2BTk^&mb;&P ze0;oWnaGmHfr#Ah(1MIGm2IMs!kP1U^l*1&(fI|>`EVfxN8}n}Xt*4gZwGMF;1BMC zM_+)Cz{D`PFyqB+C1z$SnVAtDEqI~Hp2Q5Z=BlWUpVjW2;Pj4+XhH}qrC9MHHayQk zW-QdJiya*uMUHwn%Y5qmSe7<^@>W7(XSRaj?&@fJkZUCS&!5n>wKe1-e~{{Wpj_AZ zc6N4+O-)L9*myCCi3C)AD;X5&`k?>|B#|OnmuV%xv3v%;xW!|zrw2tzY2<@|uZIUe z3N|@44^QHYx1lS$yM5(m1AA0T3JP=pnrv)reDI_IYk;S@&B@{q@wvO)Txkn(KA5|R zk8+vTcXL?s*d7BZl#`3g<G2l_Op961_hu6j1%=CI?v44-4=F7z5|DfseD4lkGB8*n zmclZ<7b_uz$_vVISijFo>2t0Uib)#S(&87?6BHOo=2J*39ch2Fne;(fS<KY*Wp27F z8OW4$oa19`TXowR9o9TtAXEx9nBo|ewh}ZAEdQOs2IwFKzI8<8&Kfc-`s6K7|KY*4 zgPlD^e#W}`9hKE;dkBN~LQhXvozpg_+u=eSlLm;3?C-GU1yR7?fC#=K#&skIer2Z2 zBwarcj8mpz`y5j1bLV<{dGK}C+8pd?hJ_lxr^h0-1lZ-f&2tE!{fZdaPT>&|A6Hso z-2!IE^^mW^0RpUNqv_c?ha@K^YKU_3vak&GO@U8+sq|CC@lO|Y6WLmZg=V%HpD=`S z02DA;C8gXyfBv*x0?@rIOBfD&FBNzu97>^HDPsN3ND4u+bEJDqMX?JwSWe`3VXYuy zZ>4Zs5C_G+Z)m7%WF$(z!L`hB^L;2bMgQsMK)QYgY@iJ*sx1Bhtgp`7wb0Sfz*o$E zo3-AmoKQ3Y{px=;dLWTym{kQfoFS(?BC*t=cSc6k5O5Pyb94B}wikJMdBe;Ku<MKV zc|@(vK6m9d^E~yg2mJsKxbNlV9-p4B89v<-FV?#_xq85!{U8uzFp#ODA|lWsuu?TF ze5Kd@jr1+RMMo`9&2a_)p?xa7*O18Pypi?w0uayhowf{NuUE{>FW<bW^nD52EML;d zl6DZ1lahMk89$(+qEf$l^#x?0a=#~ENPBxb!6O)y<c}CR#MYLF13T-*`UGi8kKo)) z-yfiVu&v((?HhPxnsL^;PP!Gl=9|!)vu!SqQ&R|RII*#@r8-6KUS5KA0<iVJ?4r|w zaB*>wvKxs#JOl?Lf>`S7?|1yD{@)YD$svkCzIL6a-ifjxF~D9L>Y-zWdmbu2k|F#Y z^YRrN8w|E24~be#wzo@I#KYb*UR)~)N#nK4sE~uv0S?bu@gM-m=~yIDgR5&idVg^K zV*@I&lRm-L)lv?Cn7)w_H&;@HXLxwx-rkJ>hZFz$uTw<a-Q9gjN2jW-y$MzQ(K#}b z6dx~)9svIzW$;GU*H;8og#Q)h3pAv?la(D=&+ieX25kYHG6V(-V&Y=|XIki$b?}6w zaa(C*UHM$jTIiO7`#D&K!X<<#yW{p({K_XOG&3qe=s+f7J3dCv#66DkZ`DE#M^Q4g z&}3b6OrwO<SkI2HJc4c~ub?1Hv%~-bU2Gu!+SMNY;%%A=*n50$^|4HCg1%MRJL40O z`~QAx#A0(>7APR$O!Z|KB|Y@*J?b%*&1J0A+_PMi)}!XT;>RNp!_1)bX4We8A64!N ztN8o(%YI2q28T&EUx6f;A22}edE=4o=;~*Yw#ca$Gk3_Y{wtA@xZ4yvpKiEP+B6WV z)Rpz&2|bj5?4o|lk*28edAd7+(0`$T2#*9BScpT#uDjl=(Hyq!!W}1Ncx;h^r2aG& zCh9*rs!R#;61~EY&UCk>-OfF*;k8MTAGzy<g!@uO28#Xrp`lTCA#WE@zdXl|3CEoy zln~^7j6GCJ`i5~Seu>>XhrVm|%cy1jNL$yq3m^9%*6jlxvcWE2^OxuLc@QnY0T>u8 z*;Q|EZmMW#Yz0Sv8_Z6rNkq~{U*y03tyx|}d+%{A5yka$+w_Z4=rLvPKTZqI0KeLG zBGJ?B1GCvuKgMidq`M^kTY_TuXBt9CXcq0qy5uf@)s^QsKs6@TcgCAG^b;NtI>YP; z!$C0u0eOE>;<vf>mCe=Bg@(p)924Pvq}Y~u@A5uLCESdBMq@)&;Mm00sLi;-%I5NE z6=HYm&jNB@EB<U>G~Fj0Y*sft`lTz;FM9~NL&43&L9^qh+~Jj+;AXIX#BI@qSX0jd z3H0?4cXxMokoF&MM*IX|0cFYA;s5&$UnAN3sQX4?cA}3c<ykM2t%#n!DqLkQ39KGX zHzNFeqKnjRgPS>~w>E&(H5iS3KYo~Ce>9L0Fk}e?u_F(uoVB)IsEvV97x$nJZnOp< zK%9@3DE#~w?v-)DhPEJ4E+xh;agd*dH!2r%Hr!$F9YaT%8Hf}p>or6>!nP2`HhDsS z{)kmz7}zL$+{Qg>hMD&8Mv_jT;eCwxDkt3N$1--y@t2^t*qN(h0+rm&RTj(?X9P}1 zz>zPuues6=`zQy}SGS)Z<g5smmH8e@*rD`VXXUi0l(&=y&#`EqzVUA`TWG#=?AN1* zz@Hz?CxJF*yvj<`A_)Y!g1R;YrN!x6Ia1F#Geww0?yr^I?S(nTP&-ul+L19$`#x)F z!?r25@%e3iR(a<<!%P~5E!C%>|5J@TO_gf_wNx=*UQ#l$pm>hM&2WpT6(S!w(3mbQ zm}_Y0gmD0$)Pj;Hw^Gn>@>*oDC+RlEuo2mMTQIO#=J~oR+%dFb1bGF(nV$2n!_@$} zai)~cS`WWg0C~T6V1$8bbm5fEl;k>|g65T-Fp(}dWa`l&{vCGP79l25PHVX4A$XVF zjX<hgNyX23t@7ne*~w<N@V|37sat}`U+!meRkDk~KEEDN2k<@H5)e-it;$b$Ryur; z(A!piVc~Err$$BJoOHI!e=!=3R5Qyv>!t~_6n>9d4FhNAbQM=adcIFBH@CMkjrr)t z1M{Ps&OO;vWQ@!<!JwR!ne<fmI%K-9p_z|l41vnm25Kdan2QUy+mZ(Z1~F^r=PFK+ z+zmW734dp0>1HDX7^I=6hbh+H8gsrsm1Abm$-blN=1*D0s8wpxF$fZOcE}aAd3?y9 z>YxJ|VZ_vyl9Hw(E#KaE?>Fi&OKpPg)ns(B%~GP>i&@d+Qdd;raLGkmm%Psuz;1!; zOyuGKdIkY-UkomdSkHNmZ}&@{%+*c?Q@CzG#KF)y8aDP;^}Ovm_^&y@+PU7?G&I8- z__#94?rIfO(+$P(lt=?;`9p9&XBrSJf90wikPh}m9$cWk`qT`sn=%B&YGMtB9z^zK zon5sjK8Y=h`j7NI3_r7EDH@f{KH;%lkhwZs^Z@h_sGHfPrO_6dK8XNMRCt_i(NmQ) zHl{I^G{*8Sxo5TAwgX12@n$Pk=nh&TpUfTr5FfkUl8{D;!O&clRq9#1q~x4P2X(zS zFGBf~oU#HoPaFe^L{IcH51y$ETS{knSPn%fhA8>{?RAoWsUN!v?Uz*S1)vE$FhA%Z z_?>rfVGZEeZ>j8@90xEcPLu9$^i+1Y=evMC<A+gyZI=qEJSw`n^G04DKhm6>oD^zT zY}NKu=oA5(k*5}be~XOj_s`CfMvFcX5@kg`JJPD|lBeUPR(V+TWvr#eY$k&L{j2&} zb<_4IQUV7RRu?q)_3rPDfUj_Ozt>9yEsWc;4=?CFY{tuoSoL~Ad73RX1{~VJ@NoCQ zz}M*LXyo~<tgOD_VUa_Q?ZK1|&<`zS3xJ2uU)jq#e|3$`=0)fl7t+zz(TlxPu;L~p zBF=vNe&#GB%g|^qNm+N3gq&vWqh3A|J3u3#Q(3ki>FuRvFFg^K=j7z9U5^yJZh5*B z_4fAuQPlju(H6@1Enh0%hNjo9VZGe+2~TQ@ct4_CEo~_2Y9t!cvTSk^xJ3L&ev9q9 zolHB%o~D!7TT-Wnv67Qy&<_Yi_uJiEQtr<LkOGaOwGzJvrX)jOkF2N)%L#f%Cnr)N zcl!sP)S>SF1SSuFo^QZT1gPy-ZEdYMlaZn#HU~!!Rmax<;5H|e<N@|Q&SzrywW1sN znH)jb@gAR_AoklLRJDawFSQSGu{$UXC%ef1d@8c9+$${)!ou2-BQmBW`tXK6F5IfP zE))jX01sMs@lV%dEu4YOCyi^EFNi|W_05bcpnu|$lY5sRFL^<Ga(sSnI$LfAqb~jb zCt+&ajQ<SJ@@-&#)Of{;uF%2MWQq_!2~Q||%i%C<!9j!)GLBsj>gwQ-vPDRzQ|pE* z@p7j^og_qFPA&_y1MVIkC+!$)>=wi1*yMZ=F%SYLXI67$u>d)M^jp)$<LBqs-qEpN zqm;_?9k9%JL`3hDm2qp9eFgja`o59#mwPC_m&`6=#}tUSp=~y$rN`_S?wEbffmaZg zxGWU&uBi57L>GfO=8IWTqy9xHb#=Nfj@&9wRO=5+#WDr<;gFdoFE;_V!@=v5^%Qnv z`1PKsT*DS$mfIhIpCLD|NXh$<%ae?%BiWg*1?6^T(-U`}dI52K@QfuA&`I)ES~1no z+a<K!iWQ-}PRxlZcN5Lb`8W2X34VSdf@yqBZw>$Ppk}$;`^GVm&2ZT3s7YEu0Si>~ z0-PXlE746t0r2|LN^?{cj??zA+2KN6uCpFqOm%;5b+W<D@`|SBHwrGxUs=5u)90)$ z+oqa&vnok_{y(rVBdc&Jr-Otuig^G2DJrg|Vd<fRU#WFiC*idvU(xz)bFnvd5nvB! zJJ71ff@K7ZR+{eLFEWC7dOq<PH*zQJpG$S_XP=A2I38^o3TF#j?L{!DOO~~?XHtd? z?CK?jhS}lnwsq*xAy#h^YG#`O0DMnJMMXs~pWF%~w!n<tfX>|=Y!eV1Q5ACdc$UP! z2V5tr+_}LrH2#+P&KIX6H*u>o(ARgR)M`CB*0h5nkZ99ke!BAMcxBn|w+xq43PkI} zhYpapZVnrcw3@y70X0g?${Gon%ybYMDWF&gG)Mw@4PfStnqR|bmX?;F2Q;18RjvGy zjNYTO@8K)Vhs%T9vBBAbz93;M_RKshvbf7CoNZCEsB5IGJOZ@;;YtsH|In(jr2ws! z8FZ#>!Eu145%e{k-Q5BWZ}1#G{2w5BVRij2@4S%p)Jp<p+Rh*0aM>t0v|RT7w|D%q zAj*XfGz1cCf9a0lXt6xTUw892FgwtKhM?u?(d(m$$$$H(`@0FaO>kJ4U;{IrgUQX! z4PYfshMSV238;3Vj%1rbW~uI{9aS@XpPyS_<+0FnJXv|~zb{J>njsbmpjjSP%vbe| z#e0KzRL@DnbTv_6L@JmyoHZ`ja+mD_mV%j;b?fe^#p334Q|M+R4%V-qLucc_bp1nV z@9nKVLC}(%OUk~MLB4|SKsm|GE-sr|W{K3&rAqFfR*ff>ZP2K>KgLRg7O<!A;kpVK zRHFwLX}{cLGnSr2nsi6xYv6Q1VCA5wYiSX+NOvJp5;{SIEsdyXW^RTjx~QmVhUXrm zfXm)_YIwSo<VI&Z6Have6&>X}tQ><e=$B^Y)sZd|dW<|g3)Nk`z@(zs&ij(G8LKq? z#9Fu{RR5N(qa!6iD*!PiI5c!^byfWR`-qAGkWIKg4!DkjY%(~*czhu7eq(l0+dEx9 zkvwP!s_=e8dotPQq=e-qNO|ngVOF_0{-jz&>zeu5S_j&JB(`m!Zkd1r4M^D0G85_U zD5{Z#Iww+5U(kLL;5m5E8|n3`)DsB4W3xayUsdjvDH7dZ`z!=Mi_f3ZT$hQblP<2; zN6#q{3f9!JM~?;)8XT;wq9QIYj|t*+8!#6p3$+f;N5xXTQj%l?f$1TB$7Y{?(%w^` zQ;KUC?HBR9$o<pK6pQdHH%|GQBE7#_b(K)@mmx1`U=QL!f9v;nmidiJGy`<V0u2Np z((|f+oCRHta*X4r8n206^P%5+@in}*{O$cjc|E-~@yi-T7+te;f>!H+Cr7HblRE(L ziBhXdk{hP#Nv;2$M#l=it$hxPI<05CuQCn`3i|+E#QUluU2<=CT>9W@ARY5z^BD_} zrX6GZos4?Ils_oe4aISsMbus{K-SXrHJK`Au^b2T`(Ee$Y1ffXANtvCo;z%A#EW^~ z$c*Ujg-f}jAYY0Dx5RqCKVoWbc#U|w$=uze@lK+xCR;Ki$2V=fQ12QabioX2&Zw>| z@VZ#nQpYOq7+klCon6&g^8cAz*eQ|<M#h&ud_wc880cj#rpX<Q7_xnH%h%SN;r#WS z;l*oz-*gF*8OGr388IQ|V!ZM_W|8c7^1tm48G^N<#`BypqyxkFz=}x2w5z$_Y3b3o zIVSbdEABg99GhX&d=2^L78TE-d^+u?lX@D5LnapHjNC3g88lrVdGIK96rxKQGKjb` zi0~<ixXkg@{>{89D5h;0e4kPk8Jn+DolRUp*OZLILkUMcIv<3$*iJIf70cz-gNqNH z_>p`2Ji)-29Ft<5gg~`Eh4YByz4u&q_Qu*RXq{1TC<g)6hKhx?3B-U^Aa%BnjEu~h zg@37~@9_Ut6<yu#Aj*mMYy_@i!Y_^YxmEi2qsxucsbTBp<s>CzsgCd%1RtTDX^v#y z^uS$;=aRX~q5{F!xP&`FUH5mi8BB#P*~A)-)Fo+?P|j)!Mq?{ayqqZ)W`#a8%lE8T ze&t`qPhRK={iWT;+7bJbsVSF!h_-omMcw;D)>-PcFnY6z*I?JA&bgqfV)}&N$L#EE z*lzyx=@pLXJ-grSL?&!PBfCmF9_^@|zOMV`u8!JxHzaR$*|y$RN{B2u#<NvhsOsoz zK56}|LCK|)WUsb(Nn0N>!9R%OL>stta_!|6P4HY&)f#vE(#;y|CDroxH@=1<%g|wS zxpxje7^_*Cx%ReCTE(POAps6Aa^3$ZxV<tZfaCVKh?6{u6w-Zw+l=QIh5!H%4Pyu< z6a}$5*kLdU4VCXw;0uu3#F#W0Xx3<~tD;XC37}33M<RFvST42-LqEyv0z(ZuEAj#e z4(@NBxync5Y~w&%NyAkz56L4eFs_Cwk`>MmNaU9z+ZF_h1?zIAyz5!wq*9~G1q<S( zbR)|@4XA{=pwZ<e__@ptQ9`jqgC6<6qE(yYY1XHFTd96p`sxJ6Hk>J%i9+Qa4P-d- zxV}zJL!Xea9=id~6nS9!Sj+g#WZWaIoQOt`@iHAHCVaSfFP^;Y_QXY&A@MHl-Hy9b z#OJo@4oOD_s&3bl9JgR%A}2xuDs$-*<J?KU87kzc6AQxt2E&7rjj(U8dB|UXM1bqm zd%%<)Z1_}UOgfeEf*e)&dq&9eSeY|M&Jsubwe#m3&7{lTUAR)f)-dbU;zBBBVcQVM z+m4Qa<zoGvPvY8$qb{|wir|wgVV_n}AYge{fN*0cu34?|$X8c}_Stdb)%-alVS{FQ z?r^`*cA~ppqCY!)n7+(PE2F#HPM3tI13OpJ04?^jb@i#W62q0{AaX0BF+#5$mC`gD z4!@tnYYPFd$6dknJjN~-ca=y<?j@M<Z(SD@As$ihxS?H3gRqP%ZxQ(NMC6=@<4cbj zdcBSBzT!7%cuW~(C>-18*F4sz&NCdiS#qMNLL-hqU(rkxp+JZykIvsu)job)F{5){ zg%k1;|I<)+NpbR_6q78LXodbcT*AL?(82+#76B%BfK3e<ZE&+YtX;=0!dO6;55>x? zS8d$yKdIC-<|Gej{0Dto)D`u5#K_v*jzN=gjUFAl^{~sRB*g#Kju)CcRfAt8lc4p5 zg|Y9|?TSVBuw?+h9*JwRR>^CkBSn;-y3V*kUe(_j6*cUZ<yPD47RWRE4i$;Zi#XFt zBGzY=Df<*uympQZCqI_h@On)uJ)_WYN&Xw5=7=!o>IQMZ1{{l_-vjq{rk@DVZA{O1 z#vp|{RS`h>Ii9u1bl6I<5U6Xv?5U~#a@-$;sLO>`x@El8xol7%6!_{a;!iJc#<NVt znZe-{GVyHvfjMNaBnWb_Yrqn5fb{(Bsk+v77Yfp%mNr>X02-HT_dUtI&bp(e6>80< zlTy!tbph&nQDer&zgtcQCu$2sip~CBgzF!=f4ED>nbOWzjGY;^rIXgU<2`$n4@k#p zO6U%fK#vZL3SlW+7N?!~O84e>uoeKR)%+tTR8sAb;g2;jT-6O0Wkrfm-X&`GzqK$5 zE_zHM=#=~H>yv8r6<y5;JAFo#gu7CcKcgi~{Ey+_%LR6=CFk%u{5wQjSJfl$#(aKl z6R_*1>1yJu&9iuG5cCjBooHc6FZRLl>pjc(XB)U&f_2QcA-jy#n6&);DZ%-pwxx8n zdZ?3}GrG@1gzg4+1^gYJYP$Fr?zrH<qZv{kk<h$@dr`b?r#wh<Y-~G-*W=U!SYHpK z)_b3La)|^vhR|zQt)7%hmmlIPPjJ_%vN1n<!ZJ>KUHc#l(BAd*2HwY^mz8_$%`SA3 zYLwK!Pa%XE#spsPer3F(Vd%3B@-cjS>Du#ftuksRpSrtjMpD`=6kBuVrL470k{rGA zp?wPPPWG6^#nFXjq{n*w_OA~nPVf3fn&j!8x5xdC*ds|sH`1>#{t!!ys3Freu^B$( zjr%13Id6dkYkFE!EiTYnS^%|xmX>z5-h~N>@L1J$i}mWXK}s=(3L=XU8hBc97-HXN zlL}j#H*OhtJPEYZyTYC=^S$?8=OgEYfBGTxyZ;JTyN>E<PT~(DLHUK!<A!>6<wo9@ zN>LY$nFlli3Pky6b~FJ@M_2Xli67QG8XGgL@5(X_<E06cq{)pW#SC=&N{0SK8FDDO zEVa&i2wxXhB2W=HoA|ll*1XHbHOjktKzJkmJxmmk3Zn%^j1&Xas?g`sDQ@x=&7qZs zVEA@`vA1o$F~<g?$6u8!h%{9zL#B5uXyEwk>UsK00jd!^p?l6@Y{caOFm7_1|I&<- z!|q@75}EOKnm$y@ck(x^zawhKM9F%+(UulbES~Ts)>5~HB<Gl{NTK(*{Z14Eb#(d= zJhYZ4A!21K-V<#Vp|4*BK3HiTv(NI2zDdWBz*#qQUDl@X9^|o&RHSRm4fgO5p4G!^ zTb>Bxq;+M`_vuf)s6v0JkJX)u``h0Hdb_sEov&r7!l@VB**-v0at8(gd=ipg;Na+h z&Q`zy)e-?m_#D^oX238_Pk(;hxZt-%TMdX<xL3yq?{z+LRuMg!`=kqe#Q|`o^yOk) z|75~~NIUV_5?%DAaM}q3vxRg}r&?x%_w_0HM5C5m+XT+-BV3>WNR;pRl_`3y_`}Kb z9KOjP?(6nqsd$Ck<UZUhc3-bp*Sja3d21Lt?t6P2_ZmGCG=-@I)D7JVgh@z0vlfPh z8<<W$0)c$(D7J$*IV3Sqr2v_e0_0?1cY`1zBMa2!SNGNYi3TYAq%6UN%Ojdd;D=C4 zFwudMDYsBcS?Bv2xyLq-ZdDmWEV)Nyua>~Ck4OPyESGaMHi}~}W-d5p3Rj+QC9jY0 zcFw9l6q7ZiJQ2CBR{VCylt<M5T+8D~)dyE+>sD98QGXkM7Ipo-F*dz3u^-i-|M0DE z5zcnVAKv+vq#@`~z$nN0u%U$Y4J*1&gYw=4PqWOIvs&v4c_X8r?aQ+0#Uc{R3rb*+ zA2#tiBX=<R&W>h3r}xP<eO#$$TS>E^C?Z2i>afaMZLKLfy`^Dg^Fo1Mx8gkp3by?$ zn3ues*Cp(Pp8xXJnIuKP&w_Wnw%ES-hOTxk7z2@`aC4byi;u>HEHUj2H#Q<d-<>tR z3%4WZe~i3=G!PfJT9;Th2gx;Tl*1`2Dt?+Wes<Q}-SIc4Q!p`Ig;;r$bnZ4Jd5GPb zY@w0-_bnf*%ft3Zt=m!)6)!wDQxf|f6qyHjOhHL{@uz{-iRsyd^yne>6BTh{N&(K~ zK^;E{W{tydi){yG4QS;%XA30e_<HztnFX|$#_cPqv5G>eQ^W;LH@;X@=%nIRbP$lI z(!Wk~&pYJ!s6woz+h601b3Hx(uP=K4euH4U1fO&k!&V3RZ7v-0{V_8$A5Q;Snr@Pe zRmD8@g<Ox2AH;$7#jbZxD-Lnuhy9KYY2=gT_F|G`5(*%036@xV5_>!n)%IP7j?ymR zRbVK^eODli5ps2=-mKob5jEoVa-g<mhHwyip%#mbGxsE1%EFbVqvpMb@lAsy8#fn5 zcGrm0DFl-f#KS&BkF}7-pcg(^_g?TDpX*5+@Li@N<(l~g?d8unN$bBm?eafjA~dso zH+Q{dzf?zAw<zAMPS#%_nz)}xsZGTT@K~63V1nDyxzt2CyB-UO=l+1oe6cI0A!Y}u zC-#k+Ehf_8=Sf2I2O341LpLdOzGh@Lr;<P5pS33;a}kc;T}O9dpV`t}=0zQ@tseR> z{a<_(OKFIAi2@C;V-nTXF?E*$);f$Xoxh#CobW%swx(>1Urg0>^!#9U^)pF{L#flw z$eAn3z{Nt?N3O1Af+&!gJ6jvU1KLade*cHXZQ}XLs+unRadiT|VR@N$B;!HUKsF+9 zdR5ykA3{0j$d~76VB5ud=GA$)+nc9`kJopyrb@NDx;sL192Z>;e!(tJAnDSuWW7YF zX7=y*K1TNs(3Eg@v(R*r@X8OYWAGud>d)dZ*^WI95*oF{h{@2fNcwl!>7{A!*TWL5 zRhT`Ec-%WCPB5K*d%Nda!GQ8s34!{LHv`<iv=1VGDn(fn2#V|XUc-oO;J`6=pUL+l zKUR60r}^fteWcZX^Y{wCg}v631GBz=4DYd^r9IZG?XVfY=e=Nj6GC+pN|ib;E>=)U zh}g7#P8<8mM7uksFlY3=0M&0{CJ#Pa4C0WgR!(!(k~lXy9OpTSWNB_`t9y_0UNQ94 z7l?`1-7(wK2>7A~=<h@gb6zCv`RHkC_UPI*bpfj;DW@sw<0BRWvoFvn)74V;IY@at z3B7}&ioSi8qt3&NQ}i&4(%4)@+HS#IMJqiQ*AgUtjj<A#)b?8&nuEoKDWeNVYDIBH z>nXm*Z^VCLxW|&Su+;`Krgi=oL?dS-o{8U=YgX0#b(~kY`|4c?6g9^)W8$X&Zeg2A zXvUH&Aa`c^R9S}e#gz1M0n^7XQOLnEZ&?#aTn`uefExmC20+N59(mRU?K#qVf)cvk z9}4Mxal$ci>7sL2rpfa5bC}Wvy=$T!mm$jPh<<4}2EN0^irKr?+|j3`1otyZ{JsRv zr0e5B!q^%p#~@pSnt#GRTL&_u1)^EKW8Z;lr6%{4+gv*cM2E`mOomA8l_QFpH4FY5 zTmy@f7c4JR0LbT<WC+Us!ebvIqw^gAF`%Xn&(c+*;St`2GcIGbHXox6r)-z-W7T4M zORRKQ881&CXMSCY2w9o$9+6v+b3udNv#D(a_Q5v|hwg}gUZfTiAu-W;<=`H150guU zQk|t-qv(x6yao4_>q7Ti(jdN1SZlk5z6%q^cZ@{^dMnfEzxyA8H7t(1Jw(Vkof);r z^-lL&A0O`iBct;j3mGj*hWPY7pKt5x%GCTmg5!Jk=F7)rcLvQ#dC&CC9pW8)Xst8P z5&00|D;v<`%rt`JEc9U1O2|s_n14WIFnl<q>(TU=YY_8dWc}p&JGvk1&n!*43PIbB zX+7!p>aW;LuYL{lg=}fXg$DsC#YBsQ;z)cX_9(SP%W?uZ4TuN`?7K-VMk_3ohJjTC zrcWjF*pLDB$RaNC0&tS!Eq;E1fq|&#=rsKNDZtK{|9G;u_xX=frXuhyz`?-*7CRx0 ze43Kcta^Hk>q(dS9Yxm?MIR~|6dL<ObKA7`P)<7RW<j6*$@<k0EM|KwNbF4!taVYV z5=3z>Q4e>Z{gF&H|H4o>kt=R{RGKy4K`k_(iuc?#nFBjpABGJDt$QX+O`N0<OEzC- zjF&rbQ^FPI?P0dI-ghbge)M1a2xq@FnBwl~8Jm$2nYldT)5_X(uA0cKJ)UjivNsvd zkl`K(6qYiF^>;AB6^U4{6)?DahWiyGBI`iuFzt#U1hx*xlP+T3{hK#6*RdDZQ-mre zmu807?$a5Eo2FgoA^R<XKO>`Crt#n}I^OHW6cMS4h9L|<I?6UyTMNjGW>`OKnxXnB zQAxa0fV2@YfxX#Z_ltDzXge_0TP_)|0RzKTBcbcqSG?wfz!J6<a{<@h@teZq8|I!Q zVh1bM1ZtS%ezFm#G!AHT<azvO&-lEr?c*X{fS<?##CcqFv=}f|-1LY(ii?Rs0OOyN zogK`(>>US_x6ttE*?|ok=Ca<KD$s6lwQ<T&tw00yrFsF+04Ml+&hXltRai#s@uB@g z67Dmc5ESDjf>#0?(0oZ>4Sjgs<$yGOf3*5cxbW?ID5`6R{}Z9x#z_{!s~WGdsfKvJ zP8*uBn$FprJ~Yfrww0|NVF&;PDLHf$imRXKZSO0|Qu{i_rah;BZ!xOQF(;8Bs;a1r z{oFia2nh)Rc9P6<2jJj>`RfS@34!kkrqO)1vP$7|`1l|a9v%)HZNNiI_AZj#V{l!o zNTcvyCc|4678c>%A3xeVG!(Ad6CkEY=Q%UH#p(vrc@hnLI`G74;3<rjX6+9wSVhB& zYXg3FM3>KSv}ES8z0^njm7cCY<uFA`zqNU}F|R7^4y)8dDtWnYN`KPDCnQd}-8r~y znwb?{>g1wqM(gem_+d0~vhfC>Mtw%UCC->EQ$0PnHzFI>GU2YuT<j{2kb!2v4e2?Y z0Vg@NNOStRiyH^P=RMy@JAjL5C@V??o$rrt+5Caf#pDM-OE&lQ%$J#<0BuE0QxhK- zx3!1LPyT4B3D%4l7#IWx2fvvS6%hCVg+kXU?SSt{=>E7vp?F=*h1DPori4Y|VuxW` zT}-?ESW%2jY(?6B>zkiNcl<-?#p|)zgm6Jl%wDbS<aL~mvE`DHE>@qun(X1Y?eg1L z9g0A-pn-NAM}trGa{8x51$l5r9o^r_Wf!3vpUEtwBTYUh*4O{r<>lvw;(Anx6f%F^ z3@H>5BB=>sT~c^n`aw%01TFcz_nGU$p3=y%goenQaKXgdOLR70-{$OWs0ykz9C-3f zKw1y;tz*IjSD?heB*q5UgWo`KRWH!szHx8zy!Z%cZg2+Tcubng;h<`|{9{){T=D<O z1jsT^M!c;eskUi=xgs{ROG2OIIiO=;gsFFhbiXapJBxNU5@03ba85{I$x@|Wy6q%w z^@i`=HGSG<d6GBWcs_zVeE}7ci^%nl{aRsj;vmKH&A)WBzL+W;`d%?Y3suuHkFtj~ z`^HMIdA#=J<83(G6vpxhCT~g$UdQJ~UT%-oDg^Tydo)MnlVPs>VtV)S{SG8VuFfYI z$0EZCPd#ImMf09f=6`1!Dn+VQ`>``$!{&8$xVf2RNYBn5eR}H1+I;;HmKCk7t>dDA zoka@R-XSEQR6pmjUI`&KSQ(dN%lY5i6FWP}{qpGT?2bOv6D+FvX0R{Wi9%-Kni#Jl zZL6kT8R23g2U?!$P|K^^1Dz;7bUTymY_xY$fX=$@j}p0+W-4>EJ$)yp{cd0Sl?TIV z32jgw2Xm*VhNDFoh4Xp7v#U14#^%1XvU_~Rz$XH>qkoxympV+@xm+1=C`dbFen2vY z_j=x@^Q<p+%H1sf4wBj7B~az$*gT}~t0(m|oDe}F>_@9pgCGK5`qq)(lh;@BdD|Lr zG6jY|GBPrlb*sODTm>Kf;|J_i2H5B<r*jPJV<$_9+J#yyK<H^0%K;iLhEwJJ!!i~5 zge@~4Rj~nLdZ<7Hr)3FdkanNJIrB9cJ2`&bRr9FB?z9xCSZ{K{jld2(yOF;kTul%3 z9|7Aza7#{PgP`?x^S58*<;bU=iZtMYNZk?5B7;~P+^d1m!J^T!bOk2*mVr%pBNY`q zU}~dhWMqT@6MQO+1}!ZurKhj})>HWu&XDVC_x}EVcW?qg8z^KjG6{GU<o~ZE(H;uO z_*{Ddj>9Z!&)hG74?ApK7hNQEzuTeeJ#gGF(?vIvEj2@m?|T7*C*uU%O7o$2?&h&L zMq;MV&V?|9bdJ!)J|s+~XhXdy+p@?fLeiec4sYV2us7Jg%}EQEQDWjUaXX!f2`FTY zqHq42hS4#e>PuY$+3^&BK6Q_kaF^$rq}F03eLmB#bEMO+cV6uxHp~X@uiw9E47^XI zU~WSoZl^jIE-dI3*KLt`UhH*|TBNmwVm-eGYB&GcAQzlFupIDREjXosgHXT(C;-gN z%sLx19c%laNm9<Ri7LW{|H)jDT+C}N1=vqXM^fo=ZypbKMgOaOdQQXO?2gswD)3^q zpzI%MHVRf)_L;uGJw^WU+FF$`-^v(PR&i)}PNtJtcDtch!j5jci%R6hAJJDk-G5Hw zpdHi3(OH>QL+B{YHr?nsEWiiD=X2`}E6(HN<1iZxa7L^Fya=;fgCko_vOS)_?GLj| zXcQ!XXG&z%*P(iZ0M|gWpc^ZwBtVKP{WSI)|MJO7y&!`jn?9})T~JgleQqQ3AT~)< z?<BzFuxjr8b&F{GW6p5#`#Aw!7G|%Fp1z)mvRfDGn<4bm2d_G3zZNQV_*x?yoJ;j< zTq8DyyG1XV%0ow2?eTVcWD8D?>sQG1TU+N_pN3@5<=&*cFfLy|s%zk0&QEp7gVX|} z<zeHQA~TWP0}pWa0kg(Ti(d;qla*Op`d^N_(<Hhnwdcix{iAt8KC9(!6iJ(V`KwI> zFRCmHy1q;fETh<Epe>6cgi;_I$o9|pmC?;tZS~*Lb@<m{hdB*(7spR}u(Q_&7Q7}_ zjjNiT&5>n-;ok7(F11-<cYz8j!s@u4DMAtq3Sa0`&5@sxrk{%2DsX~>Q%e^<Pri(F zbRlpE$b7$O7)afbGF?5ALj*6xg<dF8)ozGJJ5$blUU?{>-sG~-q_YV(ZVlyKt>TET zLjnjm3S*^Rv()QWu%Ujvd`@AZsQ^C;y8DF!|AQbwx&4ed{5N!qB>JLWSQ0U3z@wZp zoxVNU>nkQ*xNz=CNXVDy(Mwt*N)tgf1;*eDzo!Ai$99+{3E<s*6cd<J9(avmG$^nw z=9U6Zp+-fhaRujWWnI^3+ix|<%6RYjs9Syo6TYTq21@1<vX`GV|Dga8t0z_<8EZ{K zQl^r|&wX!A*1s2P8660-+N2SrLGvF!)G^<)OVt%MNQBgeQb*~ScOGv1q79l=!|U6Y zI!Rle6n{Y}63NQVnAyHMg*!FRv8O-B4a}7R2q+&pQ`mjW*e`(L`62b8xONR4Y|in2 z%nEbpUm5i7k+m9)=Dm)WpZ_XGMm9Kv_IDDJhMG`JvK@u?d-pu0hU2t-(QUhT8ojgB zE|>aBRMss8Z`ADP)_ico`?~4vNj{SWwAq4Dzu~*z!?n9riSmo$Ukys6(^7|<%XQ(* z%scPgGF5M{33(5wV`QVNC?as$0?bCQa9C9GYjME{D=XgsQ|v*&EIe`J8fsALa%h)d z;NCNm8wLwa`r_<27|pf#sx9^lQF{m1r}p0x%p$&ig_9xSi}h`)uQd4HQ?^7lGELa= zw<}1?39TmdNz7S|?Wg90NKq4*sz@|(ZD<j?xtTUIoB5To;yrS^&}T9~NL(LB-%U3! z%(F?fl(mUYl<VXPfiBFt5UV8dbX$iy83MPH*41m~o760&f!bMC;fN190meW-4WhdW ztU?^5WZz;Xamvkl-iCIKh$!F^g5Cg!fl+^=9kOn*Y4qg%NBXFHWDVsF`OWS(!q=VL zpdEZWX@ISZz^8}bd#3H<@pFPmNM2!wV22o+BCIXOB{GE&06q~WU|C)eOifAY1A?2F ztu3poR|lT^e+;5pLM5p=R~mOunPacplRu%7gxL#ukNmbxVF%i--Q!sb(Ge#iL0s14 zdHR2G#g*Fbj14%tOcZC0`naCSa_u;ueMR}{?JCk!$^`3pO<vvQ2YK+e2u@4#I3Rx? z&Z2fBRwEWf4tAzoq^XKH10^v{)K8>l!4U(7<HEvBZlwyo_n87-2}#`*BdiFHyyzsW zbU5|5fL)<026rgw*S^*P)1DDM>Ey5k)RE5u9_piQ1?85@oVq{y5KWF;oj*RFmXxky z{e2yXVfe84kJ3`w+NE@L`S>6!QnrI-3FiK6#$sl@$T~_c|LpAnl0Zt;qkD?=!n6O_ zOQ7BB>4AnAP|C;h8h*{MBeSCH@ZQ3sgXILKAx;OzOo>~vFNYW+Z7iCleBb3B2pXRr z?>trlP?Eu^Q1hyPl@S6Rox}ag)taGYS)B2-+zM1a)@_Q!M~)Ig5+?_VazzF5={)!J z(x~^>L^C&dY8!2Ic7loVahEJUMOh_=!-{~(H|2XW`||0z&yQ-2;1g9>yVnO9!5(T( znow*&V*>AnC2c4&0XyBxARzU)voM4+H1fVVfW*i~TE@KRBu9|A)mz{UiTD8Kx3I8q zqkMq%!?hKX<rJK^?p#2XSxo%=^XiBY4>kO4b@5<nZevOfz()%yxMIo!*+Xqc_*LN< zea*ilT5eypIbnVyEclTC$p;7Or~{sB<2Gbg%7t*Q*x$#OrR2F08ly)zk*!y4Rgo90 z%K{k1_qY<3jRp;B85qk#sPjuM3s-0XT$KJVrfb4kA)#=F1U)CVzHXTE=ckP3@1Tkj zLZ8$1e^hcLg;5zPsk2-DqXvz*g6NM@(?5NPXmLjCy3sAf=o8e1Rs)1gim==~S83^e zy&ARvj;al_=IC=`&Zv?OTS%Qi^U(8_DXq&mJ6rr8eM4T}5aCY-8}fw0-MENkYapFH zs00lq#NZNijmPUH{@Hj2-S6{2_;}M1&4=uaZfmdIGIgGeI_-ycWPt9$cznb~F4yNm zGILucGf+Ck@2l-|muwP^(z;@`@-3|O>E*PnjhRM6ir?nT@_HdM{}b^PJ*qllr3ws} zl4zce3G3se<i&+lj(Fjz7g~Wz2)>{0;qGaFt>g05<6Zh8ytNzkk9O_OSsDTdh3o;W zC^zkU2G0G3<yv%@jb`{<YBQ++yF4hyG&UCJy;K*xb<`^55~7YeY12MGVG-C>+@!~s z^whxL)&73;i$KKdLN3F1UEew#x$M)KO1WHthlP#6QK3SvT@SS_f0N*c+wK)(%guku zGjR6nsy+2>bq&T#v&UgIKc}^ebi>}XycKPY^`iC)Tla;E@okgtyqU~1<CZcg!Wl8W z*evD7#c(YSU+76`OCf7y&3)Nj5Mim3*O;~#rr(xz5_vRTiQvqS<@kZTf{}a{^@LXU zkFo=L62^b>Vv{HTR@LnVHLhiSy8zo`+;mWtX!UClZ}R9O{n{_2QLieid#$>!=ju)i zB@fdkzfPf?-W>g*^{(PdO_!FdduU?m47qWfNVdIqkRfk2D027UtHoa^MHHz;#%2w> zVhuvO;{O9b_Eb{Mz>Ab9a(?!n@*>Hr#Ay&?_8qhka}{)B@$*fn<&*3{U6F03gPC)} z#{%l0`Iwsx<JgjEUc{TspYP*@y?@U0^)#l0X^K1B9b<nk)5&oG;o}W-Q1|_!np$w4 zC{6!;ss+ihjV1HZ#>LOM<JRCd(zX;ma@Q}Tf8?<}(V5NhO`g$^#^LrM5OOy*ZQ){Q zP|;+SMxcnyc45d}oot^7*E&iHiDVR=W6U#<6yKvZH)8M%xqZVOn%g3I0WI3RnhPFh z)_UZ#_CUdGSTCQ9-Zxrkve|NE;}gk}ix50f^mT(K@9ydMr<V!pLcgZemRQkVl`$@V z9dAVyVISV`%&I)m^!a@!;QKC-(m_6F@~%CRSzRYa?jqvy^3weL(-6ONe#CyG`|AqP zr(uQcxnpXeKmkU=RA+KY1H-R{XzQr!Tez^c&j_iIqd3)CyEo(CzpG;-Zcg1?OxN}% z$klN=UH31wgjO4gR~EM0pu5S3E6e!5R>bxjo72+vRHdm}h*9`8yf~oI&La07>Fcp} z&(Zz3UAaoOUY@%8!n+QBLmS-srKn5rm@Va=dhl}F?_1Nq_xX7kPa*_k*9=dU5~%dO z^9WL5I{EUJW}r7d0{Xdu=Pn(fj{ks&Sj{;9WnF{`Xsq?UFFrz(mK6i?FIM->R)1`; zdb@4&Wz^PEafpkMvlOqDP}x|Vo-t|H3+A@fkFtE;xv*a(#>G7#AwTVQpE;A-Z>)Y} zpnz29+lP0r@rb{dPi^~B{tlV-K`Aw5Zj%A2YDvi36n8nP>tpvYH{M+>w*V4bMZsX^ z%L5e|8xg4i@`87wRcwhxUCrP99L3%^lWbhyJ?8w(L7qoSsz+?}eei64xYQMSx_1H& z<+D_A>aRrHzm5V^IWVsq`691;(?n>73({ITp}*tYaw_Bm>2bcM421SLt^SOJ?Vb{5 z(bmTWM_X?%TClC$j~kcHzo1*+NUTY>4l%6+6|D9mYq=v~HsH|<BWEaF!!Zt({AuSX zcbme9<R^z~$2VGg8||)`3azPY;0z`%zf=BvM$@X-K~dJQv#$w-mUk+|+ui**iKDMr zT!<qTT)Uz1pn9bIe!n&beDTDa{oZ`_XltQ0)@8sj`Wogqvp?zjVP6jDLj0%UgRY2i zEl4+_IS0#Uwk4aNQf)mG?L)b4+vTe#ji-xnOSdn+A6;#7-P|12(bsWt(O<rtnLfM1 zaef{6akZXpbzYjBMFAX}2-EDC<fTZ@$Z=6mYX9RAd9{|iLOh40*z)|=aIH3YxtjzT z$nYcWfwm;cJ5crRbPCsJyV?iP@y;PVYj3$`C1PxK&$HePY@yjJne~jFT?GA}wxyDl zV;tNB#HFHRI(?mQfUgFAb^eB6p4@Ts)s#YCXfb+Ma2t2bT{5|M<q&ry;*GoGNW3KL zbD|#6X8G0BMgBoumoG}y=8i|RvhoxQWoFWWUhe!l5B1-JqU>Dc3D3IS`OZ|NzZyMH zmaH9O8VIc_5zu)k%!#zI5xRy`n-Oy7W{3f*mDv1kApJoU8@JFrThIWn^ZG-U@wX`E z&BC4WZejjEqNX+><;*?u=(5{Yrg`J-=ek8$OnGM;V_88n`h*ctd66xyGsD_1Y}oD} zRFhEsmTJvkJ*DuZQL4ZZXiVBqht1bQ4XtJ~=g}WXyySy*HQz>Y{VFDFzGWIrg|G9{ zd8}GgKcu`qXFK*5)w*b;y_Y%<#4re$=V|}RG;e(^SAe~;1fnVbODBk??!UqdWKGhm zN@<@>wUBC@T`G&0D+=)Wr@mWbaHjn1dD*k<<R&gltBcb`2b|+Z;9Q{6OurLol{5;w zt2U=S&!Vyr`id`TdsRDxDXQxR#iF*@>0iW_9FlaTie{hOk2e*{F`4#bFx^bd9LiHI zXPM=GNBiQ;OkA_N9O<#e`LEq7w{6$0&611aYtBGk**y8#Rgo9gxNn)H`T{D6FoI{s z)E`}aEQDsJ?`FOR@KvE9ucBTbep!^QaXlwZsJ79FBKLiTYGjc|<#zDRq%FF#TLBB7 zVE+@^;1c%T6G~7C!iV{X!g?;?d;w?bKiRibS0}RQR+oa>`*=IuB9QxvSWS6<C`%e8 zMt5H>Seg(>5$_5$6DkHiy8@q{AK84m({0!3N^Zlos}d`lPeZ0sjoIl;h!05lvyN=G zoNdRc<l-A&1%die>WvN6L$naxtW{%H(9FQleHw8{so`5J8!~mp+#}(q5MU6jX*O53 z;pGyoVPNVf_i;qI+jg>YMu$rjV9=yL<zlO7JA2^db5np{CPw5uvPYb#-{3v$)9(@Y z&0jxDt0EM@v~7EzlLHQgH-bX}k##=6rVS1=l_eB7D8O>psmb-%%fgMvNZt8|1!D(e z-$suE<wPjRz9X&<wLfDEmi0z%5CrU(>trR7ZYvkQhIO_P9(5E;9ZxNji=Hnvw>pGh z4@$q0$>xCa%(P(gu-RAM&iY|WH2-41)*<1+l2}XEHR0kn#ahWJTmq7oN&Cw9|I*%> zM^oLt|6Zvyh!CMrgiImHOezv0$vn@QXBjtTCWK6xDr8RPF+1ZX^Gq9C<_wuKvz_bH z^ZWk3>vx8=&RJ)j|4!@iN9)mNzVG|Guj_ih-mAVzm)@az<+wsh(&>+>;>S6n_mzd$ zrfaFC1LLBphl5@|(nWQfyf%`JFNwL3kgh@T<0`xl3?IN%KzFme<@-Q(L39_>^AdW4 z$Y(TWsD7@nf+~RR&`^l$+AA~kNZYG{z#S(o7F@=x!?s4SwvZ^jqugOEf5Q8fXY+UH zV<nDV#yN3@qx5NrtIjqb(H%F^oGrx`EhT@MA{<^LdrN=l=8<W@vqL+-jd9tKo61xX z8|Ru=NH$>UH-ysf*dIugO&WfeZ3CTm4%$25A(h<muj(pPO{oHyb=8Q{u*Ecs5axQ0 zi(T&+*<HM(%$+vM$LD4Qilm+@$R?ilVetAx2JOS0Hyg6qt*K^>Nv`G&MnEQ<etteB z_tc3!*YycEuL{>EtoT}2B5cH4yQ9hEgBN{d^yn;xuOcNA!Z9cV$W}7hyv!iI_uVX< zlC8{}fUv+%sr<hBP^`yc+57nmO9ur^e`bE;-KuSG5La9|r8D+h^Re85s2gkr@?*kd zWT2<b-qDF&GFB7$mWr!rG3-w+-?5pNS(rT);k<sjKJ&=&%5^^pZ{?2FhK<Y4?VWWj zpBbk8_3YVKII)jZ-8K{^Q&nb9e?$}K^?JhePeOY;tM2NB2A-DAP8M$N2sK@|rr;PM zwfwP0iQ+xSVOp6t837(+Su-oHd(LNPrz9d~B`itS{v2%;@u$Ua=;B{qmVRN-+?cZC zQ9j|l47HPAB5!J`YTXEK4GL+V6zFiwi+1}#97NacP_QCP+(7o{sd%7Rs^nI9DnqfW zWc~Gra(V@9%MPpUTOm($J05);o(;=vZB`-M7vd8vejL#lx7DgTH}6i?S9+<nf#`5{ zt>xWvjW$ZS+NjIuY1iE-QAb+mQO-qaL+gi?#;&&)zhZ7Lo>&%nN?JF&!Um9@GNbQZ zaG$!aKmE`DPV6vcWMZNL%>oouI@!Lr5>Mz=2Ez`cZb%!m<RUyVWvt%L^7-;uOz~dx zddpn(j>E${ww|fYm$1dIJFjY!MntMi&IK`?5%4@8h_aK{EAq}xE138!)oos3v==3Q z$yf1QnXK@AYsxE{GlDqi-}=cdJ(t+t?N(wmUYovgh0A;S2|QXN|FNB#mYx@d(P~1F zsbv|ju5XPAPKu8!V37Q&gdP#6z3kx-QB;!7WUCf7o!xSNN5F96sp**d$0CWV{kjhX zaO9AsyQ7s4)Qb)m&Rs4TYCsTpUo2-QWGNQ#C5Q7ApNnbZQhI3lr^ubsczp)lN{7?9 z<<=RzqKiX%R!HLbcuV?tkEj!hLD;WEUxF|COjWr3XweJ7ST1bk>F~T4qqS8;?s^1- zH+^qrmUiqeSvkM?+ChfsjCT6ALaCmI3OF&42G0p=?j0n4>Gr(r^j`Rlnq!op<`n6- z#)&j-x<Wn6UD?DJCXFZ;)qp6SMa-+36Zk99>(yP^YpZiI-B*R<tlm4WxrcaG>+^Y( z-Ya#;f%hbP9~Eq*J|lG8XEAN72ZwHHrQ}!8)T9L(5&n=aQG;i-Ypu@n3${HooASW+ z1qsLYtb<!BL8rnh#vw_P5yaAs7=eZx{qZQCO<XvoR2i3({EH~`r7~`((Hh_P7@F{G z6LJ<%!d89EVQl#^tA2TR)uKh6lpnn}N!H(Le^ac}=QqWu;iD|g>R>5<ot=^!^dhFv zn=yJZ=6g4R^Ru|EI*ira;QU3T$!4X^ka{w;E9hGd&P!KSU*aSC)3tn#4CPi+lE82) ze~X!Cpgy{t*nzHYk83sl__@<-wnw($%LV&Rd4f)oM`nh0pQ1VTy!=g6;(b6~kqSS! z>{3^0Cl;%9r}_RwH|%%U<wdTGTwdoFdvKrUf6mRx$$n3nJ@aycn#}VDF|`*F?98At zDW)elSUR>@IAwb4{xgQ4%d-{QR|KxqSMggOCE!fT?>`cr&bVh2Vq`ef&UK#q7rv2| zdh(%=CND*&Ur<WER&I2L3el>C0yz!;F@ozv({?)j;^+UoammcIWxM1@Z)&e}37?FO z)~#jsbL~%B6$)sr|L{f$<QvzZ9i;Nu*Q|A`)G>)46ri*KSk0O}gI2NWd4xXXQoXOO z+j=8!I=KNKFWT-@o?&m&c+D)X{|2QBKlQgMwFu+&`D>jwiK^}6O-$~L-<0)>r*G8W zylr$C;oz*!Za^O{7ti*~O?z{P2tkDC5gY`!PM>zQZ<t7$yXwdXx@He_KoXq<?oRE@ zFpibF9<%|+>OBPU#0#hKk>QDPdQ*B>p7)=Q=bZgeL?FxeL68s<DHJ@H=w2OoJ$aFY zPye8ECAzwq_5PgFg@NkF1?~2|?eux;)Xi0|uWja|1RnghewG^~qs7mEa6yZ`LCEU- zbl9lwC}s833-k)*ezVeiU&5D#1}8Sn`_Lp+z85u21@F9O;?+4+F&9674AR;P>h#x$ zpb{tpjb~znAQ+YTP;dH)WsYF(1XqKVtewlF$Gu#_L3Lsx!qvnC0fsysRdJbHP3v_% zJgU!}jPE-WmpivvALMO!)L8{6+@~w&`yJTJ`H-RRHG{2&)`zMS;WkdA;Y}Rhc(dvo zustiC4Q*?g283GY`v(N~W(QOyO$-`P?iiyrhmu*TKYsJ#-S#|<Bu-;(efjft{{F+3 zsYYR$Mi!}&&<@K`8F7`gbnnsrtii2#`sDhrH20A{#`RwHW}+kfGft!lFv{8Q!lF`r z4vEtI+-#p=r63})c?)SrUsCawS0~TKi@M#?D!0k7#npl^Pen|qR6^rn@9t#G!__L3 zUvZoH24ju2=)m@AwPwoIC$dCkZ+ABOYt_dk$eSr8S!+vr3||@2`QCRw+L_7hTzDSI zF-)|(Pv=dw^n$bWS<2#RNB$Y~a_F`Pr!F)Jx_+Gy#DrXyIE41Jd&0g=Gbmy~6?>EO ziZ@3ZJctO_Le4f0Wleq>CcK_Ipg1a%^x|Y(0K@dry2q-EE-9pz$!6RpRqo}{OB$cr z%vAnG1>HCq!>lCL8WMWiF>N(`pnny`?@ZPF>6Ie})c_Emcum`>&EjS*)}d0g$@N+@ zO=yqfl1`maTf>nNsV7m^Q+OB&Y0q>d<y?E9vwk`-#L|AjB9?yqLf?@6K7WJV3G}*l z)=ig^KLaX9!wY67i<^4LpRYMx!8BYxsHdyzYSW7|pl#(LM)VNgo{{$?{ii}Dcejps z#jg2If3s15HlWR9x~RHO>!-J#1+H4SkV7lQdUYEu{rM|0#!cci)-z6=SXt@S?m;%y zckLk5Q&tpfidGbV1iB)?3XSt}p9#H9RD9;<?<ei)Sx;x_Ur&aWoc63Hne9B9*|?8a zMG`jQTte3Etvm@=(yYex)ANg$1fSM7q%Ipy8DM1g{jvy}Pa50fqPZs%?aBblVNX(g z27fWSUMw)MFjLr%J9J7=;P#YX7c{sEUcB{6_hj4rld5FxqZD<qA0ygX%YGnEf}ugA zr>BPyJm8yA|Ds>VyR8L`Jq|UNWfh;mWb|hHCq3)4LnxzqiC<1s*5cpiu*DU3D*3!Y ziulC4!(?E5CRSymi#gk~WcPHyvDy?Wo5XJ4#Ac_dhHV^z6j8XetkE$Lx$nj#5V?J> ziuYT=n+jaQYE5@J2Q=WEE;Q}UaOHw-FwJaD^Rw^`4{1AgtSAsN^^zNka<m>f-Q>oh z$U;f$-}#=bS@WV@`7AeA)uU6fR$_DZ)$$XSurRmWKG&IQ!nay<eR4X2UkJSuqhzeU zgq9M73Xbf&=e(ox;7cXrt4g6qqEzK)Nc+wV9`YwZ<7^0i<cK+Mf#;eE&BguZQr)`V z8zAVL>q5X-jUCK>Zfn13eANpDA~Ivs5$#ANj!qw+b01DBli$&~fBBZH{fM|j+m*C* zBB!&nFE{ph(u-%gD1@k@&)9^>&J+at3c@^vKB-f2n{nB%D|?-oS>!!8-S-#W8Ls?T zPrQ#oQOVP$UTQe0l=jP3V?*tN8_ip<r(uUIigwcTz3Mu$>S`mHpS!q8X2tZEE%Kr> zhsLErUqzaKWto$ydi2!Yw`l*iy%TosW_t1`&8==e-#N#{wcLoFcrf}X=;3(*>E)T- zrCQIY{RwsWlh=1*Q&xo@z9OPfs${@bJq6L-8=Bi+oI_%y0cg5Q2@S;Q;=D+BC3(Sf zBk=ZYfp}x(p;4u|yuh9dv5QN#wKUYv|H78&%_e`v8s3^pbrP0rjhmqS89$FzReI36 zuq{+$ede+i8eR3odNVk)_JaK-rsEre`HYDS-wj=vS%ZbvF0TsJ(GK4!zVz!_!!M<Z zR|*+gE!%SMn;X!S9I+JU<;U!x$%Iq0BuLC-YhrP+4Z6u)*IQYC4dg;e2%wpxZga_q z0OsE`#h~zT7sHuJb`;GCwWW?JJr2^My}QR!tvaTo^Alb#Q8f=RRr6#k-cF$s&}L3M zv%ayBotHP6?7@AFO}wZ{uV9d;xF(M<RJJNwc}`ujsY|<USJFIbX!k;`mk42b(ke9r zC$=$~;d7H}W^k$$%0XvZ+(pg*4TMwGyJMBtEO2MGyEf#mR*Cw5d#61qH&`g)d5=Sd z9i0itPk>$VKrtCg-O@Tbblc+|+|ewL4MFw1voBKn67X8lutdLtO3|B%34NRD<vU1! zhHAd%%=AK2%z=}+D|{6$^jtqTV~BPg9#UD7QWb6KUyFP>t}V_P-uAH3lAvxyCM3eD zN5$~01!qknS*Q1{`qonS;}>Q%FeNwLwCU9DzR9EuGVd=0EeqDrIiy4dA1iDV{G%bM z{iUaJZ}2tzN#a#*Q9Ok_OYgmhecW?KjG*hBN_~)^XthYmi5ajVoB*O7?Pw}gla!Q{ ztbUXPBU0U{C~~ChblhuOheh7blPTf9kj8}5tnBT*L{4q=&iGcC$ugcB%G?;=BVPZW zSF^K>(#6|IfU@kCv)x0M&G5P*Il2_Bw$D!)X6eEw`j#$OEQJpaKVQ+b`5lFsNj|%} zAy^kAMP?p_$4fzKyZ%U4cn#Vs6rFVyeP(vX*w||rTh<h>e=;Q12~{f=+hgSUl@nYH z4AmV=ST_j#{DlSu$NuLCQ(nUN0~Spdhi+a2y}cAKd}7L&n3*$LyJ#4WWj-b`@iOI? z+fpmyC<uu0*if$&Ak`zKNSpMerdW|nmEq<@3wWU@H1bt}Hk7y-&-Kd~@8zwik(|&~ ze9!gh`3)^O)Ni%hSF@rPMdln`<j?4uo|K4;wUcT*=JG5cQe_cyP;<g2RA|jil*yHv zOvQX>h>Bb%<(`6ms%p-&a17V+_hU9@Kwbj8WED#1=f7cSUu>P6ZjX$NU_@c4IJ!c` zMypEOTuQ^=B;F?%+JWCj%#e|XdZ(`KY$p?3<K>jgHPq0gEc;HLvsIAB=*&M5SoZ30 zn~45^KDxE=p0<{<>Ud-6Ywsr0Z+nd1;-a+Q<3_GMI~x8mXK+i9qsk91pHHyjX)Z3f zga@jR5}2jgy4Q7i?4brh-uN>^ZJ&#G-q4G_wUNpV;vSKCsVA_&xo~Sr-iC}IQ!%x( zGg)L8kZuaU1c9GuI+&-ixh*Fr7aZC*9c!&&@5X;>bv>0ea#Z4jMz}e(*09le6E`=a zL6ycQ3zy{Y9z8noC)F=CI~HGil6b4l=#4G?Px?We#6*E-C5n3+z4^F!aI_bdQ@M9t zy8p-dVf7`<rIBl%33T$hVP=O$V~4qwB}UgSIp1LE-S77;4Z5vMntJOdv7DKb!KLx< z%TnApawsQ<S9^zhGxp4QtQK%x1*8B`Lvx8?>AK~zIKj9J*4h)lJBJ|M6q1DpY$Jk$ zKm2#?QPt5Ez@1I3T4D(sO1uBOm_&j4xb`Dn=Pkp*OS>B?3Ossqr=l%4jjc_HEjj3p zFyw?e)D%jcLER1k{;C(2+z!|%QBhGTLyY|8>8Tbrc_G4lxn~J?ZgRh|-FVef2xN&@ zq6_ilI^UU-&kp=xoix7WPiH76MU52nx*koZkYFQ@5^g6vI!7mk8|@0p8NRP@myuGJ zOM=7aiWXoq0}SkdT)VM`VJHSF0kq@%m{|KaGY&xy6991{9eA`!NlUMzGU(QM8nRZ; zO8cv=+C62#%6e)<GPJB8+%1dQDa;&=6Pu~6vA;o1aq7{_f!C+G%$~?F6Z+-`ZRFdB z`Y2ll>SWaBah%mRK@lv59%S>QeqX1bH!yN|c4n^eEst=Gw%7gxZNI=)eRuh@#eIQA zUvDMZ$_n$aUEiqKk8{JknH%zL`F`lcrP<M$wP7F1;BYewrqN%0nHxY0fOR1C0yVWd zu7F!mkQ(BaSH8Xp&<6}nnT(vAuL0U@gFbYLijL+#uCD1fa>Dms4k&n=Uei}z98}*C zmv~buh0o(6zM9{gIA&72baTT*w`xl0Ly9x;>Cfr5PbkF*bAHk2XLLT_Pn%oMr*ete zEh-(3INyY~V&BUAKDb&Vyst^apwT=WbW7SlZYsZ<buvoWUBv;0G}ZJb63=!I6$Fv! zVp9Jc+O?d9;G9A|TF$shcm23K-3vW)q2)USK#9#Iczs#mbKMqX&h5vXhmNg6!PVeS zBJ@64_y)h1(!3uZ7j{ngqN8M>A%R0aeIC~zGowfetn8r-+vbO?LEo8ONzN|P9Pg9_ z`bGtjWN(#`M<Xlu)zGxUdxPDr<pDQVgx|S+TVrD@;B)*^pP0Y(`9!J<vm=M%RNYLE zv6grBXNMp&x`ulkG9(;ko)2hr4kK`JG7q%d(kIfaJ_qSPG@*7Z_Smo+H5HY|;Codq z*O-`|^XSM9_EZ|vN!2E27w?ofH1*mLzV8XT79}n&-kvNH2Te0&_oNtEsb+LAyM@e2 z42$taEfxZWneBnr%&7FYyI;yj?KyIbCn(9fJ_!#yz5mGzRdL~+{@$MQfbiPV2d)ET zzf~S)nb8^O-l?xyIK7d>)YunLFcOY=ben}XAg%19CTWNT=fxq-8=p6?VizP;OD`o1 zq!_DtL@CXvNYL<Izi^AT3`=l1o@ai+Hp5n*67G<iUQ_a(&p<|fZqV(NkrUn_3O|20 zGzdWh{8WAC0q;S#{dO10k{q;k9$19J^!5JOHHB`tF&V8n>pRpJw3~b;Qn@pzPt{a8 zalg1Z+W9B93v;n2?6oX+_%n}4mE}kI2D5fC0)e@-0_v>|#uL_MQ%1b2yx6s};k8>d z)IMW81_Y<{OB1up60*t?vWpT6X~GmO$aG6j^j|D8!m8R_p>Jk5<rj5P{jm>bh13=B z08H&^0p>~`ZoJi`q31;Sx(nW%z!`PLS;n_tAr=cmkOex0fe^*N^{}KF90U@1Z$P~K z1*@ENVQW4!cV?c-m9Ds_i%V~eHm7A`E<MZ@6VjZKk_;n~Dy2GWDSG2zZRI3Cy}Eaj zL_sHyl3DQ+5SVk(v-n<6d}wKyl^J$pMbpsBB6ux3!&i}u&eH;(CG&7!=MmS~cNIBt z{d)7bTbxdJ9S<FYf<hmWw3{eP3FiJgw&P{kZ_`b9L0pLv3(gspEB~ls6;b<y!>@$# z<Xv+YlMEAM6BD88*V1h4H;=!ssL0akw>mZX(v@Ojduo|FXW0}wQB)h`!^U0@e9=F& z*UC4jw>nM{E>}7c|7QSe>{vqe&Uy#_OI!?>aP1<<d0%vv-CL;`;Ed3%#FWAAx1=e7 z=SCCteGEr`-un6Gr=JQ#GrG(tetpcCXv?}ub}aGu``d|Cv=1{6&tDdBxb9pWook*% zClvmv03gfZZ_jfiX+NGSnR&;N%bu(aOrsKzkd;fX{A74YgyaH!4>xG0^<3M%7CCFL zkkCtSe`E;aKo&hU3oblnRP9|H9RIRbvJrDY{O7MS^x`e81Gg3aHumON*cdeBy40s| z^{Xe=uEVj#K-L;h9#yB-WM7jK-J+Z<aKSiRY__%%AN)Wiom@Q{WV+5v=Tf`B4^*)t z&ri1&b;AE4^8D7;U9_20I=I@fD}qA+Z5pfMJh+PGXn@>b7uwOCm(OLcusSSWKHWb> z8lBXHNLz={mzc$^jbhTu<iBzO!ZLltEn!(cVm$1m$Ypj$4Goti6V+o#EJZSZ{_fC6 zmH5}u)Cnw)KmN5b;QE-WDCB)wkx*Y!_qbarCUsSa$@K=msU8qaU{{%6D(j>L%6Pyg z8g`OC&dgLiqvArU+p18HN^+*PGUX--6pS@oepVK9bz?0qI$AmNpQAQgy@GI}8S@O2 zvT&jHM!3lD+FjHb+uCoRkuSW1E8pz5|MOSbe-yv7WZWiPMWF;pGzi1LrnNTKb@vPx zc8?Ut%k4kUvyl7i%MeK=aPvm!2fW)b&&E?#+ni-g_*Fzue}?w-w+*x136s8q4_uOe zEgLkGT2BZ_Ws+MIMrkZ|iMWY{SKFF)6P&fKZ9EZA6OXRg3~^%m=dRdaah4tkv7Dqh z)g~)aR4Y0ezfZ$*u8qUv3m3Mz?tNswc813j#1<k_wGWnnjeC8^cGMIYp;m+$<u1M% zFIk}WW(Awi-{yGvp9AKAFj!h(<th78N_&S8zMls(!r5{6pUa8~Y@OJOA9GDykjXwf z6aBHX^JeSvUsR+_Zs=OhB#4X&JfC&@d#Ok&d~W&rkMD$X5`BC}md}-?csHSHftWj? z#c~e+oNMwT3x#~BEOT#K$f&U1`1i%&58>YV_x_$MskzH=3Mw=4g~d6X0W%rAa4N3< zIN;_Vu9=9R<^=6si;n^Zx>_kqz5ibOq|;pBr#@W48`_5Yb0c2al8Xf8*AEv%WOCU! zxR^LN+D1%n%erYK065d0!<6Dc$X#GNopkDXm;}x}{Fu12i^g&+IBAqrRK24mxMMZi z64~FO@cEOy%k(foR&K7N12f}qrs1?$tdYycaL>!7KQi^`E>}oc+OQFX$b=RjQhzk8 z+G2Fu0gHw{!AjicK(XxMr8|J^n^bk*r{n{<00X59vsG_uYwl-fmq*J{$k}MQ^(0=^ zrzPn~r@6Z2Qd9*MYhQE;+H^}v_i&y}ymF2&N#}`3x+Gvt7$={$vj}F+UX~T`YVKEv z0o1R~)4!G<aZ`$vQgV72tx(^R)Bg`(-SQBvaj1QsuG#2B7|ejBrQ+5dov;Tw1~kD1 zg@rW@4aEghuol_k#OE&l^*IOuKzUwPmi{-NW3UQu$45wjuA^pWG8BQY=V_Ib08fiW zF-6|l*_lI)9T}iiqDeY;<q~e0oK^lLFEncuV6cjSl5t+!_H`#O5v*=uZ7JyJIwqS! zE0>DeG>e}hgjLl68!ZCG>s(x6unl2RNK!|02@1xOF-d;`Sn!m1mqqDQP0b$@EXWB4 zD@+L5J3CKZ6&9`nf%W|S9wyubb}B#@9>M`vOtVA*Ib`fa?6Fnjjuf#(z`5>eNlOP5 z%K^v~=#%BdKG6S701)Hb!znOX91RzOIEUim#r}VvU<rtiNRzl$SsqFYFwF?5NJwZT zIOZ>Zx5h=}Yy}|nfC)K-Q<Rf4g8%L3?@z|S(Dj;z&vmH~BO@d89@I&r-baVv4f66F zcTKmO)L$cwSHQCuuo-Ou+STGp*E{}mK9&VvV*x+w2;KO~N=kJd0yueldtL-^EEmgJ zhrwVpnE(FE5crpvu*-o4)EKW(<6CPjOcAT_Q}PdnwsS7l>mMJPg#Yg&^S|kxGb&C1 z`$sU;sG69XYCt>;(5SEf@tG*u&=KIgkG$XmY(jG0peh6YF9Fb{Sp)>2A^q=%KwVDa zgMeuT#+)b+zA9kZXTjj30g%h(<L+($`YlqkOB0;@{QO9A1JGtewtQgO0jzR<%fTxf zLjQuCr>CFr0ZD*qK|xUwxsT31UsloJo&7bf`VV=Y1X~$%KT8d&A)L4}Fe?1aaq&q< z{(b)Pa9^4cpQ&vF$D@?PU#<ZLw-@cP<k3GrnWZKqJi>(2X?%6(2TjT*7G$3`s(I>l zU}AvUND8EP4+>;JRqzADiY$^UDl$?sQz1D?CqTKv`rJe-(hm!po*cAoIhGBu%c7z{ zsp-!vQ2A?CbA^V62K-9+7YlV>b`~sKuFPd^SnmJW7g{(_NHL&(8xzy>;eMd0n2pwC z*)bjfONTbyQ&3RwT?QIC0Pf+A$H&KE#0d;jk(2j6Wj=lZhTctyVTqpIQm^I1E6ylu zJr9Y8$+%X4WZG;Ql`-3hoNfd{BkU@_SdA3zS-VsxLyn%m;yNcXA&kQ{U;PFOgbJ9G zXoQ_^0O59ScP=&a<HuK^d>Q}OTYz^Jr|Zt<=H@24`i&60C-{KU4Fbt~PEIAoat&B) zB7*o3h)cqrOV+~<jdv-{4Q-WfJNECkX4_$vzQMT|e}A{$|Hp@k<9|6pM<e@{|ME>8 zp4mPE<|icQLE;yPI^0_W#Z=kT4Aug+IYDncf+hD&jEGR=P{rQ<A13I7>Mlg21LW9d zxI}s}cOGy20ad|<G5_X4EVmv$al6a-R%CMWnD9w~9!S_wgP#Q84j)KK*@MYI)Vp_k z)m@exsSVLW=&~&u&&>g~UpTb);q^NBE|9;mdMaqS9lifGH#9ho*7E>pBjC}2kU!<O zUz)MqJ-|jFTnAOlE_lGMz;Yh}8w0{q#QN*gt<$r!^o~c6IdufGBtmvCvl^)fkyi`y z0|QH|a=qDdLFkoH**5et?_qy71Zovde#-vO^`u;BKNEPMokDXwr~}tBo3ZaOeO3Um z6Hx|hRrE&p^>6Gy0xurlZ60>^9DjCEesCtzhn_q{M}c6wfBet{EHm6|lYMGmtau=+ zBdWVh+!q{|;676H!B_x+1cNZt4i=v;Fe4lN#>I|HJm1@u#JV4$%o_sE*WmXS|E%DS z;C4&5yJu*67XnBbY!D?5zP7`Z4}634fqXF+zpv-e%G@k8m(-_^g{k5-VAC?B7DXu^ zi(z1=O#=d|{AW5F$6rTC;CKA~8h1#iihI#oRYO%N42)UI^-Vg`c;{f2$I<vGJ$u&A z&d*;C`W`|a7?<{=UOy)1R$0T~B^}TlJbL~-YYo(9`|%N_GutbytitHBJ$y_|3=I%m znnCYs^qNj&5Fv^}OzGiDsuQe9prrx&L&UgevN3oQ+iuDS<}AjDje=+AJAO;rB~l)@ z_35eKD^{$I;RG`?Gl(YvU_fz)pRj`^rQ55<=b`j9JgnX+x*?CGh=D1Xk4#A*9Gm*x z7mI6XPGTq->w4c|Y6RGP5FuT8!PZrFfajk*cyC?n-Iu922Q1g!4i868>s>J?sk1)$ zoDvcYi5**s1JZ!qjlk-$i-=S|+84pLCK-Vn1Jazk16p6#x#SmLu*<J$`9py5Un1Sg z_1ksD02W;p6%~b?oLxXFuK%zsSi>FR<BmWe+}PB_Ycnc%$98;asTURZpIOXzz@Mjo z0Ux>0!6T!t0xs047fZv4Oc<t{gI|i?lVH>G>BS0!%;j9Q-jCr)@8G$#E8cV@3h<eA zCP^>jsBrhyW(Vc!g8v%5taiBcXDI<!eGR_Gjrp_);lf+yuXVq=_vES-?CqyXhfN~D zD3FyM%t;*C8=9aIp6wDCOMt|;4p0(7%_(|X2gF+o1EKj^<v<3mf5_m~2<t;z2qj1O z<)|O;J|*dCc^v%<4hv3IKl=4!wjLb&5(7IZ{X+GY)>iW`Vyvuz@$vCS;;bwzpZ<A# zQw47B?zf(IU)@^4;mDcGs;0gM0s|T>goLwmV);Qc9Y?BCKIU>c)f+DaGfKL0rUIB0 z<a?2PFrVADwEoFA|3A@YZVu@kb<|p~9a?_hJ$#po_J*&CQ9vNB&X;J&ws^z}$x;GB zlO}f{q{$FGGs<@8t8VEWw=n?)2r<nqKg21=wivq%QPWa|mk1=vE-#U;LOhf7g*%8Z zxm^hV4n7`OmEet*Jxj>X$^RPIVF0ny&3!ygK%I5@STo3j+X2QZ2Q7-;+d|gA#6%M| z_DjolXiBil>iL64;)Ai{=qaI|f3D9g$^H~rs_4TZHp^knaX{=ioEHaieiF|aRzAqt zZ{4`~qQvg!J(%3F@e<y(g&x~BQ}CGY+`D)0HH4ZCJj7EV@4o|m{3&~fYWbQb04t{k zoNY;DRFt9U&V+A3W@aWZFiFgk>sKrmgv3Ff+zczd^%X(8Z(v*&Z9ifXM*}&kW(0@o ze3liUoTjiwH4PV;gdU@Y*dVXaq>XB7^=CtX0d=$3_NbAz*XF?HK7*)h_v*$5AJV=^ z3p&kaph}((Z8GH4C~DNmw7d6M3=PI9o$58Ng@q7~BTuavWMl^M@C1MLW^@YsQ&a(C zHw@}JMu6;;R#jC!%m;7*Dz)rD2p*cHWojK%Uoq;1hW_CBVQPh|9jkyN5=XZhAHdAQ zN1SF2Epk17;5S!rg$M2z?X<i}b&`+2k4DPi(%>)fb7sbbm_dA09fb6UMsNlEpTBPX zIJNH$tAI49@XvE|bEhe$iZ@@<^X&OfDWId=X%F>;&3);I4=;lrzpT)0!<6;en4rXC zkM%{Y;+zwxpK0MZhaHZmNUl5wST7BbYxy9u8d`7`P*v_)fduUBsuwFZU=M?UJevVO z`x+7_gF;OL^@W}1pRcBr%yj*1g;BFlJP!78(sP~3$Yn6yy45Q<^_p*?A=02^dAp0} z9SUW=d?*sDNA#@>PhTYr?sd|Or2?Q@4+<*I{>NJ3|J*k)z3HDllcy{OQ596I)}LEk zi2$1l8a~scUfyH$?(^5+&RoA^%&j}tY}px+>;@|{G~EHTBnCvcP|AU}Gy_;W0oay< zO3lmT{3M^?AX~73P>W$*SI*liha-PJwHSgIex8yC`vN17=OxI)dj}G1CA=Ci1hMV4 z55M#zaSHeBL1V+n$sif*ZSX#UbrLG<$Ka7N!HfZeQR&H(Cul`*uVX_i*x9YJF-*k~ zH+(ZKCcALqF8nE`-)DtM1KeT^sZRj~_W%I>vk~40OfZ~8W{d<d=<J{%O#-R(R#4RK z;`dkFAVCh~Q&F%fG2L1H*$#Uv0Ij1@Xg%G}qM%oWW>08Q^8rf+q_PTZZ6Kg<gYa7) zKv#&B5j2Xfudgpeta)%b9>K||Ay$J(1!6+GCQ7w8iHTZAJ77=3n;?(GB`~9$0N)xE z)SpgqSs|RPb5xuY(BqJ8`&A19A_^Ay2_UFjuDU}+2j3F^bFl;d=++0&0Ri4$$ZBHV z_o)zC`DNwg7Poh?I6U&vf`?BU^sOKpGvF8>4_9r3I5^%KTQ)GXq0BK~h<|*EOS2I+ zXYh+gu<M1W=aZzEZOz&#aO&CF-L>zLy0iwod~$MfhtWN$^h0HWi;*n**_&2tlT9!~ zv50Ng5iv~H?*BI0nC*bs1i3XkSoD!Myn48eD+c8(J?yuo8493@85V@MaPmU%5F()y zZUpa~?ZiWvjp$Q=W{)@zK&a-6K^$>zR!)<53NLcP7>D*&Ls*$cU8lkj<nZ~<HL#`l z00Rr)?H`mjXJ%*Dp&DaUsQyKra}!HQNSFY%)#?{3vxopcOkjKhW;;Sei9Z7-jOj3f zH#fE2e`R32!q7*DE2D4`h+zr<WgQT|9W^zgZ#gQtJAJA6MnuRun6HIssu2c9Pu353 z0=>-ou&X8|B?XtIuEzpnjj*9@20=58hzn<&j?0K`{XhZKA#~(ZL}`3PepmRmaif#q z^W=5^^PJ$*<HW&qac{ut-9N-tJ1;ha=VS|fI$)Y&YZttYFi^qKNOYDLY%EtdH=8U< z?^HCp1Ej<eYhAvEIBB&q#}R}NRxW<7CW&r!8hs}#D+`7&-*|}GIXI5(fczFQ5jqry zSD*)HaQaoR^J1*2-v1opm$kOJ$$a%H0V!#Ow9fihID{a?Fa$`+6G}p)V5h{&%Nq%s zhF~`3Pj=vIbPPenAY6Q4FXF2)l#yF<fWmcn`bi;K7HmILQG0A=z%~YMuo-mMqc4x6 zXf6O!{@DCbfu655y2fwc<Bs)@M(8nk=;<j6-#&zKR1*TeH^G_b$Gj09*&gH;)V_nw z<2fIQONxQvZB)jCe+s@k@YR|C&|VatJu$uLjzGQ*_~nQrrgdOa=i@^F1*}>Y(u=#T z+((a%jEs&g9GzEIR;Cg6boD*-_R@PW8UcBMq}u@8Mk2i5=pz(zBk*1@u)TGyp96Hv z;L%~GYKb1QhKIQyf<q6I+5tTJ(YE&y2GP^+Ohp{a%FZ_bvcj!}dp8MIfYV?H_Om6D z3G4+UAk6NDIt_(5#_CQVxM4x!1+lk;pl*6l%QoNJ6QWVX)-DNbWss^Ttdsu87l+QS zEDYbY{W0u)pUhqnl7PKd?%Tf~gY{wV*Kzm^Z``;sfkgALDFH*iJK3A7ap2np78U4` z@d7;w#MS7sZA~5AKXxL@(P#|xg^04#YP^QV2X-fYU_^x&bn!XOKY?M35M|O9%yS@+ zD>P^bIE6+1>*3tikd!=zOe-*)3_!gNUIlAVTVC&1Rzz}FC7N_#OMoEeVd&U{`I`9Q zA7wDA>WLOsh5g<z^m9O=6M7hjB3e#9<d~pP6n$wxt?kq!^;q0RTl)%_uqYi)#Daei zwA*M@*j)pItqFh`<k?mpn25myjEp)kb7LVb+ieBNdnd$Ntw85#gSZxfq9bs0h2cP@ z2R|fW?`d8H?_BydbsgL-=2vE_0vNJZ!d+MX`jqGj<5nv_yro438Imx;$pCT%!SN#$ zT*U=-Bwc}kNnl=nAT50-zI$)IjT_U@fQ-y53=FB!!ubENs(^%u7{VEa0C^fFTO&ZE z=IMTY2m3*E9Ug+pnY`jo!-JhQIL!LE$4YYlVmQ6nyCGeVFa*d03VcMOVcMDG);o8N zaoHDI-Wo=vz#^^)@{c`0%D-bZ{0*jxWSvg7YPj&>Vlz@mx<C$wjEuGCHY5))U<n}y zuLXuL1AItU#XnczW@lkeXav7YATfoUJV&+qoudF~&Sdsb1|o}`QZKcjM7aBAT`8V_ zdLDM(oJ-HwL#F^{JOpOXy-ISJ&ZQ9pD1~&nzq@)HY2UjK;Lrb^1#|lm;Vh3R&82qJ S7BHA5cqFCp;PXBGSN{!JprBd+ literal 0 HcmV?d00001 diff --git a/WordSim353/data/german_gurevych_zesch/gur_350.tsv b/WordSim353/data/german_gurevych_zesch/gur_350.tsv new file mode 100644 index 0000000..084f085 --- /dev/null +++ b/WordSim353/data/german_gurevych_zesch/gur_350.tsv @@ -0,0 +1,351 @@ +#WORD1 WORD2 Value POS1 POS2 +Absage ablehnen 3.5 n v +Absage Stellenanzeige 1.88 n n +Affe Gepäckkontrolle 0.13 n n +Affe Makake 4 n n +Afrika historisch 1 n a +Agentur Irrtum 0 n n +Airbag Kopfairbag 3.88 n n +analysieren Analyse 3.88 v n +Ansehen Schaden 0.88 n n +Arbeitssuchender Bewerbung 2.75 n n +aufklären erklären 2.5 v v +Aufpreis Grundpreis 3.13 n n +Aufstieg Erfolg 3.25 n n +aufzeichnen schreiben 2.75 v v +Aussage Auftritt 1.38 n n +Aussage Rede 2.38 n n +Aussage sagen 3.38 n v +Aussterben bedrohen 2.13 n v +Auto fahren 3.5 n v +Bayern Bayerisch 4 n a +Bayern Deutschland 3.5 n n +Bayern weißblau 2.75 n a +Beamte Amt 3.63 n n +beginnen dauern 2.38 v v +begründen ausgehen 0.88 v v +Behörde Vorschrift 2.75 n n +beinhalten umfassen 3.25 v v +Benedetto Benedikt 3.63 n n +Benziner Dieselversion 3 n n +Berlin Berlin-Kreuzberg 3.38 n n +Berufstätigkeit Erfolg 2.13 n n +beschleunigen übertreiben 1.13 v v +beschuldigen Mitschuld 2.5 v n +Besucher bekommen 1.38 n v +Bewerbung Job 2.38 n n +Bild ähneln 1.38 n v +Bild Grafik 3.13 n n +Bild Röntgenaufnahme 3 n n +Bild Symbol 2.13 n n +Bild visuell 3 n a +Böse Gott 2 n n +Botschaft sichtbar 0.25 n a +Büro Schreibtisch 3 n n +Demut demütig 4 n a +demütig selbstbewusst 1.88 a a +Design Optik 2.63 n n +Designer Eleganz 2.63 n n +deutsch Deutscher 3.88 a n +Deutscher Bundesbürger 3.5 n n +Deutschland Europa 3.25 n n +Ding Gegenstand 4 n n +Doktorandin Abteilung 1.88 n n +Doktorandin Dissertationsthema 2.63 n n +Drehmoment drehfreudig 1.75 n a +dringend rasch 2.38 a a +Durchsicht sehen 2.75 n v +einfach komplex 2.75 a a +Einkommen Gehaltsunterschied 2 n n +Einrichtung Interior 3.5 n n +Einsamkeit allein 3.5 n a +einsteigen aussteigen 2.75 v v +Eleganz klobig 1.38 n a +Eltern Vater 3.5 n n +entgehen bewundern 0.13 v v +entwickeln Entwicklungschef 2.63 v n +Erfolg erfolgreich 4 n a +Erfolg Maßstab 1.25 n n +erforschen herausfinden 3.13 v v +Erhalt bedroht 1 n a +erkennen sehen 3 v v +erklären begründen 2.5 v v +erklären machen 0.5 v v +ernst ironisch 2 a a +erst Ursprungsort 1.38 a n +Erwachsener Geist 0 n n +Erwachsener Kinder 2.63 n n +erwarten klären 0 v v +fahren Automobil 3 v n +filtern herausfiltern 3.63 v v +filtern selektieren 3.38 v v +finden herausfinden 3 v v +Fisch schwimmen 3.38 n v +Flaschenöffner Küchenwerkzeug 3.63 n n +fokussieren Aufmerksamkeit 2.63 v n +folgen sortieren 0.25 v v +Form Farbe 2.13 n n +formulieren Formulierung 3.88 v n +Formulierung Stiftung 0.13 n n +Forscher Wissenschaftler 3.88 n n +Frage Antwort 3.25 n n +Franzose Deutscher 2.38 n n +Frau Familie 2.75 n n +Frau Mann 3.25 n n +Frühlingssonne kitzeln 1.25 n v +Frust frustrieren 3.88 n v +Frust Leidensgenosse 1.88 n n +Frust Rache 1.88 n n +geben nehmen 3.25 v v +Gefühl Frau 1.75 n n +Gegenwind kritisieren 0.5 n v +Gehege Zoo 2.63 n n +Gehirn Kortex 3.25 n n +Gehirn verstehen 2.13 n v +gemeinsam leben 1 a v +Generation Jugendlicher 2.5 n n +geografisch praktisch 0.13 a a +Gepäckkontrolle Flughafen 3.13 n n +Gepäcknetz Staumöglichkeit 2.25 n n +Geschirrdurcheinander Menschenleben 0.5 n n +Geschlecht Mann 3 n n +Gewalt Frieden 2.63 n n +Gewalt Kämpfer 2.63 n n +Gewicht Karriere 0.38 n n +Glaube natürlich 0.5 n a +Glück glücklich 3.88 n a +Gorilla Schlange 1.25 n n +großzügig schrumpfen 0.5 a v +gründen Arbeitsgruppe 0.75 v n +Grundlagenforschung verstehen 1.63 n v +Hand Erwachsener 1.38 n n +Hand Mensch 2.75 n n +heimisch Urwaldhaus 1 a n +helfen unterstützen 3.38 v v +herausstreichen öffentlich 0.5 v a +Herkunft Geschlecht 1.38 n n +Hintergrund Fassade 2 n n +Hirn Gehirn 3.88 n n +Hirnsignal Neuronenaktivität 3.5 n n +Hoffnung Resignation 2.75 n n +Honorarbasis bezahlen 3 n v +Hunderttausend Menge 3 n n +Hunger Armut 2.88 n n +Inaugurationsmesse Premiere 2.13 n n +informieren erfahren 2.63 v v +Innenspiegel Auto 3.13 n n +Internetseite herunterladen 3.25 n v +italienisch vergehen 0 a v +Jäger Wald 2.75 n n +Kaffeetasse parallel 0 n a +Kaffeetasse Tasse 3.75 n n +Kamera TV-Kamera 3.75 n n +kämpfen idyllisch 0.13 v a +kämpfen Veterinär 0.38 v n +Karriere hinaufklettern 2 n v +Karriere Risiko 1 n n +Kind Familie 3.38 n n +Kompaktvan Modell 2.5 n n +Kopfairbag Seitenairbag 3.25 n n +Krankheit reißen 0.25 n v +Krebserkennung Röntgenaufnahme 2 n n +kühl hübsch 0.38 a a +Kulturwissenschaft Grafiker 0.63 n n +lachen leben 1.63 v v +lassen prägen 0.25 v v +laufen bleiben 1.25 v v +leben hellen 0.13 v v +leben Tod 3.25 v n +Lebensbedürfnis ansiedeln 0.38 n v +legen Tisch 1.13 v n +lernen gleichzeitig 0 v a +Lied singen 3.38 n v +Linguistik Wissenschaft 3.5 n n +Luft Leben 2.75 n n +Lupe suchen 2 n v +lustig Witz 3.25 a n +machen anfertigen 3.63 v v +machen ausüben 2.5 v v +Macht Reich 2.5 n n +Mai Januar 2.88 n n +Mann Geschäftspartner 1.5 n n +männlich Weiblich 3.13 a a +Marktl Bayern 2.25 n n +Mehrarbeit Workaholic 2 n n +Meinung Überzeugung 3.13 n n +Mercedes Premium-Hersteller 2.63 n n +Minister Außenminister 3.38 n n +Minister Ministerpräsident 3.38 n n +Minister Politiker 3.25 n n +mitteilen Nachricht 3 v n +moderat extra 1.25 a a +modern sportlich 1.25 a a +momentan kommend 1.38 a v +Monate alt 2.25 n a +Montag November 2.38 n n +Motor Hubraum 2.75 n n +nachgehen untersuchen 2.75 v v +Natur künstlich 2.63 n a +Niedersachsen Landesverband 1.63 n n +niederschmetternd positiv 1.63 a a +Objekt Gegenstand 3.88 n n +objektiv subjektiv 3.13 a a +pädagogisch weitläufig 0.5 a a +Papst Kirche 3.38 n n +parallel linear 1.75 a a +Pass Reiseschutzpass 2.75 n n +Petersdom Inaugurationsmesse 2.63 n n +Pinguin baden 1.5 n v +plätschern Wasser 2.88 v n +Platz aufgebläht 0.13 n a +Platz Petersplatz 3.13 n n +Pontifikat Papst 3.38 n n +Post Portokosten 3 n n +Premium-Hersteller Opel 1.63 n n +Premium-Hersteller VW 2 n n +Problem Schwierigkeit 3.25 n n +Projekt Aktion 2 n n +Prozentzeichen Symbol 3.38 n n +Prüfung Zeugnis 2.5 n n +Punktverlust Platz 1.13 n n +Ratzinger Papst 3.38 n n +Relevanz relevant 3.88 n a +riesig üppig 2.63 a a +rot-weiß weißblau 2.75 a a +sachlich Seriosität 2.13 a n +sagen erklären 2.13 v v +sagen mitteilen 3.13 v v +Sandwich-Konzept Sicherheit 0.5 n n +schauen sehen 3.75 v v +Schleusung Betrugshandlung 2.13 n n +schließen Überlegung 0.88 v n +Schrank Küchenschrank 3.38 n n +Schwabe sparen 2.75 n v +Schwabe Stuttgarter 3.38 n n +Seitenansicht A-Säule 0.88 n n +Selbstinszenierung Beziehungsarbeit 0.5 n n +serienmäßig extra 2.13 a a +Sicherheit Frontalkollision 1.63 n n +Sicherheit klobig 0.25 n a +Sohn aussteigen 0 n v +Sohn Vater 3.38 n n +Spitze allein 1.13 n a +Spitze hoch 2.25 n a +sportlich Interior 0 a n +sportlich teuer 0.38 a a +stark Gehaltsunterschied 0.13 a n +stark Kämpfer 1.88 a n +Steckdose komplex 0.13 n a +Steckdose Stern 0.13 n n +Stellenangebot sehen 0.38 n v +Stellenangebot Wochenzeitung 2.25 n n +Stellenanzeige Bewerbungsgespräch 2.25 n n +Stellenanzeige rasch 0.5 n a +Stoiber drehfreudig 0.25 n a +Stoiber Ministerpräsident 3.13 n n +Studie Dissertationsthema 1.88 n n +Studie Ergebnis 2.75 n n +Studierende Abteilung 1.63 n n +Studierende Note 2.38 n n +Studium arbeiten 2.63 n v +Studium Beruf 3 n n +Studium Deutscher 0.25 n n +Studium Europa 0.5 n n +Studium Gegenstand 0.88 n n +Studium studieren 4 n v +suchen Bundesbürger 0 v n +suchen finden 3 v v +Suchmaschinenbetreiber Eleganz 0.25 n n +Suchmaschinenbetreiber Linkstatistik 1.75 n n +Suchstrategie Optik 0.25 n n +Suchstrategie suchen 3.5 n v +summieren selbstbewusst 0.13 v a +summieren teuer 0.88 v a +Tag demütig 0.25 n a +Tag Donnerstag 3.38 n n +Tag Leben 1.5 n n +Tag Schreibtisch 0 n n +Tag sichtbar 0.63 n a +Tag Stunde 2.75 n n +Tastatur Gott 0 n n +Tastatur Suche 0.63 n n +Tätigkeit Arbeit 3 n n +Tätigkeit visuell 0.13 n a +teuer kostspielig 3.88 a a +teuer Symbol 0.25 a n +Tier Natur 2.63 n n +Tier Röntgenaufnahme 0.25 n n +Tierpark Giraffe 3 n n +Tierpark Grafik 0.5 n n +Tod ähneln 0 n a +Tod Beerdigung 3.25 n n +Topmanagement Job 2.5 n n +Topmanagement Unternehmen 2.75 n n +Traurigkeit bekommen 0.13 n v +Traurigkeit Heimgang 1.13 n n +überzeugen Mitschuld 0.5 v n +überzeugen zeigen 1.5 v v +Überzeugung übertreiben 0.63 n v +Überzeugung Zweifel 2.63 n n +Umfrage Erfolg 0.13 n n +Umfrage Quartalsumfrage 2.88 n n +umklappen Berlin-Kreuzberg 0 v n +umklappen flachlegen 1.63 v v +Unternehmen Dieselversion 0 n n +Unternehmen Firma 3.63 n n +untersuchen Benedikt 0 v n +untersuchen suchen 2.5 v v +Untersuchungsausschuss aussagen 1.88 n v +Untersuchungsausschuss umfassen 0.38 n v +Van Sports-Tourer 2.38 n n +Van Vorschrift 0.25 n n +Vatikan ausgehen 0.13 n v +Vatikan Katholik 3.25 n n +veranstalten betreuen 1.38 v v +veranstalten dauern 0.75 v v +verantwortlich Amt 2.25 a n +verantwortlich zuständig 3.63 a a +vergangen damalig 3.25 a a +vergangen weißblau 0 a a +Vergangenheit alte 2 n a +Vergangenheit Deutschland 1 n n +verhindert Bayerisch 0 a a +verhindert Beihilfe 0.75 a n +verkaufen bezahlen 2.5 v v +verkaufen fahren 0.13 v v +Vernehmung bedrohen 0.75 n v +Vernehmung vernommen 3.63 n v +versäumen sagen 0.13 v v +versäumen überprüfen 0.13 v v +verschicken Post 3 v n +verschicken Rede 0.25 v n +versichern Auftritt 0.13 v n +versichern bedauern 0.5 v v +viel groß 2 a a +viel schreiben 0.38 a v +Volierenzelt Erfolg 0 n n +Volierenzelt Käfig 2.38 n n +vorankommen Entwicklung 2.5 v n +vorankommen Grundpreis 0.25 v n +weit Bewerbung 0 a n +weit erklären 0.25 a v +weit nahe 3.13 a a +weit wegrennen 1.5 a v +Welle Schaden 1 n n +Welle Surfer 3.13 n n +Widerspruch Analyse 1.13 n n +Widerspruch Gebiet 0 n n +Wien deutschsprachig 3 n a +Wien Kopfairbag 0 n n +Wirtschaftsprofessor Irrtum 0.38 n n +Wirtschaftsprofessor Professor 3.63 n n +Wirtschaftsuniversität Abteilung 1.75 n n +Wirtschaftsuniversität historisch 0.63 n a +Witz Gepäckkontrolle 0.25 n n +Witz Joke 4 n n +Witz Kopf 1.13 n n +Witz Makake 0.13 n n +Zebra Stellenanzeige 0 n n +Zebra Tier 3.25 n n +Zielstrebigkeit ablehnen 0.25 n v +Zielstrebigkeit Erfolg 2.63 n n diff --git a/WordSim353/data/german_gurevych_zesch/gur_350_reduced.tsv b/WordSim353/data/german_gurevych_zesch/gur_350_reduced.tsv new file mode 100644 index 0000000..e0265a0 --- /dev/null +++ b/WordSim353/data/german_gurevych_zesch/gur_350_reduced.tsv @@ -0,0 +1,284 @@ +#WORD1 WORD2 Value POS1 POS2 +Absage ablehnen 3.5 n v +Absage Stellenanzeige 1.88 n n +Afrika historisch 1 n a +Agentur Irrtum 0 n n +analysieren Analyse 3.88 v n +Ansehen Schaden 0.88 n n +aufklären erklären 2.5 v v +Aufpreis Grundpreis 3.13 n n +Aufstieg Erfolg 3.25 n n +aufzeichnen schreiben 2.75 v v +Aussage Auftritt 1.38 n n +Aussage Rede 2.38 n n +Aussage sagen 3.38 n v +Aussterben bedrohen 2.13 n v +Auto fahren 3.5 n v +Bayern Bayerisch 4 n a +Bayern Deutschland 3.5 n n +Beamte Amt 3.63 n n +beginnen dauern 2.38 v v +begründen ausgehen 0.88 v v +Behörde Vorschrift 2.75 n n +beinhalten umfassen 3.25 v v +Benedetto Benedikt 3.63 n n +Berufstätigkeit Erfolg 2.13 n n +beschleunigen übertreiben 1.13 v v +beschuldigen Mitschuld 2.5 v n +Besucher bekommen 1.38 n v +Bewerbung Job 2.38 n n +Bild ähneln 1.38 n v +Bild Grafik 3.13 n n +Bild Röntgenaufnahme 3 n n +Bild Symbol 2.13 n n +Bild visuell 3 n a +Böse Gott 2 n n +Botschaft sichtbar 0.25 n a +Büro Schreibtisch 3 n n +Demut demütig 4 n a +demütig selbstbewusst 1.88 a a +Design Optik 2.63 n n +Designer Eleganz 2.63 n n +deutsch Deutscher 3.88 a n +Deutscher Bundesbürger 3.5 n n +Deutschland Europa 3.25 n n +Ding Gegenstand 4 n n +Doktorandin Abteilung 1.88 n n +Doktorandin Dissertationsthema 2.63 n n +dringend rasch 2.38 a a +Durchsicht sehen 2.75 n v +einfach komplex 2.75 a a +Einrichtung Interior 3.5 n n +Einsamkeit allein 3.5 n a +einsteigen aussteigen 2.75 v v +Eleganz klobig 1.38 n a +Eltern Vater 3.5 n n +entgehen bewundern 0.13 v v +Erfolg erfolgreich 4 n a +Erfolg Maßstab 1.25 n n +erforschen herausfinden 3.13 v v +Erhalt bedroht 1 n a +erkennen sehen 3 v v +erklären begründen 2.5 v v +erklären machen 0.5 v v +ernst ironisch 2 a a +erst Ursprungsort 1.38 a n +Erwachsener Geist 0 n n +Erwachsener Kinder 2.63 n n +erwarten klären 0 v v +fahren Automobil 3 v n +filtern herausfiltern 3.63 v v +filtern selektieren 3.38 v v +finden herausfinden 3 v v +Fisch schwimmen 3.38 n v +fokussieren Aufmerksamkeit 2.63 v n +folgen sortieren 0.25 v v +Form Farbe 2.13 n n +formulieren Formulierung 3.88 v n +Formulierung Stiftung 0.13 n n +Forscher Wissenschaftler 3.88 n n +Frage Antwort 3.25 n n +Franzose Deutscher 2.38 n n +Frau Familie 2.75 n n +Frau Mann 3.25 n n +Frust Rache 1.88 n n +geben nehmen 3.25 v v +Gefühl Frau 1.75 n n +Gegenwind kritisieren 0.5 n v +Gehege Zoo 2.63 n n +Gehirn Kortex 3.25 n n +Gehirn verstehen 2.13 n v +gemeinsam leben 1 a v +Generation Jugendlicher 2.5 n n +geografisch praktisch 0.13 a a +Geschlecht Mann 3 n n +Gewalt Frieden 2.63 n n +Gewalt Kämpfer 2.63 n n +Gewicht Karriere 0.38 n n +Glaube natürlich 0.5 n a +Glück glücklich 3.88 n a +Gorilla Schlange 1.25 n n +großzügig schrumpfen 0.5 a v +gründen Arbeitsgruppe 0.75 v n +Grundlagenforschung verstehen 1.63 n v +Hand Erwachsener 1.38 n n +Hand Mensch 2.75 n n +helfen unterstützen 3.38 v v +Herkunft Geschlecht 1.38 n n +Hintergrund Fassade 2 n n +Hirn Gehirn 3.88 n n +Hoffnung Resignation 2.75 n n +Honorarbasis bezahlen 3 n v +Hunderttausend Menge 3 n n +Hunger Armut 2.88 n n +informieren erfahren 2.63 v v +Innenspiegel Auto 3.13 n n +Internetseite herunterladen 3.25 n v +italienisch vergehen 0 a v +Jäger Wald 2.75 n n +kämpfen idyllisch 0.13 v a +kämpfen Veterinär 0.38 v n +Karriere Risiko 1 n n +Kind Familie 3.38 n n +Kompaktvan Modell 2.5 n n +Krankheit reißen 0.25 n v +kühl hübsch 0.38 a a +Kulturwissenschaft Grafiker 0.63 n n +lachen leben 1.63 v v +lassen prägen 0.25 v v +laufen bleiben 1.25 v v +leben hellen 0.13 v v +leben Tod 3.25 v n +legen Tisch 1.13 v n +lernen gleichzeitig 0 v a +Lied singen 3.38 n v +Linguistik Wissenschaft 3.5 n n +Luft Leben 2.75 n n +Lupe suchen 2 n v +lustig Witz 3.25 a n +machen anfertigen 3.63 v v +machen ausüben 2.5 v v +Macht Reich 2.5 n n +Mai Januar 2.88 n n +Mann Geschäftspartner 1.5 n n +männlich Weiblich 3.13 a a +Marktl Bayern 2.25 n n +Mehrarbeit Workaholic 2 n n +Meinung Überzeugung 3.13 n n +Minister Außenminister 3.38 n n +Minister Ministerpräsident 3.38 n n +Minister Politiker 3.25 n n +mitteilen Nachricht 3 v n +moderat extra 1.25 a a +modern sportlich 1.25 a a +momentan kommend 1.38 a v +Monate alt 2.25 n a +Montag November 2.38 n n +Motor Hubraum 2.75 n n +nachgehen untersuchen 2.75 v v +Natur künstlich 2.63 n a +Niedersachsen Landesverband 1.63 n n +Objekt Gegenstand 3.88 n n +objektiv subjektiv 3.13 a a +pädagogisch weitläufig 0.5 a a +Papst Kirche 3.38 n n +parallel linear 1.75 a a +Pinguin baden 1.5 n v +Platz aufgebläht 0.13 n a +Platz Petersplatz 3.13 n n +Pontifikat Papst 3.38 n n +Problem Schwierigkeit 3.25 n n +Projekt Aktion 2 n n +Prüfung Zeugnis 2.5 n n +Punktverlust Platz 1.13 n n +Ratzinger Papst 3.38 n n +Relevanz relevant 3.88 n a +riesig üppig 2.63 a a +sachlich Seriosität 2.13 a n +sagen erklären 2.13 v v +sagen mitteilen 3.13 v v +schauen sehen 3.75 v v +schließen Überlegung 0.88 v n +Schwabe sparen 2.75 n v +Schwabe Stuttgarter 3.38 n n +serienmäßig extra 2.13 a a +Sicherheit klobig 0.25 n a +Sohn aussteigen 0 n v +Sohn Vater 3.38 n n +Spitze allein 1.13 n a +Spitze hoch 2.25 n a +sportlich Interior 0 a n +sportlich teuer 0.38 a a +stark Kämpfer 1.88 a n +Steckdose komplex 0.13 n a +Steckdose Stern 0.13 n n +Stellenangebot sehen 0.38 n v +Stellenangebot Wochenzeitung 2.25 n n +Stoiber Ministerpräsident 3.13 n n +Studie Dissertationsthema 1.88 n n +Studie Ergebnis 2.75 n n +Studierende Abteilung 1.63 n n +Studierende Note 2.38 n n +Studium arbeiten 2.63 n v +Studium Beruf 3 n n +Studium Deutscher 0.25 n n +Studium Europa 0.5 n n +Studium Gegenstand 0.88 n n +Studium studieren 4 n v +suchen Bundesbürger 0 v n +suchen finden 3 v v +summieren selbstbewusst 0.13 v a +summieren teuer 0.88 v a +Tag demütig 0.25 n a +Tag Donnerstag 3.38 n n +Tag Leben 1.5 n n +Tag Schreibtisch 0 n n +Tag sichtbar 0.63 n a +Tag Stunde 2.75 n n +Tastatur Gott 0 n n +Tastatur Suche 0.63 n n +Tätigkeit Arbeit 3 n n +Tätigkeit visuell 0.13 n a +teuer kostspielig 3.88 a a +teuer Symbol 0.25 a n +Tier Natur 2.63 n n +Tier Röntgenaufnahme 0.25 n n +Tierpark Giraffe 3 n n +Tierpark Grafik 0.5 n n +Tod ähneln 0 n a +Tod Beerdigung 3.25 n n +Traurigkeit bekommen 0.13 n v +überzeugen Mitschuld 0.5 v n +überzeugen zeigen 1.5 v v +Überzeugung übertreiben 0.63 n v +Überzeugung Zweifel 2.63 n n +Umfrage Erfolg 0.13 n n +Unternehmen Firma 3.63 n n +untersuchen Benedikt 0 v n +untersuchen suchen 2.5 v v +Untersuchungsausschuss aussagen 1.88 n v +Untersuchungsausschuss umfassen 0.38 n v +Van Vorschrift 0.25 n n +Vatikan ausgehen 0.13 n v +Vatikan Katholik 3.25 n n +veranstalten betreuen 1.38 v v +veranstalten dauern 0.75 v v +verantwortlich Amt 2.25 a n +verantwortlich zuständig 3.63 a a +vergangen damalig 3.25 a a +Vergangenheit alte 2 n a +Vergangenheit Deutschland 1 n n +verhindert Bayerisch 0 a a +verhindert Beihilfe 0.75 a n +verkaufen bezahlen 2.5 v v +verkaufen fahren 0.13 v v +Vernehmung bedrohen 0.75 n v +Vernehmung vernommen 3.63 n v +versäumen sagen 0.13 v v +versäumen überprüfen 0.13 v v +verschicken Post 3 v n +verschicken Rede 0.25 v n +versichern Auftritt 0.13 v n +versichern bedauern 0.5 v v +viel groß 2 a a +viel schreiben 0.38 a v +vorankommen Entwicklung 2.5 v n +vorankommen Grundpreis 0.25 v n +weit Bewerbung 0 a n +weit erklären 0.25 a v +weit nahe 3.13 a a +Welle Schaden 1 n n +Welle Surfer 3.13 n n +Widerspruch Analyse 1.13 n n +Widerspruch Gebiet 0 n n +Wien deutschsprachig 3 n a +Wirtschaftsprofessor Irrtum 0.38 n n +Wirtschaftsprofessor Professor 3.63 n n +Wirtschaftsuniversität Abteilung 1.75 n n +Wirtschaftsuniversität historisch 0.63 n a +Witz Joke 4 n n +Witz Kopf 1.13 n n +Zebra Stellenanzeige 0 n n +Zebra Tier 3.25 n n +Zielstrebigkeit ablehnen 0.25 n v +Zielstrebigkeit Erfolg 2.63 n n diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-rel.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-rel.txt new file mode 100644 index 0000000..6088767 --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-rel.txt @@ -0,0 +1,253 @@ +Word1 Word2 Score +love sex 8.31 +book paper 7.69 +computer keyboard 8.38 +computer internet 8.23 +telephone communication 8.38 +drug abuse 6.46 +smart student 6.58 +company stock 6.85 +stock market 7.46 +stock phone 1.54 +stock CD 4.04 +stock jaguar 1.54 +stock egg 1.62 +fertility egg 8.38 +stock live 3.69 +stock life 1.85 +book library 8.77 +bank money 8.69 +professor cucumber 0.23 +king cabbage 1.15 +Jerusalem Israel 8.77 +Jerusalem Palestinian 7.85 +holy sex 1.46 +Maradona football 4.92 +tennis racket 8.69 +Arafat peace 3.62 +Arafat terror 5.92 +law lawyer 9.23 +movie star 7.46 +movie popcorn 6.77 +movie critic 6.08 +movie theater 7.85 +physics proton 6.38 +space chemistry 3.77 +alcohol chemistry 4.62 +drink car 0.77 +drink ear 0.38 +drink mouth 6.38 +baby mother 6.23 +drink mother 1.31 +tool implement 7.00 +brother monk 5.31 +crane implement 3.08 +lad brother 5.62 +journey car 5.62 +monk oracle 4.31 +cemetery woodland 2.15 +coast hill 3.15 +forest graveyard 2.00 +shore woodland 3.00 +monk slave 2.15 +coast forest 2.92 +lad wizard 1.85 +chord smile 1.23 +glass magician 1.15 +noon string 0.46 +rooster voyage 0.54 +money wealth 8.38 +money property 5.38 +money possession 6.46 +money bank 7.23 +money deposit 7.46 +money withdrawal 7.38 +money laundering 6.54 +money operation 3.00 +tiger zoo 7.65 +psychology anxiety 7.27 +psychology fear 5.96 +psychology depression 7.31 +psychology clinic 7.46 +psychology doctor 7.98 +psychology Freud 8.46 +psychology mind 8.46 +psychology health 7.35 +psychology cognition 7.50 +planet constellation 7.08 +planet galaxy 7.65 +planet space 8.23 +planet astronomer 7.23 +precedent information 5.54 +precedent cognition 4.15 +precedent law 6.54 +precedent collection 3.92 +precedent group 2.38 +cup coffee 7.65 +cup article 1.85 +cup drink 7.96 +cup food 4.15 +cup substance 3.69 +cup liquid 6.82 +energy secretary 0.92 +secretary senate 3.92 +energy laboratory 4.12 +computer laboratory 4.58 +weapon secret 4.73 +FBI fingerprint 5.38 +FBI investigation 8.15 +investigation effort 5.50 +Mars water 2.65 +Mars scientist 4.31 +news report 8.15 +canyon landscape 7.62 +image surface 4.04 +discovery space 6.50 +water seepage 6.15 +sign recess 1.42 +Wednesday news 1.96 +computer news 4.08 +territory surface 3.96 +atmosphere landscape 3.58 +president medal 3.38 +war troops 7.88 +record number 5.88 +theater history 2.65 +volunteer motto 1.85 +prejudice recognition 2.73 +decoration valor 6.88 +century nation 1.46 +delay racism 1.08 +delay news 1.88 +minister party 2.58 +peace plan 3.69 +minority peace 2.85 +attempt peace 2.35 +government crisis 4.42 +deployment departure 7.81 +deployment withdrawal 6.27 +energy crisis 3.85 +announcement effort 3.08 +stroke hospital 5.88 +disability death 5.15 +victim emergency 6.77 +treatment recovery 7.54 +journal association 3.00 +doctor liability 4.69 +liability insurance 8.48 +school center 5.08 +reason hypertension 0.69 +reason criterion 5.50 +hundred percent 6.69 +death row 5.46 +death inmate 3.92 +lawyer evidence 7.35 +life term 5.35 +word similarity 2.00 +board recommendation 2.50 +governor interview 1.31 +OPEC country 1.92 +peace atmosphere 2.31 +peace insurance 0.69 +territory kilometer 2.46 +competition price 4.54 +consumer confidence 4.08 +consumer energy 4.50 +problem airport 1.92 +car flight 3.46 +credit card 6.38 +credit information 5.65 +hotel reservation 7.59 +grocery money 4.88 +registration arrangement 5.12 +arrangement accommodation 6.54 +month hotel 0.31 +arrival hotel 4.27 +bed closet 2.33 +closet clothes 7.69 +situation conclusion 3.46 +situation isolation 1.88 +impartiality interest 2.65 +direction combination 0.81 +street children 1.54 +listing proximity 1.96 +listing category 6.29 +production hike 1.00 +benchmark index 4.46 +media trading 1.15 +media gain 1.31 +dividend calculation 6.62 +currency market 5.46 +OPEC oil 7.52 +oil stock 5.69 +announcement production 2.38 +announcement warning 6.15 +profit warning 0.77 +dollar profit 6.77 +dollar loss 5.38 +computer software 8.00 +network hardware 7.73 +equipment maker 3.62 +luxury car 5.12 +five month 1.08 +report gain 3.00 +investor earning 6.42 +baseball season 5.31 +game victory 6.54 +game team 7.15 +game series 4.62 +game defeat 5.38 +seven series 2.38 +seafood sea 7.94 +food preparation 5.46 +video archive 3.69 +start year 1.42 +start match 2.08 +game round 4.46 +boxing round 6.54 +fighting defeating 5.31 +line insurance 1.15 +day summer 3.54 +summer drought 5.19 +summer nature 4.62 +day dawn 7.62 +nature environment 8.85 +environment ecology 8.23 +nature man 6.69 +soap opera 5.38 +life lesson 5.69 +focus life 4.46 +production crew 5.38 +television film 6.88 +lover quarrel 5.69 +viewer serial 3.04 +possibility girl 2.46 +population development 4.42 +morality importance 4.46 +morality marriage 4.77 +gender equality 6.27 +change attitude 5.54 +family planning 5.69 +opera industry 3.38 +sugar approach 1.00 +practice institution 3.31 +ministry culture 4.35 +problem challenge 7.81 +size prominence 6.19 +country citizen 6.15 +planet people 5.85 +development issue 4.58 +experience music 4.54 +music project 4.46 +chance credibility 4.12 +exhibit memorabilia 5.85 +concert virtuoso 6.04 +observation architecture 3.62 +space world 5.85 +preservation world 4.31 +admission ticket 7.42 +shower flood 6.19 +weather forecast 7.88 +disaster area 5.04 +governor office 5.85 +architecture century 3.31 \ No newline at end of file diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-sim.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-sim.txt new file mode 100644 index 0000000..ff3e0e5 --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english-sim.txt @@ -0,0 +1,202 @@ +Word1 Word2 Score +tiger cat 8.31 +tiger tiger 10.00 +plane car 5.85 +train car 6.31 +television radio 6.85 +media radio 8.08 +bread butter 7.54 +cucumber potato 5.92 +doctor nurse 8.15 +professor doctor 5.31 +student professor 6.54 +smart student 6.58 +smart stupid 5.92 +stock phone 1.54 +stock CD 4.04 +stock jaguar 1.54 +stock egg 1.62 +stock live 3.69 +stock life 1.85 +wood forest 8.38 +money cash 9.38 +professor cucumber 0.23 +king cabbage 1.15 +king queen 8.46 +king rook 5.92 +bishop rabbi 8.23 +holy sex 1.46 +fuck sex 9.31 +football basketball 7.08 +football tennis 6.46 +Arafat Jackson 2.77 +physics chemistry 7.77 +space chemistry 3.77 +vodka gin 8.15 +vodka brandy 7.85 +drink car 0.77 +drink ear 0.38 +drink eat 6.61 +drink mother 1.31 +car automobile 9.54 +gem jewel 9.31 +journey voyage 9.54 +boy lad 9.46 +asylum madhouse 9.00 +magician wizard 8.77 +furnace stove 7.69 +food fruit 8.15 +bird cock 6.85 +bird crane 8.31 +crane implement 3.08 +lad brother 5.62 +monk oracle 4.31 +cemetery woodland 2.15 +food rooster 2.92 +coast hill 3.15 +forest graveyard 2.00 +shore woodland 3.00 +monk slave 2.15 +coast forest 2.92 +lad wizard 1.85 +chord smile 1.23 +glass magician 1.15 +noon string 0.46 +rooster voyage 0.54 +money dollar 9.08 +money cash 9.38 +money currency 9.54 +money operation 3.00 +tiger jaguar 8.42 +tiger feline 8.46 +tiger carnivore 8.92 +tiger mammal 8.81 +tiger animal 9.06 +tiger organism 6.77 +tiger fauna 4.31 +psychology psychiatry 8.35 +psychology science 6.81 +psychology discipline 6.23 +planet star 8.08 +planet moon 8.15 +planet sun 8.58 +precedent example 6.85 +precedent information 5.54 +precedent cognition 4.15 +precedent collection 3.92 +precedent group 2.38 +precedent antecedent 6.69 +cup tableware 7.54 +cup article 1.85 +cup artifact 3.54 +cup object 6.62 +cup entity 2.08 +cup food 4.15 +cup substance 3.69 +jaguar cat 8.85 +jaguar car 7.35 +energy secretary 0.92 +investigation effort 5.50 +Mars water 2.65 +image surface 4.04 +sign recess 1.42 +Wednesday news 1.96 +mile kilometer 6.92 +computer news 4.08 +atmosphere landscape 3.58 +president medal 3.38 +skin eye 4.69 +Japanese American 6.15 +theater history 2.65 +volunteer motto 1.85 +prejudice recognition 2.73 +century year 6.54 +century nation 1.46 +delay racism 1.08 +delay news 1.88 +peace plan 3.69 +minority peace 2.85 +attempt peace 2.35 +deployment departure 7.81 +announcement news 7.62 +announcement effort 3.08 +journal association 3.00 +doctor personnel 5.73 +school center 5.08 +reason hypertension 0.69 +Harvard Yale 8.77 +hospital infrastructure 5.42 +life death 6.96 +life term 5.35 +word similarity 2.00 +board recommendation 2.50 +governor interview 1.31 +peace atmosphere 2.31 +peace insurance 0.69 +travel activity 4.85 +consumer confidence 4.08 +consumer energy 4.50 +problem airport 1.92 +car flight 3.46 +month hotel 0.31 +type kind 9.31 +situation conclusion 3.46 +situation isolation 1.88 +direction combination 0.81 +street place 6.08 +street avenue 8.77 +street block 7.85 +street children 1.54 +listing proximity 1.96 +cell phone 8.54 +production hike 1.00 +benchmark index 4.46 +media trading 1.15 +media gain 1.31 +dividend payment 8.38 +calculation computation 9.38 +announcement production 2.38 +profit warning 0.77 +profit loss 6.69 +dollar yen 8.08 +dollar buck 9.54 +phone equipment 6.85 +five month 1.08 +report gain 3.00 +liquid water 8.62 +marathon sprint 5.69 +seven series 2.38 +seafood food 8.52 +seafood lobster 8.60 +lobster food 8.37 +lobster wine 2.54 +start year 1.42 +start match 2.08 +championship tournament 7.92 +line insurance 1.15 +man woman 8.38 +man governor 6.00 +murder manslaughter 7.65 +opera performance 7.46 +focus life 4.46 +viewer serial 3.04 +possibility girl 2.46 +population development 4.42 +morality importance 4.46 +morality marriage 4.77 +Mexico Brazil 6.19 +opera industry 3.38 +sugar approach 1.00 +practice institution 3.31 +ministry culture 4.35 +development issue 4.58 +experience music 4.54 +music project 4.46 +glass metal 4.58 +aluminum metal 7.62 +chance credibility 4.12 +rock jazz 6.85 +museum theater 6.00 +observation architecture 3.62 +shower thunderstorm 6.73 +architecture century 3.31 \ No newline at end of file diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-english.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english.txt new file mode 100644 index 0000000..ac41fb3 --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-english.txt @@ -0,0 +1,351 @@ +Word1 Word2 Score +love sex 8.31 +tiger cat 8.31 +tiger tiger 10.00 +book paper 7.69 +computer keyboard 8.38 +computer internet 8.23 +plane car 5.85 +train car 6.31 +telephone communication 8.38 +television radio 6.85 +media radio 8.08 +drug abuse 6.46 +bread butter 7.54 +cucumber potato 5.92 +doctor nurse 8.15 +professor doctor 5.31 +student professor 6.54 +smart student 6.58 +smart stupid 5.92 +company stock 6.85 +stock market 7.46 +stock phone 1.54 +stock CD 4.04 +stock jaguar 1.54 +stock egg 1.62 +fertility egg 8.38 +stock live 3.69 +stock life 1.85 +book library 8.77 +bank money 8.69 +wood forest 8.38 +money cash 9.38 +professor cucumber 0.23 +king cabbage 1.15 +king queen 8.46 +king rook 5.92 +bishop rabbi 8.23 +Jerusalem Israel 8.77 +Jerusalem Palestinian 7.85 +holy sex 1.46 +fuck sex 9.31 +Maradona football 4.92 +football basketball 7.08 +football tennis 6.46 +tennis racket 8.69 +Arafat peace 3.62 +Arafat terror 5.92 +Arafat Jackson 2.77 +law lawyer 9.23 +movie star 7.46 +movie popcorn 6.77 +movie critic 6.08 +movie theater 7.85 +physics proton 6.38 +physics chemistry 7.77 +space chemistry 3.77 +alcohol chemistry 4.62 +vodka gin 8.15 +vodka brandy 7.85 +drink car 0.77 +drink ear 0.38 +drink mouth 6.38 +drink eat 6.61 +baby mother 6.23 +drink mother 1.31 +car automobile 9.54 +gem jewel 9.31 +journey voyage 9.54 +boy lad 9.46 +asylum madhouse 9.00 +magician wizard 8.77 +furnace stove 7.69 +food fruit 8.15 +bird cock 6.85 +bird crane 8.31 +tool implement 7.00 +brother monk 5.31 +crane implement 3.08 +lad brother 5.62 +journey car 5.62 +monk oracle 4.31 +cemetery woodland 2.15 +food rooster 2.92 +coast hill 3.15 +forest graveyard 2.00 +shore woodland 3.00 +monk slave 2.15 +coast forest 2.92 +lad wizard 1.85 +chord smile 1.23 +glass magician 1.15 +noon string 0.46 +rooster voyage 0.54 +money dollar 9.08 +money cash 9.38 +money currency 9.54 +money wealth 8.38 +money property 5.38 +money possession 6.46 +money bank 7.23 +money deposit 7.46 +money withdrawal 7.38 +money laundering 6.54 +money operation 3.00 +tiger jaguar 8.42 +tiger feline 8.46 +tiger carnivore 8.92 +tiger mammal 8.81 +tiger animal 9.06 +tiger organism 6.77 +tiger fauna 4.31 +tiger zoo 7.65 +psychology psychiatry 8.35 +psychology anxiety 7.27 +psychology fear 5.96 +psychology depression 7.31 +psychology clinic 7.46 +psychology doctor 7.98 +psychology Freud 8.46 +psychology mind 8.46 +psychology health 7.35 +psychology science 6.81 +psychology discipline 6.23 +psychology cognition 7.50 +planet star 8.08 +planet constellation 7.08 +planet moon 8.15 +planet sun 8.58 +planet galaxy 7.65 +planet space 8.23 +planet astronomer 7.23 +precedent example 6.85 +precedent information 5.54 +precedent cognition 4.15 +precedent law 6.54 +precedent collection 3.92 +precedent group 2.38 +precedent antecedent 6.69 +cup coffee 7.65 +cup tableware 7.54 +cup article 1.85 +cup artifact 3.54 +cup object 6.62 +cup entity 2.08 +cup drink 7.96 +cup food 4.15 +cup substance 3.69 +cup liquid 6.82 +jaguar cat 8.85 +jaguar car 7.35 +energy secretary 0.92 +secretary senate 3.92 +energy laboratory 4.12 +computer laboratory 4.58 +weapon secret 4.73 +FBI fingerprint 5.38 +FBI investigation 8.15 +investigation effort 5.50 +Mars water 2.65 +Mars scientist 4.31 +news report 8.15 +canyon landscape 7.62 +image surface 4.04 +discovery space 6.50 +water seepage 6.15 +sign recess 1.42 +Wednesday news 1.96 +mile kilometer 6.92 +computer news 4.08 +territory surface 3.96 +atmosphere landscape 3.58 +president medal 3.38 +war troops 7.88 +record number 5.88 +skin eye 4.69 +Japanese American 6.15 +theater history 2.65 +volunteer motto 1.85 +prejudice recognition 2.73 +decoration valor 6.88 +century year 6.54 +century nation 1.46 +delay racism 1.08 +delay news 1.88 +minister party 2.58 +peace plan 3.69 +minority peace 2.85 +attempt peace 2.35 +government crisis 4.42 +deployment departure 7.81 +deployment withdrawal 6.27 +energy crisis 3.85 +announcement news 7.62 +announcement effort 3.08 +stroke hospital 5.88 +disability death 5.15 +victim emergency 6.77 +treatment recovery 7.54 +journal association 3.00 +doctor personnel 5.73 +doctor liability 4.69 +liability insurance 8.48 +school center 5.08 +reason hypertension 0.69 +reason criterion 5.50 +hundred percent 6.69 +Harvard Yale 8.77 +hospital infrastructure 5.42 +death row 5.46 +death inmate 3.92 +lawyer evidence 7.35 +life death 6.96 +life term 5.35 +word similarity 2.00 +board recommendation 2.50 +governor interview 1.31 +OPEC country 1.92 +peace atmosphere 2.31 +peace insurance 0.69 +territory kilometer 2.46 +travel activity 4.85 +competition price 4.54 +consumer confidence 4.08 +consumer energy 4.50 +problem airport 1.92 +car flight 3.46 +credit card 6.38 +credit information 5.65 +hotel reservation 7.59 +grocery money 4.88 +registration arrangement 5.12 +arrangement accommodation 6.54 +month hotel 0.31 +type kind 9.31 +arrival hotel 4.27 +bed closet 2.33 +closet clothes 7.69 +situation conclusion 3.46 +situation isolation 1.88 +impartiality interest 2.65 +direction combination 0.81 +street place 6.08 +street avenue 8.77 +street block 7.85 +street children 1.54 +listing proximity 1.96 +listing category 6.29 +cell phone 8.54 +production hike 1.00 +benchmark index 4.46 +media trading 1.15 +media gain 1.31 +dividend payment 8.38 +dividend calculation 6.62 +calculation computation 9.38 +currency market 5.46 +OPEC oil 7.52 +oil stock 5.69 +announcement production 2.38 +announcement warning 6.15 +profit warning 0.77 +profit loss 6.69 +dollar yen 8.08 +dollar buck 9.54 +dollar profit 6.77 +dollar loss 5.38 +computer software 8.00 +network hardware 7.73 +phone equipment 6.85 +equipment maker 3.62 +luxury car 5.12 +five month 1.08 +report gain 3.00 +investor earning 6.42 +liquid water 8.62 +baseball season 5.31 +game victory 6.54 +game team 7.15 +marathon sprint 5.69 +game series 4.62 +game defeat 5.38 +seven series 2.38 +seafood sea 7.94 +seafood food 8.52 +seafood lobster 8.60 +lobster food 8.37 +lobster wine 2.54 +food preparation 5.46 +video archive 3.69 +start year 1.42 +start match 2.08 +game round 4.46 +boxing round 6.54 +championship tournament 7.92 +fighting defeating 5.31 +line insurance 1.15 +day summer 3.54 +summer drought 5.19 +summer nature 4.62 +day dawn 7.62 +nature environment 8.85 +environment ecology 8.23 +nature man 6.69 +man woman 8.38 +man governor 6.00 +murder manslaughter 7.65 +soap opera 5.38 +opera performance 7.46 +life lesson 5.69 +focus life 4.46 +production crew 5.38 +television film 6.88 +lover quarrel 5.69 +viewer serial 3.04 +possibility girl 2.46 +population development 4.42 +morality importance 4.46 +morality marriage 4.77 +Mexico Brazil 6.19 +gender equality 6.27 +change attitude 5.54 +family planning 5.69 +opera industry 3.38 +sugar approach 1.00 +practice institution 3.31 +ministry culture 4.35 +problem challenge 7.81 +size prominence 6.19 +country citizen 6.15 +planet people 5.85 +development issue 4.58 +experience music 4.54 +music project 4.46 +glass metal 4.58 +aluminum metal 7.62 +chance credibility 4.12 +exhibit memorabilia 5.85 +concert virtuoso 6.04 +rock jazz 6.85 +museum theater 6.00 +observation architecture 3.62 +space world 5.85 +preservation world 4.31 +admission ticket 7.42 +shower thunderstorm 6.73 +shower flood 6.19 +weather forecast 7.88 +disaster area 5.04 +governor office 5.85 +architecture century 3.31 \ No newline at end of file diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-rel.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-rel.txt new file mode 100644 index 0000000..39f0fbf --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-rel.txt @@ -0,0 +1,253 @@ +Word1 Word2 Score +Liebe Sex 8.46 +Buch Papier 7.08 +Computer Tastatur 8.00 +Computer Internet 8.08 +Telefon Kommunikation 8.38 +Drogen Mißbrauch 6.46 +klug Student 4.85 +Unternehmen Aktie 6.54 +Aktie Börse 8.85 +Vorrat Telefon 0.31 +Vorrat CD 0.54 +Vorrat Jaguar 0.23 +Vorrat Ei 2.15 +Fruchtbarkeit Ei 7.92 +Aktie Live 1.08 +Aktie Leben 0.62 +Buch Bibliothek 8.31 +Bank Geld 8.15 +Professor Gurke 0.15 +König Kohl 0.23 +Jerusalem Israel 8.85 +Jerusalem Palestinensisch 6.85 +Heilig Sex 0.69 +Maradona Fußball 8.00 +Tennis Schläger 7.08 +Arafat Frieden 2.46 +Arafat Terror 5.23 +Gesetz Anwalt 8.38 +Film Star 7.62 +Film Popcorn 6.08 +Film Kritik 5.85 +Kino Theater 6.85 +Physik Proton 7.00 +Weltall Chemie 3.31 +Alkohol Chemie 5.08 +Drink Auto 1.85 +Trinken Ohren 0.62 +Trinken Mund 6.46 +Baby Mutter 7.85 +Säugen Mutter 7.69 +Werkzeug Arbeitsgerät 8.38 +Bruder Mönch 5.92 +Kran Arbeitsgerät 6.08 +Bursche Bruder 4.23 +Fahrt Auto 6.62 +Mönch Orakel 1.38 +Friedhof Waldgebiet 1.92 +Küste Hügel 2.69 +Wald Friedhof 3.31 +Ufer Waldgebiet 2.31 +Mönch Sklave 1.08 +Küste Wald 1.77 +Bursche Zauberer 0.77 +Akkord Lächeln 0.31 +Glas Magier 1.69 +Mittag Faden 0.15 +Hahn Reise 0.31 +Geld Reichtum 8.19 +Geld Eigentum 6.62 +Geld Besitz 6.92 +Geld Bank 8.31 +Geld Pfand 5.13 +Geld Einzahlung 6.23 +Geld Abheben 6.54 +Geld Wäsche 3.62 +Tiger Zoo 5.91 +Psychologie Beklemmung 4.35 +Psychologie Angst 4.92 +Psychologie Depression 6.77 +Psychologie Klinik 6.17 +Psychologie Arzt 5.85 +Psychologie Freud 7.00 +Psychologie Seele 5.88 +Psychologie Gesundheit 5.11 +Psychologie Erkenntnis 4.92 +Planet Konstellation 6.23 +Planet Galaxie 7.08 +Planet Weltraum 7.08 +Planet Astronom 6.38 +Basis Information 3.32 +Voraussetzung Erkenntnis 3.15 +Präzedensfall Gesetz 5.62 +Beispielhaft Sammlung 1.92 +Vorbildlich Gruppe 2.19 +Tasse Kaffee 7.21 +Tasse Gegenstand 6.08 +Tasse Trinken 7.62 +Tasse Essen 1.77 +Tasse Substanz 1.69 +Tasse Flüssigkeit 5.47 +Energie Minister 4.15 +Minister Senat 5.96 +Energie Labor 3.23 +Computer Labor 4.31 +Waffe Geheimnis 1.85 +Polizei Fingerabdruck 6.23 +Polizei Ermittlung 7.27 +Untersuchung Aufwand 4.15 +Mars Wasser 2.77 +Mars Wissenschaftler 5.54 +Nachrichten Bericht 7.85 +Schlucht Landschaft 6.54 +Bild Oberfläche 3.38 +Entdeckung Weltall 4.77 +Wasser Leck 5.81 +Zeichen Kerbe 3.92 +Mittwoch Nachrichten 1.38 +Computer Nachrichten 4.23 +Gebiet Oberfläche 3.77 +Atmosphäre Landschaft 2.50 +Präsident Orden 2.77 +Krieg Truppen 6.81 +Rekord Nummer 2.77 +Theater Geschichte 3.85 +Freiwilliger Motto 0.77 +Vorurteil Anerkennung 3.46 +Auszeichnung Tapferkeit 5.92 +Jahrhundert Nation 1.54 +Verzögerung Rassismus 1.31 +Verzögerung Nachrichten 1.08 +Minister Partei 7.38 +Frieden Plan 3.85 +Minderheit Frieden 2.23 +Versuch Frieden 3.46 +Regierung Krise 5.65 +Aufmarsch Abzug 6.27 +Aufmarsch Rückzug 6.81 +Energie Krise 4.77 +Ankündigung Aufwand 1.08 +Schlaganfall Krankenhaus 6.88 +Behinderung Tod 2.42 +Opfer Notfall 6.69 +Behandlung Erholung 5.46 +Zeitschrift Verein 1.77 +Arzt Verantwortung 6.65 +Haftung Versicherung 7.62 +Schule Zentrum 4.00 +Ursache Bluthochdruck 3.65 +Ursache Kriterium 3.69 +Hundert Prozent 6.92 +Tod Trakt 2.46 +Tod Insasse 2.38 +Rechtsanwalt Beweis 6.04 +Leben Dauer 6.42 +Wort Ähnlichkeit 2.46 +Gremium Empfehlung 3.65 +Direktor Interview 2.46 +OPEC Staat 3.92 +Frieden Stimmung 4.46 +Frieden Versicherung 2.15 +Gelände Kilometer 3.46 +Wettbewerb Preis 7.73 +Konsument Vertrauen 3.85 +Konsument Energie 3.69 +Problem Flughafen 2.23 +Auto Flug 3.77 +Kredit Karte 6.31 +Vertrauen Information 4.77 +Hotel Reservierung 6.81 +Lebensmittel Geld 4.88 +Registrierung Abmachung 2.69 +Vereinbarung Unterkunft 2.00 +Monat Hotel 0.69 +Ankunft Hotel 4.54 +Bett Schrank 6.15 +Schrank Kleider 7.50 +Lage Schlussfolgerung 3.69 +Situation Isolation 2.15 +Unparteilichkeit Interesse 2.50 +Richtung Verbindung 3.65 +Straße Kinder 3.73 +Aufzählung Nähe 0.92 +Liste Kategorie 5.85 +Herstellung Wanderung 0.69 +Richtwert Kennziffer 4.92 +Medien Handel 2.87 +Medien Vorteil 1.81 +Gewinnanteil Kalkulation 6.15 +Währung Markt 6.03 +OPEC Öl 7.65 +Öl Aktie 5.14 +Ankündigung Produktion 1.65 +Ankündigung Warnung 6.06 +Gewinn Warnung 2.85 +Dollar Gewinn 5.25 +Dollar Verlust 5.27 +Computer Software 8.35 +Netzwerk Hardware 6.88 +Zubehör Hersteller 4.43 +Luxus Auto 5.14 +Fünf Monat 1.33 +Bericht Zuwachs 2.02 +Investor Einkommen 4.05 +Baseball Saison 4.98 +Spiel Sieg 7.08 +Spiel Mannschaft 6.88 +Spiel Serie 4.85 +Spiel Niederlage 6.77 +Sieben Reihe 2.41 +Meeresfrüchte Meer 7.32 +Essen Vorbereitung 5.58 +Video Archiv 5.06 +Beginn Jahr 4.70 +Beginn Partie 4.22 +Spiel Runde 6.33 +Boxen Runde 7.35 +Kämpfen Besiegen 7.41 +Grundsatz Versicherung 2.51 +Tag Sommer 3.33 +Sommer Dürre 6.04 +Sommer Natur 5.37 +Tag Dämmerung 5.97 +Natur Umwelt 8.00 +Umwelt Nachhaltigkeit 6.54 +Natur Mensch 6.31 +Seife Oper 2.85 +Leben Lektion 4.54 +Fokus Leben 2.62 +Herstellung Belegschaft 3.23 +Fernsehen Film 7.31 +Liebhaber Streit 4.08 +Zuschauer Serie 5.38 +Möglichkeit Mädchen 1.65 +Bevölkerung Entwicklung 4.27 +Moral Wichtigkeit 4.65 +Moral Heirat 2.81 +Geschlecht Gleichheit 3.81 +Änderung Einstellung 4.15 +Familie Planung 5.62 +Oper Industrie 0.85 +Zucker Annäherung 1.46 +Praxis Institution 4.27 +Ministerium Kultur 4.38 +Problem Herausforderung 6.08 +Größe Prominenz 5.46 +Staat Bürger 6.77 +Planet Menschen 5.62 +Entwicklung Ausgabe 3.15 +Erfahrung Musik 1.08 +Musik Projekt 4.04 +Möglichkeit Glaubwürdigkeit 2.69 +Ausstellungsstück Erinnerungsstück 4.38 +Konzert virtuos 4.46 +Betrachtung Architektur 4.38 +Weltraum Erde 6.46 +Erhaltung Welt 4.31 +Einlass Eintritt 8.08 +Regen Flut 7.27 +Wetter Vorhersage 6.46 +Katastrophe Gebiet 4.27 +Präsident Büro 3.42 +Architektur Jahrhundert 3.08 \ No newline at end of file diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-sim.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-sim.txt new file mode 100644 index 0000000..ed3539d --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german-sim.txt @@ -0,0 +1,202 @@ +Word1 Word2 Score +Tiger Katze 7.92 +Tiger Tiger 10.00 +Flugzeug Auto 4.92 +Zug Auto 5.54 +Fernseher Radio 5.77 +Medien Radio 8.15 +Brot Butter 5.62 +Gurke Kartoffel 4.92 +Arzt Krankenschwester 6.69 +Professor Doktor 6.77 +Student Professor 5.69 +klug Student 4.85 +klug dumm 5.00 +Vorrat Telefon 0.31 +Vorrat CD 0.54 +Vorrat Jaguar 0.23 +Vorrat Ei 2.15 +Aktie Live 1.08 +Aktie Leben 0.62 +Holz Wald 8.54 +Geld Bargeld 9.69 +Professor Gurke 0.15 +König Kohl 0.23 +König Königin 10.00 +König Turm 5.15 +Bischoff Rabbi 7.00 +Heilig Sex 0.69 +Ficken Sex 9.15 +Fußball Basketball 5.38 +Fußball Tennis 4.69 +Arafat Jackson 0.69 +Physik Chemie 7.54 +Weltall Chemie 3.31 +Wodka Gin 7.92 +Wodka Brandy 8.22 +Drink Auto 1.85 +Trinken Ohren 0.62 +Trinken Essen 7.23 +Säugen Mutter 7.69 +Auto Fahrzeug 9.19 +Edelstein Juwel 9.27 +Ausflug Reise 8.23 +Junge Bursche 9.27 +Irrenanstalt Tollhaus 8.23 +Magier Zauberer 9.65 +Ofen Herd 8.81 +Essen Frucht 6.77 +Vogel Hahn 6.08 +Vogel Kranich 7.46 +Kran Arbeitsgerät 6.08 +Bursche Bruder 4.23 +Mönch Orakel 1.38 +Friedhof Waldgebiet 1.92 +Essen Hahn 3.46 +Küste Hügel 2.69 +Wald Friedhof 3.31 +Ufer Waldgebiet 2.31 +Mönch Sklave 1.08 +Küste Wald 1.77 +Bursche Zauberer 0.77 +Akkord Lächeln 0.31 +Glas Magier 1.69 +Mittag Faden 0.15 +Hahn Reise 0.31 +Geld Dollar 7.92 +Geld Bargeld 9.19 +Geld Währung 8.12 +Geld Wäsche 3.62 +Tiger Jaguar 6.00 +Tiger Katze 6.92 +Tiger Raubtier 8.00 +Tiger Säugetier 6.58 +Tiger Tier 7.85 +Tiger Organismus 3.59 +Tiger Fauna 3.69 +Psychologie Psychiatrie 6.85 +Psychologie Wissenschaft 5.96 +Psychologie Disziplin 4.77 +Planet Stern 7.23 +Planet Mond 7.08 +Planet Sonne 7.08 +Präzedenz Beispiel 6.83 +Basis Information 3.32 +Voraussetzung Erkenntnis 3.15 +Beispielhaft Sammlung 1.92 +Vorbildlich Gruppe 2.19 +Vorangehend Vorausgehend 8.04 +Tasse Geschirr 8.00 +Tasse Gegenstand 6.08 +Tasse Artefakt 2.00 +Tasse Objekt 5.69 +Tasse Ding 5.08 +Tasse Essen 1.77 +Tasse Substanz 1.69 +Jaguar Katze 6.66 +Jaguar Auto 7.55 +Energie Minister 4.15 +Untersuchung Aufwand 4.15 +Mars Wasser 2.77 +Bild Oberfläche 3.38 +Zeichen Kerbe 3.92 +Mittwoch Nachrichten 1.38 +Meile Kilometer 7.62 +Computer Nachrichten 4.23 +Atmosphäre Landschaft 2.50 +Präsident Orden 2.77 +Haut Augen 4.12 +Japaner Amerikaner 5.73 +Theater Geschichte 3.85 +Freiwilliger Motto 0.77 +Vorurteil Anerkennung 3.46 +Jahrhundert Jahr 6.85 +Jahrhundert Nation 1.54 +Verzögerung Rassismus 1.31 +Verzögerung Nachrichten 1.08 +Frieden Plan 3.85 +Minderheit Frieden 2.23 +Versuch Frieden 3.46 +Aufmarsch Abzug 6.27 +Ankündigung Nachrichten 6.31 +Ankündigung Aufwand 1.08 +Zeitschrift Verein 1.77 +Arzt Personal 4.46 +Schule Zentrum 4.00 +Ursache Bluthochdruck 3.65 +Harvard Yale 7.85 +Krankenhaus Infrastruktur 5.00 +Leben Tod 8.69 +Leben Dauer 6.42 +Wort Ähnlichkeit 2.46 +Gremium Empfehlung 3.65 +Direktor Interview 2.46 +Frieden Stimmung 4.46 +Frieden Versicherung 2.15 +Reise Aktivität 6.31 +Konsument Vertrauen 3.85 +Konsument Energie 3.69 +Problem Flughafen 2.23 +Auto Flug 3.77 +Monat Hotel 0.69 +Art Sorte 8.81 +Lage Schlussfolgerung 3.69 +Situation Isolation 2.15 +Richtung Verbindung 3.65 +Straße Platz 5.35 +Straße Allee 7.73 +Straße Häuserblock 5.50 +Straße Kinder 3.73 +Aufzählung Nähe 0.92 +Zelle Telefon 6.38 +Herstellung Wanderung 0.69 +Richtwert Kennziffer 4.92 +Medien Handel 2.87 +Medien Vorteil 1.81 +Gewinnanteil Auszahlung 7.32 +Kalkulation Berechnung 9.54 +Ankündigung Produktion 1.65 +Gewinn Warnung 2.85 +Gewinn Verlust 7.85 +Dollar Yen 7.31 +Dollar Kohle 5.58 +Telefon Zubehör 4.42 +Fünf Monat 1.33 +Bericht Zuwachs 2.02 +Flüssigkeit Wasser 8.62 +Marathon Sprint 7.67 +Sieben Reihe 2.41 +Meeresfrüchte Essen 7.23 +Meeresfrüchte Hummer 6.81 +Hummer Essen 6.78 +Hummer Wein 4.15 +Beginn Jahr 4.70 +Beginn Partie 4.22 +Meisterschaft Turnier 8.05 +Grundsatz Versicherung 2.51 +Mann Frau 8.69 +Mann Präsident 5.46 +Mord Totschlag 8.62 +Oper Aufführung 6.38 +Fokus Leben 2.62 +Zuschauer Serie 5.38 +Möglichkeit Mädchen 1.65 +Bevölkerung Entwicklung 4.27 +Moral Wichtigkeit 4.65 +Moral Heirat 2.81 +Mexiko Brasil 5.23 +Oper Industrie 0.85 +Zucker Annäherung 1.46 +Praxis Institution 4.27 +Ministerium Kultur 4.38 +Entwicklung Ausgabe 3.15 +Erfahrung Musik 1.08 +Musik Projekt 4.04 +Glas Metal 3.92 +Aluminium Metal 7.81 +Möglichkeit Glaubwürdigkeit 2.69 +Rock Jazz 6.19 +Museum Theater 5.42 +Betrachtung Architektur 4.38 +Regen Gewitter 7.85 +Architektur Jahrhundert 3.08 \ No newline at end of file diff --git a/WordSim353/data/multilingual_leviant_reichart/wordsim353-german.txt b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german.txt new file mode 100644 index 0000000..9d671c3 --- /dev/null +++ b/WordSim353/data/multilingual_leviant_reichart/wordsim353-german.txt @@ -0,0 +1,351 @@ +Word1 Word2 Score +Liebe Sex 8.46 +Tiger Katze 7.92 +Tiger Tiger 10.00 +Buch Papier 7.08 +Computer Tastatur 8.00 +Computer Internet 8.08 +Flugzeug Auto 4.92 +Zug Auto 5.54 +Telefon Kommunikation 8.38 +Fernseher Radio 5.77 +Medien Radio 8.15 +Drogen Mißbrauch 6.46 +Brot Butter 5.62 +Gurke Kartoffel 4.92 +Arzt Krankenschwester 6.69 +Professor Doktor 6.77 +Student Professor 5.69 +klug Student 4.85 +klug dumm 5.00 +Unternehmen Aktie 6.54 +Aktie Börse 8.85 +Vorrat Telefon 0.31 +Vorrat CD 0.54 +Vorrat Jaguar 0.23 +Vorrat Ei 2.15 +Fruchtbarkeit Ei 7.92 +Aktie Live 1.08 +Aktie Leben 0.62 +Buch Bibliothek 8.31 +Bank Geld 8.15 +Holz Wald 8.54 +Geld Bargeld 9.69 +Professor Gurke 0.15 +König Kohl 0.23 +König Königin 10.00 +König Turm 5.15 +Bischoff Rabbi 7.00 +Jerusalem Israel 8.85 +Jerusalem Palästinensisch 6.85 +Heilig Sex 0.69 +Ficken Sex 9.15 +Maradona Fußball 8.00 +Fußball Basketball 5.38 +Fußball Tennis 4.69 +Tennis Schläger 7.08 +Arafat Frieden 2.46 +Arafat Terror 5.23 +Arafat Jackson 0.69 +Gesetz Anwalt 8.38 +Film Star 7.62 +Film Popcorn 6.08 +Film Kritik 5.85 +Kino Theater 6.85 +Physik Proton 7.00 +Physik Chemie 7.54 +Weltall Chemie 3.31 +Alkohol Chemie 5.08 +Wodka Gin 7.92 +Wodka Brandy 8.22 +Drink Auto 1.85 +Trinken Ohren 0.62 +Trinken Mund 6.46 +Trinken Essen 7.23 +Baby Mutter 7.85 +Säugen Mutter 7.69 +Auto Fahrzeug 9.19 +Edelstein Juwel 9.27 +Ausflug Reise 8.23 +Junge Bursche 9.27 +Irrenanstalt Tollhaus 8.23 +Magier Zauberer 9.65 +Ofen Herd 8.81 +Essen Frucht 6.77 +Vogel Hahn 6.08 +Vogel Kranich 7.46 +Werkzeug Arbeitsgerät 8.38 +Bruder Mönch 5.92 +Kran Arbeitsgerät 6.08 +Bursche Bruder 4.23 +Fahrt Auto 6.62 +Mönch Orakel 1.38 +Friedhof Waldgebiet 1.92 +Essen Hahn 3.46 +Küste Hügel 2.69 +Wald Friedhof 3.31 +Ufer Waldgebiet 2.31 +Mönch Sklave 1.08 +Küste Wald 1.77 +Bursche Zauberer 0.77 +Akkord Lächeln 0.31 +Glas Magier 1.69 +Mittag Faden 0.15 +Hahn Reise 0.31 +Geld Dollar 7.92 +Geld Bargeld 9.19 +Geld Währung 8.12 +Geld Reichtum 8.19 +Geld Eigentum 6.62 +Geld Besitz 6.92 +Geld Bank 8.31 +Geld Pfand 5.13 +Geld Einzahlung 6.23 +Geld Abheben 6.54 +Geld Wäsche 3.62 +Tiger Jaguar 6.00 +Tiger Katze 6.92 +Tiger Raubtier 8.00 +Tiger Säugetier 6.58 +Tiger Tier 7.85 +Tiger Organismus 3.59 +Tiger Fauna 3.69 +Tiger Zoo 5.91 +Psychologie Psychiatrie 6.85 +Psychologie Beklemmung 4.35 +Psychologie Angst 4.92 +Psychologie Depression 6.77 +Psychologie Klinik 6.17 +Psychologie Arzt 5.85 +Psychologie Freud 7.00 +Psychologie Seele 5.88 +Psychologie Gesundheit 5.11 +Psychologie Wissenschaft 5.96 +Psychologie Disziplin 4.77 +Psychologie Erkenntnis 4.92 +Planet Stern 7.23 +Planet Konstellation 6.23 +Planet Mond 7.08 +Planet Sonne 7.08 +Planet Galaxie 7.08 +Planet Weltraum 7.08 +Planet Astronom 6.38 +Präzedenz Beispiel 6.83 +Basis Information 3.32 +Voraussetzung Erkenntnis 3.15 +Präzedenzfall Gesetz 5.62 +Beispielhaft Sammlung 1.92 +Vorbildlich Gruppe 2.19 +Vorangehend Vorausgehend 8.04 +Tasse Kaffee 7.21 +Tasse Geschirr 8.00 +Tasse Gegenstand 6.08 +Tasse Artefakt 2.00 +Tasse Objekt 5.69 +Tasse Ding 5.08 +Tasse Trinken 7.62 +Tasse Essen 1.77 +Tasse Substanz 1.69 +Tasse Flüssigkeit 5.47 +Jaguar Katze 6.66 +Jaguar Auto 7.55 +Energie Minister 4.15 +Minister Senat 5.96 +Energie Labor 3.23 +Computer Labor 4.31 +Waffe Geheimnis 1.85 +Polizei Fingerabdruck 6.23 +Polizei Ermittlung 7.27 +Untersuchung Aufwand 4.15 +Mars Wasser 2.77 +Mars Wissenschaftler 5.54 +Nachrichten Bericht 7.85 +Schlucht Landschaft 6.54 +Bild Oberfläche 3.38 +Entdeckung Weltall 4.77 +Wasser Leck 5.81 +Zeichen Kerbe 3.92 +Mittwoch Nachrichten 1.38 +Meile Kilometer 7.62 +Computer Nachrichten 4.23 +Gebiet Oberfläche 3.77 +Atmosphäre Landschaft 2.50 +Präsident Orden 2.77 +Krieg Truppen 6.81 +Rekord Nummer 2.77 +Haut Augen 4.12 +Japaner Amerikaner 5.73 +Theater Geschichte 3.85 +Freiwilliger Motto 0.77 +Vorurteil Anerkennung 3.46 +Auszeichnung Tapferkeit 5.92 +Jahrhundert Jahr 6.85 +Jahrhundert Nation 1.54 +Verzögerung Rassismus 1.31 +Verzögerung Nachrichten 1.08 +Minister Partei 7.38 +Frieden Plan 3.85 +Minderheit Frieden 2.23 +Versuch Frieden 3.46 +Regierung Krise 5.65 +Aufmarsch Abzug 6.27 +Aufmarsch Rückzug 6.81 +Energie Krise 4.77 +Ankündigung Nachrichten 6.31 +Ankündigung Aufwand 1.08 +Schlaganfall Krankenhaus 6.88 +Behinderung Tod 2.42 +Opfer Notfall 6.69 +Behandlung Erholung 5.46 +Zeitschrift Verein 1.77 +Arzt Personal 4.46 +Arzt Verantwortung 6.65 +Haftung Versicherung 7.62 +Schule Zentrum 4.00 +Ursache Bluthochdruck 3.65 +Ursache Kriterium 3.69 +Hundert Prozent 6.92 +Harvard Yale 7.85 +Krankenhaus Infrastruktur 5.00 +Tod Trakt 2.46 +Tod Insasse 2.38 +Rechtsanwalt Beweis 6.04 +Leben Tod 8.69 +Leben Dauer 6.42 +Wort Ähnlichkeit 2.46 +Gremium Empfehlung 3.65 +Direktor Interview 2.46 +OPEC Staat 3.92 +Frieden Stimmung 4.46 +Frieden Versicherung 2.15 +Gelände Kilometer 3.46 +Reise Aktivität 6.31 +Wettbewerb Preis 7.73 +Konsument Vertrauen 3.85 +Konsument Energie 3.69 +Problem Flughafen 2.23 +Auto Flug 3.77 +Kredit Karte 6.31 +Vertrauen Information 4.77 +Hotel Reservierung 6.81 +Lebensmittel Geld 4.88 +Registrierung Abmachung 2.69 +Vereinbarung Unterkunft 2.00 +Monat Hotel 0.69 +Art Sorte 8.81 +Ankunft Hotel 4.54 +Bett Schrank 6.15 +Schrank Kleider 7.50 +Lage Schlussfolgerung 3.69 +Situation Isolation 2.15 +Unparteilichkeit Interesse 2.50 +Richtung Verbindung 3.65 +Straße Platz 5.35 +Straße Allee 7.73 +Straße Häuserblock 5.50 +Straße Kinder 3.73 +Aufzählung Nähe 0.92 +Liste Kategorie 5.85 +Zelle Telefon 6.38 +Herstellung Wanderung 0.69 +Richtwert Kennziffer 4.92 +Medien Handel 2.87 +Medien Vorteil 1.81 +Gewinnanteil Auszahlung 7.32 +Gewinnanteil Kalkulation 6.15 +Kalkulation Berechnung 9.54 +Währung Markt 6.03 +OPEC Öl 7.65 +Öl Aktie 5.14 +Ankündigung Produktion 1.65 +Ankündigung Warnung 6.06 +Gewinn Warnung 2.85 +Gewinn Verlust 7.85 +Dollar Yen 7.31 +Dollar Kohle 5.58 +Dollar Gewinn 5.25 +Dollar Verlust 5.27 +Computer Software 8.35 +Netzwerk Hardware 6.88 +Telefon Zubehör 4.42 +Zubehör Hersteller 4.43 +Luxus Auto 5.14 +Fünf Monat 1.33 +Bericht Zuwachs 2.02 +Investor Einkommen 4.05 +Flüssigkeit Wasser 8.62 +Baseball Saison 4.98 +Spiel Sieg 7.08 +Spiel Mannschaft 6.88 +Marathon Sprint 7.67 +Spiel Serie 4.85 +Spiel Niederlage 6.77 +Sieben Reihe 2.41 +Meeresfrüchte Meer 7.32 +Meeresfrüchte Essen 7.23 +Meeresfrüchte Hummer 6.81 +Hummer Essen 6.78 +Hummer Wein 4.15 +Essen Vorbereitung 5.58 +Video Archiv 5.06 +Beginn Jahr 4.70 +Beginn Partie 4.22 +Spiel Runde 6.33 +Boxen Runde 7.35 +Meisterschaft Turnier 8.05 +Kämpfen Besiegen 7.41 +Grundsatz Versicherung 2.51 +Tag Sommer 3.33 +Sommer Dürre 6.04 +Sommer Natur 5.37 +Tag Dämmerung 5.97 +Natur Umwelt 8.00 +Umwelt Nachhaltigkeit 6.54 +Natur Mensch 6.31 +Mann Frau 8.69 +Mann Präsident 5.46 +Mord Totschlag 8.62 +Seife Oper 2.85 +Oper Aufführung 6.38 +Leben Lektion 4.54 +Fokus Leben 2.62 +Herstellung Belegschaft 3.23 +Fernsehen Film 7.31 +Liebhaber Streit 4.08 +Zuschauer Serie 5.38 +Möglichkeit Mädchen 1.65 +Bevölkerung Entwicklung 4.27 +Moral Wichtigkeit 4.65 +Moral Heirat 2.81 +Mexiko Brasil 5.23 +Geschlecht Gleichheit 3.81 +Änderung Einstellung 4.15 +Familie Planung 5.62 +Oper Industrie 0.85 +Zucker Annäherung 1.46 +Praxis Institution 4.27 +Ministerium Kultur 4.38 +Problem Herausforderung 6.08 +Größe Prominenz 5.46 +Staat Bürger 6.77 +Planet Menschen 5.62 +Entwicklung Ausgabe 3.15 +Erfahrung Musik 1.08 +Musik Projekt 4.04 +Glas Metal 3.92 +Aluminium Metal 7.81 +Möglichkeit Glaubwürdigkeit 2.69 +Ausstellungsstück Erinnerungsstück 4.38 +Konzert virtuos 4.46 +Rock Jazz 6.19 +Museum Theater 5.42 +Betrachtung Architektur 4.38 +Weltraum Erde 6.46 +Erhaltung Welt 4.31 +Einlass Eintritt 8.08 +Regen Gewitter 7.85 +Regen Flut 7.27 +Wetter Vorhersage 6.46 +Katastrophe Gebiet 4.27 +Präsident Büro 3.42 +Architektur Jahrhundert 3.08 \ No newline at end of file diff --git a/WordSim353/data/original_finkelstein/combined.csv b/WordSim353/data/original_finkelstein/combined.csv new file mode 100644 index 0000000..f4b5953 --- /dev/null +++ b/WordSim353/data/original_finkelstein/combined.csv @@ -0,0 +1,354 @@ +Word 1,Word 2,Human (mean) +love,sex,6.77 +tiger,cat,7.35 +tiger,tiger,10.00 +book,paper,7.46 +computer,keyboard,7.62 +computer,internet,7.58 +plane,car,5.77 +train,car,6.31 +telephone,communication,7.50 +television,radio,6.77 +media,radio,7.42 +drug,abuse,6.85 +bread,butter,6.19 +cucumber,potato,5.92 +doctor,nurse,7.00 +professor,doctor,6.62 +student,professor,6.81 +smart,student,4.62 +smart,stupid,5.81 +company,stock,7.08 +stock,market,8.08 +stock,phone,1.62 +stock,CD,1.31 +stock,jaguar,0.92 +stock,egg,1.81 +fertility,egg,6.69 +stock,live,3.73 +stock,life,0.92 +book,library,7.46 +bank,money,8.12 +wood,forest,7.73 +money,cash,9.15 +professor,cucumber,0.31 +king,cabbage,0.23 +king,queen,8.58 +king,rook,5.92 +bishop,rabbi,6.69 +Jerusalem,Israel,8.46 +Jerusalem,Palestinian,7.65 +holy,sex,1.62 +fuck,sex,9.44 +Maradona,football,8.62 +football,soccer,9.03 +football,basketball,6.81 +football,tennis,6.63 +tennis,racket,7.56 +Arafat,peace,6.73 +Arafat,terror,7.65 +Arafat,Jackson,2.50 +law,lawyer,8.38 +movie,star,7.38 +movie,popcorn,6.19 +movie,critic,6.73 +movie,theater,7.92 +physics,proton,8.12 +physics,chemistry,7.35 +space,chemistry,4.88 +alcohol,chemistry,5.54 +vodka,gin,8.46 +vodka,brandy,8.13 +drink,car,3.04 +drink,ear,1.31 +drink,mouth,5.96 +drink,eat,6.87 +baby,mother,7.85 +drink,mother,2.65 +car,automobile,8.94 +gem,jewel,8.96 +journey,voyage,9.29 +boy,lad,8.83 +coast,shore,9.10 +asylum,madhouse,8.87 +magician,wizard,9.02 +midday,noon,9.29 +furnace,stove,8.79 +food,fruit,7.52 +bird,cock,7.10 +bird,crane,7.38 +tool,implement,6.46 +brother,monk,6.27 +crane,implement,2.69 +lad,brother,4.46 +journey,car,5.85 +monk,oracle,5.00 +cemetery,woodland,2.08 +food,rooster,4.42 +coast,hill,4.38 +forest,graveyard,1.85 +shore,woodland,3.08 +monk,slave,0.92 +coast,forest,3.15 +lad,wizard,0.92 +chord,smile,0.54 +glass,magician,2.08 +noon,string,0.54 +rooster,voyage,0.62 +money,dollar,8.42 +money,cash,9.08 +money,currency,9.04 +money,wealth,8.27 +money,property,7.57 +money,possession,7.29 +money,bank,8.50 +money,deposit,7.73 +money,withdrawal,6.88 +money,laundering,5.65 +money,operation,3.31 +tiger,jaguar,8.00 +tiger,feline,8.00 +tiger,carnivore,7.08 +tiger,mammal,6.85 +tiger,animal,7.00 +tiger,organism,4.77 +tiger,fauna,5.62 +tiger,zoo,5.87 +psychology,psychiatry,8.08 +psychology,anxiety,7.00 +psychology,fear,6.85 +psychology,depression,7.42 +psychology,clinic,6.58 +psychology,doctor,6.42 +psychology,Freud,8.21 +psychology,mind,7.69 +psychology,health,7.23 +psychology,science,6.71 +psychology,discipline,5.58 +psychology,cognition,7.48 +planet,star,8.45 +planet,constellation,8.06 +planet,moon,8.08 +planet,sun,8.02 +planet,galaxy,8.11 +planet,space,7.92 +planet,astronomer,7.94 +precedent,example,5.85 +precedent,information,3.85 +precedent,cognition,2.81 +precedent,law,6.65 +precedent,collection,2.50 +precedent,group,1.77 +precedent,antecedent,6.04 +cup,coffee,6.58 +cup,tableware,6.85 +cup,article,2.40 +cup,artifact,2.92 +cup,object,3.69 +cup,entity,2.15 +cup,drink,7.25 +cup,food,5.00 +cup,substance,1.92 +cup,liquid,5.90 +jaguar,cat,7.42 +jaguar,car,7.27 +energy,secretary,1.81 +secretary,senate,5.06 +energy,laboratory,5.09 +computer,laboratory,6.78 +weapon,secret,6.06 +FBI,fingerprint,6.94 +FBI,investigation,8.31 +investigation,effort,4.59 +Mars,water,2.94 +Mars,scientist,5.63 +news,report,8.16 +canyon,landscape,7.53 +image,surface,4.56 +discovery,space,6.34 +water,seepage,6.56 +sign,recess,2.38 +Wednesday,news,2.22 +mile,kilometer,8.66 +computer,news,4.47 +territory,surface,5.34 +atmosphere,landscape,3.69 +president,medal,3.00 +war,troops,8.13 +record,number,6.31 +skin,eye,6.22 +Japanese,American,6.50 +theater,history,3.91 +volunteer,motto,2.56 +prejudice,recognition,3.00 +decoration,valor,5.63 +century,year,7.59 +century,nation,3.16 +delay,racism,1.19 +delay,news,3.31 +minister,party,6.63 +peace,plan,4.75 +minority,peace,3.69 +attempt,peace,4.25 +government,crisis,6.56 +deployment,departure,4.25 +deployment,withdrawal,5.88 +energy,crisis,5.94 +announcement,news,7.56 +announcement,effort,2.75 +stroke,hospital,7.03 +disability,death,5.47 +victim,emergency,6.47 +treatment,recovery,7.91 +journal,association,4.97 +doctor,personnel,5.00 +doctor,liability,5.19 +liability,insurance,7.03 +school,center,3.44 +reason,hypertension,2.31 +reason,criterion,5.91 +hundred,percent,7.38 +Harvard,Yale,8.13 +hospital,infrastructure,4.63 +death,row,5.25 +death,inmate,5.03 +lawyer,evidence,6.69 +life,death,7.88 +life,term,4.50 +word,similarity,4.75 +board,recommendation,4.47 +governor,interview,3.25 +OPEC,country,5.63 +peace,atmosphere,3.69 +peace,insurance,2.94 +territory,kilometer,5.28 +travel,activity,5.00 +competition,price,6.44 +consumer,confidence,4.13 +consumer,energy,4.75 +problem,airport,2.38 +car,flight,4.94 +credit,card,8.06 +credit,information,5.31 +hotel,reservation,8.03 +grocery,money,5.94 +registration,arrangement,6.00 +arrangement,accommodation,5.41 +month,hotel,1.81 +type,kind,8.97 +arrival,hotel,6.00 +bed,closet,6.72 +closet,clothes,8.00 +situation,conclusion,4.81 +situation,isolation,3.88 +impartiality,interest,5.16 +direction,combination,2.25 +street,place,6.44 +street,avenue,8.88 +street,block,6.88 +street,children,4.94 +listing,proximity,2.56 +listing,category,6.38 +cell,phone,7.81 +production,hike,1.75 +benchmark,index,4.25 +media,trading,3.88 +media,gain,2.88 +dividend,payment,7.63 +dividend,calculation,6.48 +calculation,computation,8.44 +currency,market,7.50 +OPEC,oil,8.59 +oil,stock,6.34 +announcement,production,3.38 +announcement,warning,6.00 +profit,warning,3.88 +profit,loss,7.63 +dollar,yen,7.78 +dollar,buck,9.22 +dollar,profit,7.38 +dollar,loss,6.09 +computer,software,8.50 +network,hardware,8.31 +phone,equipment,7.13 +equipment,maker,5.91 +luxury,car,6.47 +five,month,3.38 +report,gain,3.63 +investor,earning,7.13 +liquid,water,7.89 +baseball,season,5.97 +game,victory,7.03 +game,team,7.69 +marathon,sprint,7.47 +game,series,6.19 +game,defeat,6.97 +seven,series,3.56 +seafood,sea,7.47 +seafood,food,8.34 +seafood,lobster,8.70 +lobster,food,7.81 +lobster,wine,5.70 +food,preparation,6.22 +video,archive,6.34 +start,year,4.06 +start,match,4.47 +game,round,5.97 +boxing,round,7.61 +championship,tournament,8.36 +fighting,defeating,7.41 +line,insurance,2.69 +day,summer,3.94 +summer,drought,7.16 +summer,nature,5.63 +day,dawn,7.53 +nature,environment,8.31 +environment,ecology,8.81 +nature,man,6.25 +man,woman,8.30 +man,governor,5.25 +murder,manslaughter,8.53 +soap,opera,7.94 +opera,performance,6.88 +life,lesson,5.94 +focus,life,4.06 +production,crew,6.25 +television,film,7.72 +lover,quarrel,6.19 +viewer,serial,2.97 +possibility,girl,1.94 +population,development,3.75 +morality,importance,3.31 +morality,marriage,3.69 +Mexico,Brazil,7.44 +gender,equality,6.41 +change,attitude,5.44 +family,planning,6.25 +opera,industry,2.63 +sugar,approach,0.88 +practice,institution,3.19 +ministry,culture,4.69 +problem,challenge,6.75 +size,prominence,5.31 +country,citizen,7.31 +planet,people,5.75 +development,issue,3.97 +experience,music,3.47 +music,project,3.63 +glass,metal,5.56 +aluminum,metal,7.83 +chance,credibility,3.88 +exhibit,memorabilia,5.31 +concert,virtuoso,6.81 +rock,jazz,7.59 +museum,theater,7.19 +observation,architecture,4.38 +space,world,6.53 +preservation,world,6.19 +admission,ticket,7.69 +shower,thunderstorm,6.31 +shower,flood,6.03 +weather,forecast,8.34 +disaster,area,6.25 +governor,office,6.34 +architecture,century,3.78 diff --git a/WordSim353/data/original_finkelstein/combined.tab b/WordSim353/data/original_finkelstein/combined.tab new file mode 100644 index 0000000..89c1950 --- /dev/null +++ b/WordSim353/data/original_finkelstein/combined.tab @@ -0,0 +1,354 @@ +Word 1 Word 2 Human (mean) +love sex 6.77 +tiger cat 7.35 +tiger tiger 10.00 +book paper 7.46 +computer keyboard 7.62 +computer internet 7.58 +plane car 5.77 +train car 6.31 +telephone communication 7.50 +television radio 6.77 +media radio 7.42 +drug abuse 6.85 +bread butter 6.19 +cucumber potato 5.92 +doctor nurse 7.00 +professor doctor 6.62 +student professor 6.81 +smart student 4.62 +smart stupid 5.81 +company stock 7.08 +stock market 8.08 +stock phone 1.62 +stock CD 1.31 +stock jaguar 0.92 +stock egg 1.81 +fertility egg 6.69 +stock live 3.73 +stock life 0.92 +book library 7.46 +bank money 8.12 +wood forest 7.73 +money cash 9.15 +professor cucumber 0.31 +king cabbage 0.23 +king queen 8.58 +king rook 5.92 +bishop rabbi 6.69 +Jerusalem Israel 8.46 +Jerusalem Palestinian 7.65 +holy sex 1.62 +fuck sex 9.44 +Maradona football 8.62 +football soccer 9.03 +football basketball 6.81 +football tennis 6.63 +tennis racket 7.56 +Arafat peace 6.73 +Arafat terror 7.65 +Arafat Jackson 2.50 +law lawyer 8.38 +movie star 7.38 +movie popcorn 6.19 +movie critic 6.73 +movie theater 7.92 +physics proton 8.12 +physics chemistry 7.35 +space chemistry 4.88 +alcohol chemistry 5.54 +vodka gin 8.46 +vodka brandy 8.13 +drink car 3.04 +drink ear 1.31 +drink mouth 5.96 +drink eat 6.87 +baby mother 7.85 +drink mother 2.65 +car automobile 8.94 +gem jewel 8.96 +journey voyage 9.29 +boy lad 8.83 +coast shore 9.10 +asylum madhouse 8.87 +magician wizard 9.02 +midday noon 9.29 +furnace stove 8.79 +food fruit 7.52 +bird cock 7.10 +bird crane 7.38 +tool implement 6.46 +brother monk 6.27 +crane implement 2.69 +lad brother 4.46 +journey car 5.85 +monk oracle 5.00 +cemetery woodland 2.08 +food rooster 4.42 +coast hill 4.38 +forest graveyard 1.85 +shore woodland 3.08 +monk slave 0.92 +coast forest 3.15 +lad wizard 0.92 +chord smile 0.54 +glass magician 2.08 +noon string 0.54 +rooster voyage 0.62 +money dollar 8.42 +money cash 9.08 +money currency 9.04 +money wealth 8.27 +money property 7.57 +money possession 7.29 +money bank 8.50 +money deposit 7.73 +money withdrawal 6.88 +money laundering 5.65 +money operation 3.31 +tiger jaguar 8.00 +tiger feline 8.00 +tiger carnivore 7.08 +tiger mammal 6.85 +tiger animal 7.00 +tiger organism 4.77 +tiger fauna 5.62 +tiger zoo 5.87 +psychology psychiatry 8.08 +psychology anxiety 7.00 +psychology fear 6.85 +psychology depression 7.42 +psychology clinic 6.58 +psychology doctor 6.42 +psychology Freud 8.21 +psychology mind 7.69 +psychology health 7.23 +psychology science 6.71 +psychology discipline 5.58 +psychology cognition 7.48 +planet star 8.45 +planet constellation 8.06 +planet moon 8.08 +planet sun 8.02 +planet galaxy 8.11 +planet space 7.92 +planet astronomer 7.94 +precedent example 5.85 +precedent information 3.85 +precedent cognition 2.81 +precedent law 6.65 +precedent collection 2.50 +precedent group 1.77 +precedent antecedent 6.04 +cup coffee 6.58 +cup tableware 6.85 +cup article 2.40 +cup artifact 2.92 +cup object 3.69 +cup entity 2.15 +cup drink 7.25 +cup food 5.00 +cup substance 1.92 +cup liquid 5.90 +jaguar cat 7.42 +jaguar car 7.27 +energy secretary 1.81 +secretary senate 5.06 +energy laboratory 5.09 +computer laboratory 6.78 +weapon secret 6.06 +FBI fingerprint 6.94 +FBI investigation 8.31 +investigation effort 4.59 +Mars water 2.94 +Mars scientist 5.63 +news report 8.16 +canyon landscape 7.53 +image surface 4.56 +discovery space 6.34 +water seepage 6.56 +sign recess 2.38 +Wednesday news 2.22 +mile kilometer 8.66 +computer news 4.47 +territory surface 5.34 +atmosphere landscape 3.69 +president medal 3.00 +war troops 8.13 +record number 6.31 +skin eye 6.22 +Japanese American 6.50 +theater history 3.91 +volunteer motto 2.56 +prejudice recognition 3.00 +decoration valor 5.63 +century year 7.59 +century nation 3.16 +delay racism 1.19 +delay news 3.31 +minister party 6.63 +peace plan 4.75 +minority peace 3.69 +attempt peace 4.25 +government crisis 6.56 +deployment departure 4.25 +deployment withdrawal 5.88 +energy crisis 5.94 +announcement news 7.56 +announcement effort 2.75 +stroke hospital 7.03 +disability death 5.47 +victim emergency 6.47 +treatment recovery 7.91 +journal association 4.97 +doctor personnel 5.00 +doctor liability 5.19 +liability insurance 7.03 +school center 3.44 +reason hypertension 2.31 +reason criterion 5.91 +hundred percent 7.38 +Harvard Yale 8.13 +hospital infrastructure 4.63 +death row 5.25 +death inmate 5.03 +lawyer evidence 6.69 +life death 7.88 +life term 4.50 +word similarity 4.75 +board recommendation 4.47 +governor interview 3.25 +OPEC country 5.63 +peace atmosphere 3.69 +peace insurance 2.94 +territory kilometer 5.28 +travel activity 5.00 +competition price 6.44 +consumer confidence 4.13 +consumer energy 4.75 +problem airport 2.38 +car flight 4.94 +credit card 8.06 +credit information 5.31 +hotel reservation 8.03 +grocery money 5.94 +registration arrangement 6.00 +arrangement accommodation 5.41 +month hotel 1.81 +type kind 8.97 +arrival hotel 6.00 +bed closet 6.72 +closet clothes 8.00 +situation conclusion 4.81 +situation isolation 3.88 +impartiality interest 5.16 +direction combination 2.25 +street place 6.44 +street avenue 8.88 +street block 6.88 +street children 4.94 +listing proximity 2.56 +listing category 6.38 +cell phone 7.81 +production hike 1.75 +benchmark index 4.25 +media trading 3.88 +media gain 2.88 +dividend payment 7.63 +dividend calculation 6.48 +calculation computation 8.44 +currency market 7.50 +OPEC oil 8.59 +oil stock 6.34 +announcement production 3.38 +announcement warning 6.00 +profit warning 3.88 +profit loss 7.63 +dollar yen 7.78 +dollar buck 9.22 +dollar profit 7.38 +dollar loss 6.09 +computer software 8.50 +network hardware 8.31 +phone equipment 7.13 +equipment maker 5.91 +luxury car 6.47 +five month 3.38 +report gain 3.63 +investor earning 7.13 +liquid water 7.89 +baseball season 5.97 +game victory 7.03 +game team 7.69 +marathon sprint 7.47 +game series 6.19 +game defeat 6.97 +seven series 3.56 +seafood sea 7.47 +seafood food 8.34 +seafood lobster 8.70 +lobster food 7.81 +lobster wine 5.70 +food preparation 6.22 +video archive 6.34 +start year 4.06 +start match 4.47 +game round 5.97 +boxing round 7.61 +championship tournament 8.36 +fighting defeating 7.41 +line insurance 2.69 +day summer 3.94 +summer drought 7.16 +summer nature 5.63 +day dawn 7.53 +nature environment 8.31 +environment ecology 8.81 +nature man 6.25 +man woman 8.30 +man governor 5.25 +murder manslaughter 8.53 +soap opera 7.94 +opera performance 6.88 +life lesson 5.94 +focus life 4.06 +production crew 6.25 +television film 7.72 +lover quarrel 6.19 +viewer serial 2.97 +possibility girl 1.94 +population development 3.75 +morality importance 3.31 +morality marriage 3.69 +Mexico Brazil 7.44 +gender equality 6.41 +change attitude 5.44 +family planning 6.25 +opera industry 2.63 +sugar approach 0.88 +practice institution 3.19 +ministry culture 4.69 +problem challenge 6.75 +size prominence 5.31 +country citizen 7.31 +planet people 5.75 +development issue 3.97 +experience music 3.47 +music project 3.63 +glass metal 5.56 +aluminum metal 7.83 +chance credibility 3.88 +exhibit memorabilia 5.31 +concert virtuoso 6.81 +rock jazz 7.59 +museum theater 7.19 +observation architecture 4.38 +space world 6.53 +preservation world 6.19 +admission ticket 7.69 +shower thunderstorm 6.31 +shower flood 6.03 +weather forecast 8.34 +disaster area 6.25 +governor office 6.34 +architecture century 3.78 diff --git a/WordSim353/data/original_finkelstein/instructions.txt b/WordSim353/data/original_finkelstein/instructions.txt new file mode 100644 index 0000000..600e564 --- /dev/null +++ b/WordSim353/data/original_finkelstein/instructions.txt @@ -0,0 +1,41 @@ +Estimation of word similarity +----------------------------- + + +Hello, + +We kindly ask you to assist us in a psycholinguistic experiment, +aimed at estimating the similarity of various words in the English +language. The purpose of this experiment is to assign similarity scores +to pairs of words, so that machine learning algorithms can be +subsequently trained and adjusted using human-assigned scores. + +Below is a list of pairs of words. For each pair, please assign +a numerical similarity score between 0 and 10 (0 = words are totally +unrelated, 10 = words are VERY closely related). By definition, +the similarity of the word to itself should be 10. You may assign +fractional scores (for example, 7.5). + +Specific instructions: + +1) The questionnaire starts on the next page. +2) Please fill in your full name at the beginning of the questionnaire. + We need the names to ensure individual estimations do not get mixed, + and to be able to contact you should any clarifications become necessary. +3) Please fill in the similarity scores in the appropriate column of + the table. To facilitate processing your questionnaire, please do not + print the document but rather type in the values in the table provided. +4) If you do not know the meaning of a particular word - please use + a dictionary, or ask a native English speaker. +5) Please DO NOT consult your friends on assigning the similarity scores – + it is highly important that the scores you assign be independent of + someone else’s assessment. +6) When estimating similarity of antonyms, consider them "similar" + (i.e., belonging to the same domain or representing features of the same + concept), rather than "dissimilar". + +If you have any questions or require further clarifications (or if you +have a suggestion), please do not hesitate to contact us. + +Thank you for your assistance ! + diff --git a/WordSim353/data/original_finkelstein/set1.csv b/WordSim353/data/original_finkelstein/set1.csv new file mode 100644 index 0000000..6506432 --- /dev/null +++ b/WordSim353/data/original_finkelstein/set1.csv @@ -0,0 +1,154 @@ +Word 1,Word 2,Human (mean),1,2,3,4,5,6,7,8,9,10,11,12,13 +love,sex,6.77,9,6,8,8,7,8,8,4,7,2,6,7,8 +tiger,cat,7.35,9,7,8,7,8,9,8.5,5,6,9,7,5,7 +tiger,tiger,10.00,10,10,10,10,10,10,10,10,10,10,10,10,10 +book,paper,7.46,8,8,7,7,8,9,7,6,7,8,9,4,9 +computer,keyboard,7.62,8,7,9,9,8,8,7,7,6,8,10,3,9 +computer,internet,7.58,8,6,9,8,8,8,7.5,7,7,7,9,5,9 +plane,car,5.77,6,6,7,5,3,6,7,6,6,6,7,3,7 +train,car,6.31,7,7.5,7.5,5,3,6,7,6,6,6,9,4,8 +telephone,communication,7.50,7,6.5,8,8,6,8,8,7,5,9,9,8,8 +television,radio,6.77,7,7.5,9,7,3,6,7,8,5.5,6,8,6,8 +media,radio,7.42,7,7,8.5,9,6,7,7,7,5,7,10,8,8 +drug,abuse,6.85,7,5.5,8,10,7,9,7,7,4,5,8.5,4,7 +bread,butter,6.19,6,5.5,8,9,6,8,7,5,6,4,4,3,9 +cucumber,potato,5.92,7,7.5,7,6,4,6,6.5,4,6,4,5,6,8 +doctor,nurse,7.00,7,8,9,7,5,7,7,7,6,6,7,7,8 +professor,doctor,6.62,6,7.5,8,7,4,6,8.5,6,7,3,6,9,8 +student,professor,6.81,6,8,9,6,4,8,7.5,8,6,3,8,7,8 +smart,student,4.62,5,6,5,2,4,6,5,7,4,3,3,5,5 +smart,stupid,5.81,3,7,9,9,5,8,6,0,6.5,3,5,7,7 +company,stock,7.08,6,8,9,9,4,8,8,6,6,8,6,6,8 +stock,market,8.08,8,9,9.5,8,5,9,9,9,7,8,7.5,7,9 +stock,phone,1.62,3,1,0,1,4,3,1,1,1,3,0,2,1 +stock,CD,1.31,2,1,0,1,4,1,0,0,1,3,3,1,0 +stock,jaguar,0.92,1,0,0,1,4,0,2,0,1,3,0,0,0 +stock,egg,1.81,5,1.5,0,1,3,0,0,2,2,3,1,5,0 +fertility,egg,6.69,7,8,8,7,4,8,8,8,6,9,2,6,6 +stock,live,3.73,8,5.5,6,1,4,5,0,0,1,6,2,3,7 +stock,life,0.92,4,0,0,1,3,0,0,0,2,0,0,0,2 +book,library,7.46,8,9,8,9,5,9,8,7,6,8,7,6,7 +bank,money,8.12,8,9,9.5,9,5,9,8,9,6,9,9,8,7 +wood,forest,7.73,9,6,9.5,7,5,9,9,9,6,8,9,8,6 +money,cash,9.15,10,9.5,9.5,10,8,9,9.5,10,7,10,8.5,9,9 +professor,cucumber,0.31,1,0,0,1,2,0,0,0,0,0,0,0,0 +king,cabbage,0.23,1,0,0,1,1,0,0,0,0,0,0,0,0 +king,queen,8.58,9,9.5,9.5,10,7,8,8.5,9,8,8,8,8,9 +king,rook,5.92,7,7.5,7,6,7,8,8.5,0,8,0,6,5,7 +bishop,rabbi,6.69,7,7.5,8.5,2,5,7,9,7,8,7,6,7,6 +Jerusalem,Israel,8.46,9,8,9.5,9,8,8,8,8,9,8,9.5,7,9 +Jerusalem,Palestinian,7.65,9,8,9,8,4,8,8,7,9,8,9.5,5,7 +holy,sex,1.62,3,0,5,2,1,1,7,0,1,0,0,0,1 +fuck,sex,9.44,10,9.75,10,10,8,9,9,10,9,10,8,10,10 +Maradona,football,8.62,9,9,9.5,10,7,9,8.5,8,9,10,9,6,8 +football,soccer,9.03,9,9.9,9,10,8,7,9.5,10,8,10,9,9,9 +football,basketball,6.81,8,7.5,8.5,3,3,8,8,6,7.5,8,7,6,8 +football,tennis,6.63,7,7.25,8.5,3,3,7,8,6,7.5,8,7,6,8 +tennis,racket,7.56,4,8,9.5,9,4,9,7.5,8,7.8,8,8.5,6,9 +Arafat,peace,6.73,8,8,9.5,9,2,8,7,7,7,5,7,4,6 +Arafat,terror,7.65,8,8,9.5,9,5,9,7,7,8,10,8,4,7 +Arafat,Jackson,2.50,4,7.5,0,2,3,1,0,0,4,1,6,2,2 +law,lawyer,8.38,9,8,9.5,9,6,9,9.5,9,7,10,6,8,9 +movie,star,7.38,9,8,9.5,8,6,9,7,8,7,5,6.5,5,8 +movie,popcorn,6.19,7,6,9,4,5,7,8,9,6,4,6.5,2,7 +movie,critic,6.73,8,7.5,9.5,9,6,8,7.5,8,5,4,5,3,7 +movie,theater,7.92,8,8,9.5,9,6,8,8.5,7,7,10,6,7,9 +physics,proton,8.12,9,8.5,9,10,6,8,8.5,8,7,8,9.5,5,9 +physics,chemistry,7.35,8,8.5,9,8,5,7,8,7,8,7,7,4,9 +space,chemistry,4.88,6,8,3,5,5,6,7.5,6,5,3,1,2,6 +alcohol,chemistry,5.54,8,8,7,5,5,8,6,4,4,2,6,5,4 +vodka,gin,8.46,9,9.5,9,10,7,8,8.5,9,8,10,6,8,8 +vodka,brandy,8.13,9,9.25,9,7,7,8,8.5,9,8,10,6,7,8 +drink,car,3.04,7,0.5,0,2,2,7,5,5,4,0,2,0,5 +drink,ear,1.31,3,0,0,5,2,2,2,0,1,1,0,0,1 +drink,mouth,5.96,8,6,7,7,3,7,4,6,7.5,6,6,2,8 +drink,eat,6.87,8,8.75,9,9,3,7,8,9,7.5,0,5,7,8 +baby,mother,7.85,9,9,9,9,5,8,7,8,8,10,8,3,9 +drink,mother,2.65,3,1,1,3,3,7,0,2,6.5,0,4,1,3 +car,automobile,8.94,9,9.75,10,10,5,6,10,10,7.5,10,10,10,9 +gem,jewel,8.96,9,9.5,10,10,6,8,8.5,10,7.5,10,10,8,10 +journey,voyage,9.29,9,9.75,10,10,6,7,9.5,10,9.5,10,10,10,10 +boy,lad,8.83,9,9.75,10,10,6,5,9.5,9,7.5,10,10,9,10 +coast,shore,9.10,9,9.75,10,10,6,6,10,8,9.5,10,10,10,10 +asylum,madhouse,8.87,9,9.75,7,10,6,7,9.5,10,9,10,10,9,9 +magician,wizard,9.02,9,9.75,10,10,7,6,9,8,8.5,10,10,10,10 +midday,noon,9.29,10,9.75,9,10,7,6,9.5,10,9.5,10,10,10,10 +furnace,stove,8.79,9,9.75,9.5,10,7,7,9,9,8,10,10,8,8 +food,fruit,7.52,8,8.75,8,8,5,7,8,7,7,9,8,7,7 +bird,cock,7.10,8,8.5,8,7,4,7,7,6,6.8,9,8,7,6 +bird,crane,7.38,9,8.5,8.5,7,4,7,7,7,7,9,8,7,7 +tool,implement,6.46,8,6,8,7,4,7,6,6,5,6,10,7,4 +brother,monk,6.27,8,7,8,8,5,7,8.5,7,5,0,8,5,5 +crane,implement,2.69,3,6,1,1,4,1,0,6,1,0,9,3,0 +lad,brother,4.46,8,5.5,5,2,4,3,7,4,2.5,7,5,2,3 +journey,car,5.85,7,7,7,6,4,6,6,7,5,5,5,4,7 +monk,oracle,5.00,7,8,3,4,4,6,5,8,6,3,4,6,1 +cemetery,woodland,2.08,3,2,1,2,3,6,2,3,3,0,0,1,1 +food,rooster,4.42,7,4,4,6,3,6,7,2,4.5,2,8,1,3 +coast,hill,4.38,6,6,6,5,2,6,5,5,4,3,4,1,4 +forest,graveyard,1.85,4,2,1,1,2,6,1,3,3,0,0,1,0 +shore,woodland,3.08,6,6,1,1,2,6,5,4,4,3,0,1,1 +monk,slave,0.92,3,2,1,1,2,2,0,0,0,0,0,1,0 +coast,forest,3.15,6,6,1,1,2,6,5,4,4,3,1,1,1 +lad,wizard,0.92,4,0,0,1,2,3,0,0,0,0,0,1,1 +chord,smile,0.54,3,0,0,1,2,1,0,0,0,0,0,0,0 +glass,magician,2.08,4,1,4,2,2,3,0,0,0,0,10,0,1 +noon,string,0.54,2,0,0,1,2,1,0,0,1,0,0,0,0 +rooster,voyage,0.62,2,0,0,1,2,1,0,0,1,0,1,0,0 +money,dollar,8.42,9,9.5,9,10,5,8,8.5,8,8,10,8.5,8,8 +money,cash,9.08,10,9.5,9.5,10,5,9,9.5,10,8,10,8.5,9,10 +money,currency,9.04,10,9.5,9,10,5,9,9.5,9,9,10,8.5,9,10 +money,wealth,8.27,9,8,9,9,5,6,8.5,9,9,10,8,9,8 +money,property,7.57,8,8.25,6,8,5,8,8,7,8.2,8,8,7,9 +money,possession,7.29,8,8.25,7,7,5,7,7.5,5,9,7,8,7,9 +money,bank,8.50,9,8,9.5,9,6,9,8.5,9,8.5,10,8,7,9 +money,deposit,7.73,9,8,9.5,9,5,9,8,7,7,8,7,7,7 +money,withdrawal,6.88,8,8,9,9,5,9,8,5,6.5,8,2,5,7 +money,laundering,5.65,8,7,8,7,5,7,7.5,2,5,5,5,0,7 +money,operation,3.31,4,2,3,5,5,5,2,2,4,3,5,1,2 +tiger,jaguar,8.00,9,9,9,10,5,8,7.5,6,8,9,8.5,7,8 +tiger,feline,8.00,9,7.5,9.5,8,5,8,8.5,8,8,9,8.5,7,8 +tiger,carnivore,7.08,9,6,8,5,5,8,7,7,8.1,8,6,7,8 +tiger,mammal,6.85,9,7,7.5,5,5,7,7,7,8,8,8.5,6,4 +tiger,animal,7.00,8,7,7.5,5,5,6,6,7,7.5,9,10,5,8 +tiger,organism,4.77,8,7,6,1,5,5,1,2,6,4,10,5,2 +tiger,fauna,5.62,8,7,7.5,1,2,6,7,2,5.5,9,10,5,3 +tiger,zoo,5.87,8,5.25,8,3,5,7,6,8,6,5,5,5,5 +psychology,psychiatry,8.08,9,8.5,9.5,9,4,8,8,8,7,9,9,8,8 +psychology,anxiety,7.00,7,7,8.5,4,5,8,5,7,8,8,8.5,7,8 +psychology,fear,6.85,8,7,8.5,4,5,8,5,5,8,8,8.5,7,7 +psychology,depression,7.42,9,8,9,5,5,8,5,7,8,8,8.5,7,9 +psychology,clinic,6.58,8,8,9.5,5,4,9,7,6,6,7,6,4,6 +psychology,doctor,6.42,9,8,9,5,5,8,7.5,6,5,5,7,4,5 +psychology,Freud,8.21,9,9.25,9.5,10,5,8,8,9,7.5,9,8.5,7,7 +psychology,mind,7.69,9,9.5,9,9,5,8,5,8,7,8,8.5,7,7 +psychology,health,7.23,9,8,8.5,5,5,7,5,8,8,8,8.5,6,8 +psychology,science,6.71,8,7.75,7.5,5,5,7,4,8,6.5,7,9.5,4,8 +psychology,discipline,5.58,8,7,7.5,6,4,6,4,7,6,8,2,5,2 +psychology,cognition,7.48,9,9.75,8.5,6,3,8,8,8,6.5,9,7.5,8,6 +planet,star,8.45,9,9.9,10,10,5,8,8.5,9,8,9,8.5,7,8 +planet,constellation,8.06,9,8.25,9,9,6,8,8,8,8,9,8.5,6,8 +planet,moon,8.08,9,8.5,9,9,5,8,7,9,8,10,8.5,7,7 +planet,sun,8.02,9,8.75,9,8,5,8,7,9,8,10,8.5,7,7 +planet,galaxy,8.11,9,8.25,9.5,8,5,8,8,8,8.2,10,9.5,6,8 +planet,space,7.92,9,8,9.5,6,5,8,7,8,8,10,9.5,6,9 +planet,astronomer,7.94,9,8.25,9.5,8,5,8,7,7,8,10,7.5,7,9 +precedent,example,5.85,6,8.5,9.5,10,3,7,6,8,1,1,9,2,5 +precedent,information,3.85,5,5.5,6,8,4,5,1,2,0,1,7.5,2,3 +precedent,cognition,2.81,6,5.5,2,7,3,3,0,0,0,1,7,1,1 +precedent,law,6.65,8,7,8.5,8,3,8,7,5,7.5,8,8.5,5,3 +precedent,collection,2.50,7,5.5,1,3,3,5,0,0,0,0,6,1,1 +precedent,group,1.77,6,1,1,2,3,5,0,0,0,0,4,1,0 +precedent,antecedent,6.04,9.5,0,9.5,9,4,7,7.5,7,8,7,5,3,2 +cup,coffee,6.58,9,8,9,8,5,9,8,5,6.5,5,4,3,6 +cup,tableware,6.85,7,8.5,8,9,5,7,7,4,5,9,8.5,5,6 +cup,article,2.40,1,8.25,6,3,3,0,0,0,0,3,3,2,2 +cup,artifact,2.92,7,8,1,2,4,0,2,1,5,3,4,0,1 +cup,object,3.69,8,8,4,2,5,3,2,5,5,0,3,2,1 +cup,entity,2.15,3,6,3,1,4,3,0,3,4,0,1,0,0 +cup,drink,7.25,9,7.75,9,8,4,8,6,8,8,6,7.5,6,7 +cup,food,5.00,7,7,6,2,3,7,3,7,6,4,4,4,5 +cup,substance,1.92,3,3,2,1,3,2,1,3,5,0,2,0,0 +cup,liquid,5.90,9,7.75,7,5,4,7,4,7,7,6,7,4,2 +jaguar,cat,7.42,9,7,8,8,4,8,7.5,7,7,9,7,7,8 +jaguar,car,7.27,9,9,8.5,8,4,8,7,7,8,9,4,5,8 diff --git a/WordSim353/data/original_finkelstein/set1.tab b/WordSim353/data/original_finkelstein/set1.tab new file mode 100644 index 0000000..69a89f0 --- /dev/null +++ b/WordSim353/data/original_finkelstein/set1.tab @@ -0,0 +1,154 @@ +Word 1 Word 2 Human (mean) 1 2 3 4 5 6 7 8 9 10 11 12 13 +love sex 6.77 9 6 8 8 7 8 8 4 7 2 6 7 8 +tiger cat 7.35 9 7 8 7 8 9 8.5 5 6 9 7 5 7 +tiger tiger 10.00 10 10 10 10 10 10 10 10 10 10 10 10 10 +book paper 7.46 8 8 7 7 8 9 7 6 7 8 9 4 9 +computer keyboard 7.62 8 7 9 9 8 8 7 7 6 8 10 3 9 +computer internet 7.58 8 6 9 8 8 8 7.5 7 7 7 9 5 9 +plane car 5.77 6 6 7 5 3 6 7 6 6 6 7 3 7 +train car 6.31 7 7.5 7.5 5 3 6 7 6 6 6 9 4 8 +telephone communication 7.50 7 6.5 8 8 6 8 8 7 5 9 9 8 8 +television radio 6.77 7 7.5 9 7 3 6 7 8 5.5 6 8 6 8 +media radio 7.42 7 7 8.5 9 6 7 7 7 5 7 10 8 8 +drug abuse 6.85 7 5.5 8 10 7 9 7 7 4 5 8.5 4 7 +bread butter 6.19 6 5.5 8 9 6 8 7 5 6 4 4 3 9 +cucumber potato 5.92 7 7.5 7 6 4 6 6.5 4 6 4 5 6 8 +doctor nurse 7.00 7 8 9 7 5 7 7 7 6 6 7 7 8 +professor doctor 6.62 6 7.5 8 7 4 6 8.5 6 7 3 6 9 8 +student professor 6.81 6 8 9 6 4 8 7.5 8 6 3 8 7 8 +smart student 4.62 5 6 5 2 4 6 5 7 4 3 3 5 5 +smart stupid 5.81 3 7 9 9 5 8 6 0 6.5 3 5 7 7 +company stock 7.08 6 8 9 9 4 8 8 6 6 8 6 6 8 +stock market 8.08 8 9 9.5 8 5 9 9 9 7 8 7.5 7 9 +stock phone 1.62 3 1 0 1 4 3 1 1 1 3 0 2 1 +stock CD 1.31 2 1 0 1 4 1 0 0 1 3 3 1 0 +stock jaguar 0.92 1 0 0 1 4 0 2 0 1 3 0 0 0 +stock egg 1.81 5 1.5 0 1 3 0 0 2 2 3 1 5 0 +fertility egg 6.69 7 8 8 7 4 8 8 8 6 9 2 6 6 +stock live 3.73 8 5.5 6 1 4 5 0 0 1 6 2 3 7 +stock life 0.92 4 0 0 1 3 0 0 0 2 0 0 0 2 +book library 7.46 8 9 8 9 5 9 8 7 6 8 7 6 7 +bank money 8.12 8 9 9.5 9 5 9 8 9 6 9 9 8 7 +wood forest 7.73 9 6 9.5 7 5 9 9 9 6 8 9 8 6 +money cash 9.15 10 9.5 9.5 10 8 9 9.5 10 7 10 8.5 9 9 +professor cucumber 0.31 1 0 0 1 2 0 0 0 0 0 0 0 0 +king cabbage 0.23 1 0 0 1 1 0 0 0 0 0 0 0 0 +king queen 8.58 9 9.5 9.5 10 7 8 8.5 9 8 8 8 8 9 +king rook 5.92 7 7.5 7 6 7 8 8.5 0 8 0 6 5 7 +bishop rabbi 6.69 7 7.5 8.5 2 5 7 9 7 8 7 6 7 6 +Jerusalem Israel 8.46 9 8 9.5 9 8 8 8 8 9 8 9.5 7 9 +Jerusalem Palestinian 7.65 9 8 9 8 4 8 8 7 9 8 9.5 5 7 +holy sex 1.62 3 0 5 2 1 1 7 0 1 0 0 0 1 +fuck sex 9.44 10 9.75 10 10 8 9 9 10 9 10 8 10 10 +Maradona football 8.62 9 9 9.5 10 7 9 8.5 8 9 10 9 6 8 +football soccer 9.03 9 9.9 9 10 8 7 9.5 10 8 10 9 9 9 +football basketball 6.81 8 7.5 8.5 3 3 8 8 6 7.5 8 7 6 8 +football tennis 6.63 7 7.25 8.5 3 3 7 8 6 7.5 8 7 6 8 +tennis racket 7.56 4 8 9.5 9 4 9 7.5 8 7.8 8 8.5 6 9 +Arafat peace 6.73 8 8 9.5 9 2 8 7 7 7 5 7 4 6 +Arafat terror 7.65 8 8 9.5 9 5 9 7 7 8 10 8 4 7 +Arafat Jackson 2.50 4 7.5 0 2 3 1 0 0 4 1 6 2 2 +law lawyer 8.38 9 8 9.5 9 6 9 9.5 9 7 10 6 8 9 +movie star 7.38 9 8 9.5 8 6 9 7 8 7 5 6.5 5 8 +movie popcorn 6.19 7 6 9 4 5 7 8 9 6 4 6.5 2 7 +movie critic 6.73 8 7.5 9.5 9 6 8 7.5 8 5 4 5 3 7 +movie theater 7.92 8 8 9.5 9 6 8 8.5 7 7 10 6 7 9 +physics proton 8.12 9 8.5 9 10 6 8 8.5 8 7 8 9.5 5 9 +physics chemistry 7.35 8 8.5 9 8 5 7 8 7 8 7 7 4 9 +space chemistry 4.88 6 8 3 5 5 6 7.5 6 5 3 1 2 6 +alcohol chemistry 5.54 8 8 7 5 5 8 6 4 4 2 6 5 4 +vodka gin 8.46 9 9.5 9 10 7 8 8.5 9 8 10 6 8 8 +vodka brandy 8.13 9 9.25 9 7 7 8 8.5 9 8 10 6 7 8 +drink car 3.04 7 0.5 0 2 2 7 5 5 4 0 2 0 5 +drink ear 1.31 3 0 0 5 2 2 2 0 1 1 0 0 1 +drink mouth 5.96 8 6 7 7 3 7 4 6 7.5 6 6 2 8 +drink eat 6.87 8 8.75 9 9 3 7 8 9 7.5 0 5 7 8 +baby mother 7.85 9 9 9 9 5 8 7 8 8 10 8 3 9 +drink mother 2.65 3 1 1 3 3 7 0 2 6.5 0 4 1 3 +car automobile 8.94 9 9.75 10 10 5 6 10 10 7.5 10 10 10 9 +gem jewel 8.96 9 9.5 10 10 6 8 8.5 10 7.5 10 10 8 10 +journey voyage 9.29 9 9.75 10 10 6 7 9.5 10 9.5 10 10 10 10 +boy lad 8.83 9 9.75 10 10 6 5 9.5 9 7.5 10 10 9 10 +coast shore 9.10 9 9.75 10 10 6 6 10 8 9.5 10 10 10 10 +asylum madhouse 8.87 9 9.75 7 10 6 7 9.5 10 9 10 10 9 9 +magician wizard 9.02 9 9.75 10 10 7 6 9 8 8.5 10 10 10 10 +midday noon 9.29 10 9.75 9 10 7 6 9.5 10 9.5 10 10 10 10 +furnace stove 8.79 9 9.75 9.5 10 7 7 9 9 8 10 10 8 8 +food fruit 7.52 8 8.75 8 8 5 7 8 7 7 9 8 7 7 +bird cock 7.10 8 8.5 8 7 4 7 7 6 6.8 9 8 7 6 +bird crane 7.38 9 8.5 8.5 7 4 7 7 7 7 9 8 7 7 +tool implement 6.46 8 6 8 7 4 7 6 6 5 6 10 7 4 +brother monk 6.27 8 7 8 8 5 7 8.5 7 5 0 8 5 5 +crane implement 2.69 3 6 1 1 4 1 0 6 1 0 9 3 0 +lad brother 4.46 8 5.5 5 2 4 3 7 4 2.5 7 5 2 3 +journey car 5.85 7 7 7 6 4 6 6 7 5 5 5 4 7 +monk oracle 5.00 7 8 3 4 4 6 5 8 6 3 4 6 1 +cemetery woodland 2.08 3 2 1 2 3 6 2 3 3 0 0 1 1 +food rooster 4.42 7 4 4 6 3 6 7 2 4.5 2 8 1 3 +coast hill 4.38 6 6 6 5 2 6 5 5 4 3 4 1 4 +forest graveyard 1.85 4 2 1 1 2 6 1 3 3 0 0 1 0 +shore woodland 3.08 6 6 1 1 2 6 5 4 4 3 0 1 1 +monk slave 0.92 3 2 1 1 2 2 0 0 0 0 0 1 0 +coast forest 3.15 6 6 1 1 2 6 5 4 4 3 1 1 1 +lad wizard 0.92 4 0 0 1 2 3 0 0 0 0 0 1 1 +chord smile 0.54 3 0 0 1 2 1 0 0 0 0 0 0 0 +glass magician 2.08 4 1 4 2 2 3 0 0 0 0 10 0 1 +noon string 0.54 2 0 0 1 2 1 0 0 1 0 0 0 0 +rooster voyage 0.62 2 0 0 1 2 1 0 0 1 0 1 0 0 +money dollar 8.42 9 9.5 9 10 5 8 8.5 8 8 10 8.5 8 8 +money cash 9.08 10 9.5 9.5 10 5 9 9.5 10 8 10 8.5 9 10 +money currency 9.04 10 9.5 9 10 5 9 9.5 9 9 10 8.5 9 10 +money wealth 8.27 9 8 9 9 5 6 8.5 9 9 10 8 9 8 +money property 7.57 8 8.25 6 8 5 8 8 7 8.2 8 8 7 9 +money possession 7.29 8 8.25 7 7 5 7 7.5 5 9 7 8 7 9 +money bank 8.50 9 8 9.5 9 6 9 8.5 9 8.5 10 8 7 9 +money deposit 7.73 9 8 9.5 9 5 9 8 7 7 8 7 7 7 +money withdrawal 6.88 8 8 9 9 5 9 8 5 6.5 8 2 5 7 +money laundering 5.65 8 7 8 7 5 7 7.5 2 5 5 5 0 7 +money operation 3.31 4 2 3 5 5 5 2 2 4 3 5 1 2 +tiger jaguar 8.00 9 9 9 10 5 8 7.5 6 8 9 8.5 7 8 +tiger feline 8.00 9 7.5 9.5 8 5 8 8.5 8 8 9 8.5 7 8 +tiger carnivore 7.08 9 6 8 5 5 8 7 7 8.1 8 6 7 8 +tiger mammal 6.85 9 7 7.5 5 5 7 7 7 8 8 8.5 6 4 +tiger animal 7.00 8 7 7.5 5 5 6 6 7 7.5 9 10 5 8 +tiger organism 4.77 8 7 6 1 5 5 1 2 6 4 10 5 2 +tiger fauna 5.62 8 7 7.5 1 2 6 7 2 5.5 9 10 5 3 +tiger zoo 5.87 8 5.25 8 3 5 7 6 8 6 5 5 5 5 +psychology psychiatry 8.08 9 8.5 9.5 9 4 8 8 8 7 9 9 8 8 +psychology anxiety 7.00 7 7 8.5 4 5 8 5 7 8 8 8.5 7 8 +psychology fear 6.85 8 7 8.5 4 5 8 5 5 8 8 8.5 7 7 +psychology depression 7.42 9 8 9 5 5 8 5 7 8 8 8.5 7 9 +psychology clinic 6.58 8 8 9.5 5 4 9 7 6 6 7 6 4 6 +psychology doctor 6.42 9 8 9 5 5 8 7.5 6 5 5 7 4 5 +psychology Freud 8.21 9 9.25 9.5 10 5 8 8 9 7.5 9 8.5 7 7 +psychology mind 7.69 9 9.5 9 9 5 8 5 8 7 8 8.5 7 7 +psychology health 7.23 9 8 8.5 5 5 7 5 8 8 8 8.5 6 8 +psychology science 6.71 8 7.75 7.5 5 5 7 4 8 6.5 7 9.5 4 8 +psychology discipline 5.58 8 7 7.5 6 4 6 4 7 6 8 2 5 2 +psychology cognition 7.48 9 9.75 8.5 6 3 8 8 8 6.5 9 7.5 8 6 +planet star 8.45 9 9.9 10 10 5 8 8.5 9 8 9 8.5 7 8 +planet constellation 8.06 9 8.25 9 9 6 8 8 8 8 9 8.5 6 8 +planet moon 8.08 9 8.5 9 9 5 8 7 9 8 10 8.5 7 7 +planet sun 8.02 9 8.75 9 8 5 8 7 9 8 10 8.5 7 7 +planet galaxy 8.11 9 8.25 9.5 8 5 8 8 8 8.2 10 9.5 6 8 +planet space 7.92 9 8 9.5 6 5 8 7 8 8 10 9.5 6 9 +planet astronomer 7.94 9 8.25 9.5 8 5 8 7 7 8 10 7.5 7 9 +precedent example 5.85 6 8.5 9.5 10 3 7 6 8 1 1 9 2 5 +precedent information 3.85 5 5.5 6 8 4 5 1 2 0 1 7.5 2 3 +precedent cognition 2.81 6 5.5 2 7 3 3 0 0 0 1 7 1 1 +precedent law 6.65 8 7 8.5 8 3 8 7 5 7.5 8 8.5 5 3 +precedent collection 2.50 7 5.5 1 3 3 5 0 0 0 0 6 1 1 +precedent group 1.77 6 1 1 2 3 5 0 0 0 0 4 1 0 +precedent antecedent 6.04 9.5 0 9.5 9 4 7 7.5 7 8 7 5 3 2 +cup coffee 6.58 9 8 9 8 5 9 8 5 6.5 5 4 3 6 +cup tableware 6.85 7 8.5 8 9 5 7 7 4 5 9 8.5 5 6 +cup article 2.40 1 8.25 6 3 3 0 0 0 0 3 3 2 2 +cup artifact 2.92 7 8 1 2 4 0 2 1 5 3 4 0 1 +cup object 3.69 8 8 4 2 5 3 2 5 5 0 3 2 1 +cup entity 2.15 3 6 3 1 4 3 0 3 4 0 1 0 0 +cup drink 7.25 9 7.75 9 8 4 8 6 8 8 6 7.5 6 7 +cup food 5.00 7 7 6 2 3 7 3 7 6 4 4 4 5 +cup substance 1.92 3 3 2 1 3 2 1 3 5 0 2 0 0 +cup liquid 5.90 9 7.75 7 5 4 7 4 7 7 6 7 4 2 +jaguar cat 7.42 9 7 8 8 4 8 7.5 7 7 9 7 7 8 +jaguar car 7.27 9 9 8.5 8 4 8 7 7 8 9 4 5 8 diff --git a/WordSim353/data/original_finkelstein/set2.csv b/WordSim353/data/original_finkelstein/set2.csv new file mode 100644 index 0000000..97fbbdc --- /dev/null +++ b/WordSim353/data/original_finkelstein/set2.csv @@ -0,0 +1,201 @@ +Word 1,Word 2,Human (mean),1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 +energy,secretary,1.81,1,0,4,2,4,5,1,1,1,0,1,1,4,0,2,2 +secretary,senate,5.06,7,1,7,4,4,7,1,3,4,8,4,5,6,7,6,7 +energy,laboratory,5.09,7,1,7.5,4,6,7,4,6,1,2,4,3,7,9,6,7 +computer,laboratory,6.78,8,5,8,7,6,9,6,7,6,7.5,4,5,8,9,7,6 +weapon,secret,6.06,7,4,8,6,6,9,2,6,3,6,5,6,8,9,7,5 +FBI,fingerprint,6.94,8,6,8,5,5,9,7,7,6,6,6,8,9,7,6,8 +FBI,investigation,8.31,9,9,8.5,9,7,9,8,8,8,7.5,6,9,10,9,7,9 +investigation,effort,4.59,5,1,7.5,2,4,7,6,5,2,2,2,7,6,5,6,6 +Mars,water,2.94,2,1,3,2,1,8,0,4,2,6,1,1,3,0,5,8 +Mars,scientist,5.63,8,1,7,4,6,8,1,6,5,6,2,9,7,5,7,8 +news,report,8.16,9,6,8.5,8,7,9,7,8,7,8,7,9,10,9,9,9 +canyon,landscape,7.53,9,7.5,7,7,7,7,8,7,7,8,6,9,8,6,8,9 +image,surface,4.56,7,1,5,1,1,5,4,3,4,4,5,5,7,7,8,6 +discovery,space,6.34,8,2,7.5,9,5,7,4,7,5,6,5,7,8,8,7,6 +water,seepage,6.56,8,7,9,7,7,8,7,6,0,6,1,8,7,8,8,8 +sign,recess,2.38,4,1,2,4,5,4,0,4,3,0,1,0,0,0,6,4 +Wednesday,news,2.22,4,1,4,2,3,6,2,3,0.5,0,1,1,0,1,4,3 +mile,kilometer,8.66,9,9.5,9,8,9,8,9,9,8.5,7.5,8,8,10,8,9,9 +computer,news,4.47,5,1,7,6,5,5,1,4,6.5,4,2,5,3,7,6,4 +territory,surface,5.34,6,2,8.5,4,7,7,8,4,2,6,6,5,6,2,8,4 +atmosphere,landscape,3.69,7,0,2,1,8,7,1,5,2,0,2,5,6,1,7,5 +president,medal,3.00,5,2,1,3,6,6,1,7,2,0,1,3,2,1,4,4 +war,troops,8.13,8,8.5,9,9,8,8,8,8,6,7.5,8,8,9,8,9,8 +record,number,6.31,8,6,8,5,7,7,3,4,5,8,5,8,8,5,8,6 +skin,eye,6.22,7,9,7,3,6,6,7,7,6,7.5,5,6,8,2,8,5 +Japanese,American,6.50,7,6,8.5,6,6,4,8,7,7,7.5,5,8,9,1,8,6 +theater,history,3.91,5,6,6,4,5,3,0,3,6.5,6,1,5,1,1,7,3 +volunteer,motto,2.56,2,5,1,1,4,2,0,3,3,0,4,7,0,3,4,2 +prejudice,recognition,3.00,7,4,2,1,6,2,4,5,1,0,6,5,0,0,3,2 +decoration,valor,5.63,6,8,7,8,8,2,2,9,5,0,7,8,9,1,8,2 +century,year,7.59,8,9,8,9,7,6,8,8,7,7.5,7,9,8,5,9,6 +century,nation,3.16,5,0,7.5,5,4,4,0,2,2,4,2,2,2,0,8,3 +delay,racism,1.19,1,0,1,1,6,1,0,1,0,0,4,0,0,0,3,1 +delay,news,3.31,7,4,3,1,6,5,6,4,4,0,1,4,3,0,3,2 +minister,party,6.63,8,7.5,8,7,6,7,8,8,5,7.5,6,1,8,8,8,3 +peace,plan,4.75,5,2,7,6,7,4,3,5,4,4,5,3,7,2,9,3 +minority,peace,3.69,6,0,7,3,1,5,6,4,4,4,3,3,5,0,5,3 +attempt,peace,4.25,7,4,7,2,7,4,2,3,3,4,3,5,5,4,5,3 +government,crisis,6.56,8,5,8,5,7,7,5,6,5,6,7,8,7,9,7,5 +deployment,departure,4.25,7,0,2,6,7,5,6,4,2,2,5,6,2,0,8,6 +deployment,withdrawal,5.88,9,9,6,6,3,8,8,4,3,2,5,8,9,0,8,6 +energy,crisis,5.94,8,5,8,5,8,8,8,4,1,4,2,7,5,8,8,6 +announcement,news,7.56,8,7,8,8,8,9,8,6,6,8,8,8,6,8,9,6 +announcement,effort,2.75,5,6,2,2,1,5,4,2,2,2,2,0,3,0,5,3 +stroke,hospital,7.03,9,8,8,8,7,3,8,7,6,7.5,7,7,9,3,8,7 +disability,death,5.47,7,8,6.5,4,3,7,7,5,6,2,7,2,8,2,8,5 +victim,emergency,6.47,8,7,7.5,4,5,6,6,7,6,4,5,6,9,9,9,5 +treatment,recovery,7.91,8,8,8.5,9,9,8,9,8,6.5,7.5,7,7,10,5,9,7 +journal,association,4.97,8,2,7.5,7,1,5,4,6,3,6,7,3,7,1,8,4 +doctor,personnel,5.00,7,2,8,6,4,7,2,6,2,6,4,5,7,3,8,3 +doctor,liability,5.19,7,4,8,7,4,6,4,5,4,2,4,2,6,8,7,5 +liability,insurance,7.03,6,8.5,9,5,8,9,6,8,5,4,7,8,8,5,9,7 +school,center,3.44,6,1,4,1,5,2,4,3,3,4,5,1,3,3,7,3 +reason,hypertension,2.31,4,1,1,2,6,1,0,1,3,2,2,7,0,2,3,2 +reason,criterion,5.91,3,2,8,7,9,3,6,4,4.5,8,7,7,8,6,7,5 +hundred,percent,7.38,9,5,9,3,10,9,6,7,7,6,6,7,10,9,8,7 +Harvard,Yale,8.13,9,8,9,10,8,8,9,10,8.5,7.5,8,8,10,0,8,9 +hospital,infrastructure,4.63,5,2,1,5,6,5,4,7,3,4,5,5,5,3,7,7 +death,row,5.25,2,7,8,2,8,7,6,3,7,4,2,7,9,0,8,4 +death,inmate,5.03,4,5,7.5,1,5,4,7,3,6,2,6,6,3,8,8,5 +lawyer,evidence,6.69,7,6.5,8.5,7,8,6,8,8,7,3,5,8,10,0,9,6 +life,death,7.88,9,9.5,9.5,5,10,8,8,8,6.5,7.5,8,9,10,0,9,9 +life,term,4.50,2,8,2,1,8,7,6,3,1,4,2,8,3,3,8,6 +word,similarity,4.75,6,1,8,2,10,7,6,2,1,4,2,5,0,9,7,6 +board,recommendation,4.47,6,4,2,1,7,8,3,4,1,7.5,2,7,7,0,7,5 +governor,interview,3.25,4,0,4,1,7,6,0,5,0,2,3,5,3,3,4,5 +OPEC,country,5.63,7,4,8,4,0,4,8,6,5,8,4,6,7,8,6,5 +peace,atmosphere,3.69,6,5,5,1,0,6,3,5,2,6,1,3,3,0,7,6 +peace,insurance,2.94,6,4,1,1,7,4,0,3,2,6,5,1,0,0,3,4 +territory,kilometer,5.28,6,6,8,1,5,8,7,6,4,7.5,5,3,3,2,8,5 +travel,activity,5.00,7,5,6.5,2,5,6,6,6,5,7.5,3,2,4,2,8,5 +competition,price,6.44,7,8,7.5,5,6,7,8,4,6,7.5,5,6,9,5,9,3 +consumer,confidence,4.13,7,4,2,3,3,3,1,2,2,6,2,7,9,4,8,3 +consumer,energy,4.75,5,3,8,2,6,6,0,4,0,4,7,6,6,9,8,2 +problem,airport,2.38,2,2,1,0,5,4,0,3,0,4,1,2,0,7,5,2 +car,flight,4.94,6,3,7,5,6,6,4,7,4,2,7,5,8,0,5,4 +credit,card,8.06,8,6,9,8,9,8,8,9,7,8,5,8,10,9,9,8 +credit,information,5.31,7,5,2,3,7,4,1,5,7,1,2,8,10,9,8,6 +hotel,reservation,8.03,8,7,9,7,8,8,8,8,7,7.5,7,8,10,9,9,8 +grocery,money,5.94,8,5,7.5,2,7,7,7,5,6.5,6,6,8,6,2,5,7 +registration,arrangement,6.00,8,8,7,7,8,4,1,4,7,6,6,6,8,3,8,5 +arrangement,accommodation,5.41,5,6,7,6,4,4,4,6,3,7.5,5,5,7,6,7,4 +month,hotel,1.81,4,0,1,1,3,6,0,2,1,1,2,0,3,0,3,2 +type,kind,8.97,9,9.5,9.5,10,8,9,9,10,8.5,9,9,9,9,9,9,7 +arrival,hotel,6.00,7,8,6.5,1,6,9,7,5,6,7.5,4,6,7,4,6,6 +bed,closet,6.72,8,7.5,8,5,7,8,7,8,7,6,7,5,9,1,8,6 +closet,clothes,8.00,8,7,9,10,8,9,8,9,9,8,7,8,9,3,9,7 +situation,conclusion,4.81,8,4,6,4,6,3,7,6,2,6,6,7,4,0,6,2 +situation,isolation,3.88,8,3,1,2,6,3,0,3,2,6,6,7,3,0,8,4 +impartiality,interest,5.16,7,9.5,8,2,4,3,0,7,6,3,7,6,9,0,8,3 +direction,combination,2.25,2,0,1,1,7,2,0,2,2,2,4,3,0,1,6,3 +street,place,6.44,7,7,6,7,5,7,5,7,6,4,7,8,4,7,9,7 +street,avenue,8.88,9,9,8.5,9,9,9,7,10,8.5,9,7,9,10,9,10,9 +street,block,6.88,5,7,8.5,7,4,8,7,9,8.5,9,6,9,4,0,9,9 +street,children,4.94,6,6,6,2,5,7,2,5,4,6,3,5,6,5,5,6 +listing,proximity,2.56,3,0,1,1,5,4,0,3,1,2,2,4,3,1,7,4 +listing,category,6.38,2,3,7,9,7,6,7,7,4,8,7,8,10,3,8,6 +cell,phone,7.81,8,6,8,9,9,8,8,8,8,8,3,9,8,9,8,8 +production,hike,1.75,2,2,1,1,6,3,0,1,1,0,2,3,0,0,4,2 +benchmark,index,4.25,5,5,2,2,7,4,5,7,3,1,7,2,6,4,5,3 +media,trading,3.88,6,2,5,1,7,6,3,4,2,2,6,2,5,0,8,3 +media,gain,2.88,5,0,2,1,7,4,2,2,3,2,5,1,3,0,7,2 +dividend,payment,7.63,6,9,7,4,9,8,8,8,7,8,7,8,8,9,9,7 +dividend,calculation,6.48,7,8.75,6.5,1,9,7,6,7,6.5,8,3,6,7,8,8,5 +calculation,computation,8.44,9,9.5,9.5,8,8,9,5,10,9,8,8,9,7,9,9,8 +currency,market,7.50,8,5,7.5,5,9,8,7,8,7,7.5,6,8,8,9,9,8 +OPEC,oil,8.59,8,8,9,10,10,8,8,8,8,7.5,7,9,10,9,9,9 +oil,stock,6.34,6,5,8,6,7,6,2,6,8,7.5,6,6,7,8,7,6 +announcement,production,3.38,5,0,3,2,6,5,1,4,2,2,3,6,3,5,6,1 +announcement,warning,6.00,7,7,5,7,8,4,4,8,5,7,6,8,3,8,7,2 +profit,warning,3.88,7,7,1,5,4,6,4,3,5,1,3,3,0,0,7,6 +profit,loss,7.63,8,9.5,9.5,10,8,8,8,9,6,4,8,8,10,0,9,7 +dollar,yen,7.78,8,9,9,10,7,5,8,8,7,7.5,8,8,10,3,9,8 +dollar,buck,9.22,9,10,9.5,10,9,8,9,10,9,8,10,10,8,9,10,9 +dollar,profit,7.38,8,6,9,9,9,7,7,8,8,6,7,5,6,7,8,8 +dollar,loss,6.09,8,6,8.5,2,5,7,7,8,4,6,5,5,5,7,8,6 +computer,software,8.50,9,8,9,8,9,8,8,9,8,9,8,8,10,9,9,7 +network,hardware,8.31,8,8.5,8.5,9,9,7,8,7,8,9,8,9,8,9,9,8 +phone,equipment,7.13,8,8.5,7.5,5,9,6,7,6,6,8,5,7,7,9,8,7 +equipment,maker,5.91,8,7,7,6,6,5,8,5,2,7.5,3,4,6,5,8,7 +luxury,car,6.47,7,6,8,6,7,7,5,5,3,7.5,6,6,7,7,8,8 +five,month,3.38,5,6,2,1,5,4,1,5,2,4,2,1,3,6,5,2 +report,gain,3.63,6,5,4,1,4,5,4,3,2,0,2,1,7,7,6,1 +investor,earning,7.13,8,7,8,8,7,7,8,7,3,8,7,6,8,7,8,7 +liquid,water,7.89,8,7.75,8.5,8,7,8,4,8,7,9,8,9,8,9,9,8 +baseball,season,5.97,8,3,8.5,7,8,8,4,6,5,8,3,6,7,2,7,5 +game,victory,7.03,8,8,7,7,5,8,6,7,6.5,8,7,5,9,8,7,6 +game,team,7.69,8,8.5,8.5,8,5,8,6,9,7,9,7,7,9,8,8,7 +marathon,sprint,7.47,7,9,7,8,6,8,7,8,6.5,9,8,8,5,9,8,6 +game,series,6.19,7,8,7.5,6,5,8,5,6,2,7.5,3,8,6,5,8,7 +game,defeat,6.97,8,8,7.5,7,6,8,6,7,6,8,7,5,9,6,7,6 +seven,series,3.56,5,6,2,2,5,4,4,5,3,4,4,1,0,1,7,4 +seafood,sea,7.47,9,8,7.5,8,9,9,7,7,7,9,6,6,5,7,8,7 +seafood,food,8.34,9,9.5,9,9,9,8,4,9,7,9,8,9,8,9,9,8 +seafood,lobster,8.70,9,9.75,8.5,10,9,9,6,10,7,9,9,9,8,9,9,8 +lobster,food,7.81,8,8,8,10,9,7,4,9,7,9,6,9,9,7,8,7 +lobster,wine,5.70,7,7.75,7.5,1,6,6,3,8,5.5,7.5,4,6,7,1,7,7 +food,preparation,6.22,6,5,6.5,5,9,6,3,7,6,8,5,6,6,7,8,6 +video,archive,6.34,7,6,7,5,9,7,4,7,4,7.5,5,7,5,9,8,4 +start,year,4.06,5,5.5,6.5,2,5,3,0,6,4,6,2,2,3,9,4,2 +start,match,4.47,5,2,6.5,1,9,3,3,8,1,2,3,5,5,9,6,3 +game,round,5.97,4,8,8,4,5,5,7,9,4,7.5,5,6,7,5,8,3 +boxing,round,7.61,6,8.25,7.5,7,8,7,8,9,4,8,7,8,10,9,9,6 +championship,tournament,8.36,9,8.75,9,9,9,8,7,10,7,8,8,8,10,9,8,6 +fighting,defeating,7.41,8,8,8,8,5,7,6,9,7,7.5,8,9,8,5,9,6 +line,insurance,2.69,5,2,2,1,6,3,3,4,1,2,2,2,0,0,9,1 +day,summer,3.94,7,7,2,1,4,3,1,7,3,4,4,4,6,1,5,4 +summer,drought,7.16,8,8,8,9,5,7,7,8,5,7.5,5,4,8,9,8,8 +summer,nature,5.63,5,6,4,7,9,5,6,7,4,6,6,3,3,6,7,6 +day,dawn,7.53,8,8.5,8,8,9,8,6,8,6,6,8,7,8,7,8,7 +nature,environment,8.31,9,6.5,8.5,9,9,9,7,9,8,8,8,8,10,9,8,7 +environment,ecology,8.81,9,8.5,8.5,9,9,9,8,10,8,9,9,9,10,7,9,9 +nature,man,6.25,5,6,8,5,9,5,5,7,3,8,5,6,8,5,8,7 +man,woman,8.30,8,9.75,9,10,9,9,8,9,7.5,7.5,9,9,10,1,9,8 +man,governor,5.25,7,4.5,5,1,6,4,3,7,2,7.5,3,7,7,8,7,5 +murder,manslaughter,8.53,8,9.9,9.5,10,7,9,9,10,6,4,8,9,9,9,10,9 +soap,opera,7.94,8,4,8.5,7,9,9,8,9,8,7.5,7,8,9,9,7,9 +opera,performance,6.88,8,2,7.5,5,9,5,7,7,8,7.5,6,9,7,9,7,6 +life,lesson,5.94,7,5,7.5,3,9,8,4,6,5,7.5,4,5,2,9,7,6 +focus,life,4.06,5,0,7.5,1,7,6,0,3,4,7.5,3,2,2,7,5,5 +production,crew,6.25,8,4,8,4,8,7,5,7,3,8,4,7,9,9,6,3 +television,film,7.72,8,5,8.5,8,9,8,8,9,5,8,7,8,9,9,8,6 +lover,quarrel,6.19,7,2,8.5,3,7,7,6,9,5,7.5,4,6,8,7,7,5 +viewer,serial,2.97,3,0.5,1,1,4,3,0,6,2,2,2,7,7,3,4,2 +possibility,girl,1.94,3,0,0,1,4,2,0,2,2,4,3,1,0,3,5,1 +population,development,3.75,5,1,3,2,7,5,2,7,2,6,4,1,4,1,5,5 +morality,importance,3.31,7,0,1,1,6,4,0,6,1,6,3,3,3,4,4,4 +morality,marriage,3.69,6,5,2,1,5,4,1,3,3,6,3,5,4,1,4,6 +Mexico,Brazil,7.44,8,8.5,8,6,7,7,8,9,7,7.5,7,8,10,2,8,8 +gender,equality,6.41,8,6,5,4,4,8,5,8,6,7.5,2,8,8,7,7,9 +change,attitude,5.44,8,5,6,3,4,7,4,7,7,6,4,6,5,0,7,8 +family,planning,6.25,7,5,7,3,7,8,4,6,7,8,7,6,8,1,8,8 +opera,industry,2.63,7,0,1,1,7,2,3,3,2,2,1,2,3,1,4,3 +sugar,approach,0.88,3,0,0,1,5,1,0,1,0,0,1,0,0,0,1,1 +practice,institution,3.19,4,1,1,1,6,2,2,2,4,3,6,6,5,0,5,3 +ministry,culture,4.69,4,1,6,4,7,6,1,4,5,6,5,7,6,7,3,3 +problem,challenge,6.75,7,7.5,7.5,8,7,7,1,10,5,6,6,8,8,8,7,5 +size,prominence,5.31,7,8.5,6,7,6,4,2,8,3.5,2,6,5,6,1,7,6 +country,citizen,7.31,8,7,7,9,8,7,7,7,5,8,7,8,9,6,8,6 +planet,people,5.75,5,0,6,7,8,5,6,5,5,9,7,6,4,7,7,5 +development,issue,3.97,5,1,6,1,5,3,1,5,3,7.5,3,7,3,2,5,6 +experience,music,3.47,6,1,7,1,5,3,1,1,1,7.5,3,8,3,1,5,2 +music,project,3.63,5,0,6,1,5,3,4,2,3,6,5,2,7,2,4,3 +glass,metal,5.56,7,7,8,4,6,5,4,7,6,4,7,7,6,0,5,6 +aluminum,metal,7.83,9,8.75,9,9,7,7,6,8,6,7.5,8,9,8,8,8,7 +chance,credibility,3.88,8,3,1,3,6,3,3,4,3,6,3,8,1,1,4,5 +exhibit,memorabilia,5.31,7,6,9,7,7,3,2,7,3,6,7,7,5,2,1,6 +concert,virtuoso,6.81,8,6,7.5,9,6,7,7,8,2,7.5,7,7,8,3,8,8 +rock,jazz,7.59,8,9,9,5,8,7,8,9,7,7.5,8,8,9,1,9,9 +museum,theater,7.19,8,7.5,8.5,6,8,8,8,9,7,6,8,8,7,1,8,7 +observation,architecture,4.38,7,3,3,4,6,3,6,5,3,4,7,7,3,1,2,6 +space,world,6.53,7,6,8.5,3,9,6,7,9,5,6,8,8,5,3,8,6 +preservation,world,6.19,7,8,7,6,7,7,2,8,4,6,6,8,8,4,6,5 +admission,ticket,7.69,8,8,9,9,9,8,7,9,6,6,6,9,9,5,8,7 +shower,thunderstorm,6.31,8,9,8,6,7,8,2,7,6,4,5,9,8,2,8,4 +shower,flood,6.03,8,7,8.5,6,7,8,2,7,6,6,7,8,8,0,4,4 +weather,forecast,8.34,8,7.5,9,9,9,9,7,9,7,8,8,9,10,7,9,8 +disaster,area,6.25,7,8,9,3,9,8,3,5,6,6,5,8,9,1,5,8 +governor,office,6.34,8,5,7.5,3,7,8,1,6,5,6,6,8,7,8,8,8 +architecture,century,3.78,6,0,7.5,1,6,8,1,3,1,6,5,7,3,2,2,2 diff --git a/WordSim353/data/original_finkelstein/set2.tab b/WordSim353/data/original_finkelstein/set2.tab new file mode 100644 index 0000000..8b2c15e --- /dev/null +++ b/WordSim353/data/original_finkelstein/set2.tab @@ -0,0 +1,201 @@ +Word 1 Word 2 Human (mean) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 +energy secretary 1.81 1 0 4 2 4 5 1 1 1 0 1 1 4 0 2 2 +secretary senate 5.06 7 1 7 4 4 7 1 3 4 8 4 5 6 7 6 7 +energy laboratory 5.09 7 1 7.5 4 6 7 4 6 1 2 4 3 7 9 6 7 +computer laboratory 6.78 8 5 8 7 6 9 6 7 6 7.5 4 5 8 9 7 6 +weapon secret 6.06 7 4 8 6 6 9 2 6 3 6 5 6 8 9 7 5 +FBI fingerprint 6.94 8 6 8 5 5 9 7 7 6 6 6 8 9 7 6 8 +FBI investigation 8.31 9 9 8.5 9 7 9 8 8 8 7.5 6 9 10 9 7 9 +investigation effort 4.59 5 1 7.5 2 4 7 6 5 2 2 2 7 6 5 6 6 +Mars water 2.94 2 1 3 2 1 8 0 4 2 6 1 1 3 0 5 8 +Mars scientist 5.63 8 1 7 4 6 8 1 6 5 6 2 9 7 5 7 8 +news report 8.16 9 6 8.5 8 7 9 7 8 7 8 7 9 10 9 9 9 +canyon landscape 7.53 9 7.5 7 7 7 7 8 7 7 8 6 9 8 6 8 9 +image surface 4.56 7 1 5 1 1 5 4 3 4 4 5 5 7 7 8 6 +discovery space 6.34 8 2 7.5 9 5 7 4 7 5 6 5 7 8 8 7 6 +water seepage 6.56 8 7 9 7 7 8 7 6 0 6 1 8 7 8 8 8 +sign recess 2.38 4 1 2 4 5 4 0 4 3 0 1 0 0 0 6 4 +Wednesday news 2.22 4 1 4 2 3 6 2 3 0.5 0 1 1 0 1 4 3 +mile kilometer 8.66 9 9.5 9 8 9 8 9 9 8.5 7.5 8 8 10 8 9 9 +computer news 4.47 5 1 7 6 5 5 1 4 6.5 4 2 5 3 7 6 4 +territory surface 5.34 6 2 8.5 4 7 7 8 4 2 6 6 5 6 2 8 4 +atmosphere landscape 3.69 7 0 2 1 8 7 1 5 2 0 2 5 6 1 7 5 +president medal 3.00 5 2 1 3 6 6 1 7 2 0 1 3 2 1 4 4 +war troops 8.13 8 8.5 9 9 8 8 8 8 6 7.5 8 8 9 8 9 8 +record number 6.31 8 6 8 5 7 7 3 4 5 8 5 8 8 5 8 6 +skin eye 6.22 7 9 7 3 6 6 7 7 6 7.5 5 6 8 2 8 5 +Japanese American 6.50 7 6 8.5 6 6 4 8 7 7 7.5 5 8 9 1 8 6 +theater history 3.91 5 6 6 4 5 3 0 3 6.5 6 1 5 1 1 7 3 +volunteer motto 2.56 2 5 1 1 4 2 0 3 3 0 4 7 0 3 4 2 +prejudice recognition 3.00 7 4 2 1 6 2 4 5 1 0 6 5 0 0 3 2 +decoration valor 5.63 6 8 7 8 8 2 2 9 5 0 7 8 9 1 8 2 +century year 7.59 8 9 8 9 7 6 8 8 7 7.5 7 9 8 5 9 6 +century nation 3.16 5 0 7.5 5 4 4 0 2 2 4 2 2 2 0 8 3 +delay racism 1.19 1 0 1 1 6 1 0 1 0 0 4 0 0 0 3 1 +delay news 3.31 7 4 3 1 6 5 6 4 4 0 1 4 3 0 3 2 +minister party 6.63 8 7.5 8 7 6 7 8 8 5 7.5 6 1 8 8 8 3 +peace plan 4.75 5 2 7 6 7 4 3 5 4 4 5 3 7 2 9 3 +minority peace 3.69 6 0 7 3 1 5 6 4 4 4 3 3 5 0 5 3 +attempt peace 4.25 7 4 7 2 7 4 2 3 3 4 3 5 5 4 5 3 +government crisis 6.56 8 5 8 5 7 7 5 6 5 6 7 8 7 9 7 5 +deployment departure 4.25 7 0 2 6 7 5 6 4 2 2 5 6 2 0 8 6 +deployment withdrawal 5.88 9 9 6 6 3 8 8 4 3 2 5 8 9 0 8 6 +energy crisis 5.94 8 5 8 5 8 8 8 4 1 4 2 7 5 8 8 6 +announcement news 7.56 8 7 8 8 8 9 8 6 6 8 8 8 6 8 9 6 +announcement effort 2.75 5 6 2 2 1 5 4 2 2 2 2 0 3 0 5 3 +stroke hospital 7.03 9 8 8 8 7 3 8 7 6 7.5 7 7 9 3 8 7 +disability death 5.47 7 8 6.5 4 3 7 7 5 6 2 7 2 8 2 8 5 +victim emergency 6.47 8 7 7.5 4 5 6 6 7 6 4 5 6 9 9 9 5 +treatment recovery 7.91 8 8 8.5 9 9 8 9 8 6.5 7.5 7 7 10 5 9 7 +journal association 4.97 8 2 7.5 7 1 5 4 6 3 6 7 3 7 1 8 4 +doctor personnel 5.00 7 2 8 6 4 7 2 6 2 6 4 5 7 3 8 3 +doctor liability 5.19 7 4 8 7 4 6 4 5 4 2 4 2 6 8 7 5 +liability insurance 7.03 6 8.5 9 5 8 9 6 8 5 4 7 8 8 5 9 7 +school center 3.44 6 1 4 1 5 2 4 3 3 4 5 1 3 3 7 3 +reason hypertension 2.31 4 1 1 2 6 1 0 1 3 2 2 7 0 2 3 2 +reason criterion 5.91 3 2 8 7 9 3 6 4 4.5 8 7 7 8 6 7 5 +hundred percent 7.38 9 5 9 3 10 9 6 7 7 6 6 7 10 9 8 7 +Harvard Yale 8.13 9 8 9 10 8 8 9 10 8.5 7.5 8 8 10 0 8 9 +hospital infrastructure 4.63 5 2 1 5 6 5 4 7 3 4 5 5 5 3 7 7 +death row 5.25 2 7 8 2 8 7 6 3 7 4 2 7 9 0 8 4 +death inmate 5.03 4 5 7.5 1 5 4 7 3 6 2 6 6 3 8 8 5 +lawyer evidence 6.69 7 6.5 8.5 7 8 6 8 8 7 3 5 8 10 0 9 6 +life death 7.88 9 9.5 9.5 5 10 8 8 8 6.5 7.5 8 9 10 0 9 9 +life term 4.50 2 8 2 1 8 7 6 3 1 4 2 8 3 3 8 6 +word similarity 4.75 6 1 8 2 10 7 6 2 1 4 2 5 0 9 7 6 +board recommendation 4.47 6 4 2 1 7 8 3 4 1 7.5 2 7 7 0 7 5 +governor interview 3.25 4 0 4 1 7 6 0 5 0 2 3 5 3 3 4 5 +OPEC country 5.63 7 4 8 4 0 4 8 6 5 8 4 6 7 8 6 5 +peace atmosphere 3.69 6 5 5 1 0 6 3 5 2 6 1 3 3 0 7 6 +peace insurance 2.94 6 4 1 1 7 4 0 3 2 6 5 1 0 0 3 4 +territory kilometer 5.28 6 6 8 1 5 8 7 6 4 7.5 5 3 3 2 8 5 +travel activity 5.00 7 5 6.5 2 5 6 6 6 5 7.5 3 2 4 2 8 5 +competition price 6.44 7 8 7.5 5 6 7 8 4 6 7.5 5 6 9 5 9 3 +consumer confidence 4.13 7 4 2 3 3 3 1 2 2 6 2 7 9 4 8 3 +consumer energy 4.75 5 3 8 2 6 6 0 4 0 4 7 6 6 9 8 2 +problem airport 2.38 2 2 1 0 5 4 0 3 0 4 1 2 0 7 5 2 +car flight 4.94 6 3 7 5 6 6 4 7 4 2 7 5 8 0 5 4 +credit card 8.06 8 6 9 8 9 8 8 9 7 8 5 8 10 9 9 8 +credit information 5.31 7 5 2 3 7 4 1 5 7 1 2 8 10 9 8 6 +hotel reservation 8.03 8 7 9 7 8 8 8 8 7 7.5 7 8 10 9 9 8 +grocery money 5.94 8 5 7.5 2 7 7 7 5 6.5 6 6 8 6 2 5 7 +registration arrangement 6.00 8 8 7 7 8 4 1 4 7 6 6 6 8 3 8 5 +arrangement accommodation 5.41 5 6 7 6 4 4 4 6 3 7.5 5 5 7 6 7 4 +month hotel 1.81 4 0 1 1 3 6 0 2 1 1 2 0 3 0 3 2 +type kind 8.97 9 9.5 9.5 10 8 9 9 10 8.5 9 9 9 9 9 9 7 +arrival hotel 6.00 7 8 6.5 1 6 9 7 5 6 7.5 4 6 7 4 6 6 +bed closet 6.72 8 7.5 8 5 7 8 7 8 7 6 7 5 9 1 8 6 +closet clothes 8.00 8 7 9 10 8 9 8 9 9 8 7 8 9 3 9 7 +situation conclusion 4.81 8 4 6 4 6 3 7 6 2 6 6 7 4 0 6 2 +situation isolation 3.88 8 3 1 2 6 3 0 3 2 6 6 7 3 0 8 4 +impartiality interest 5.16 7 9.5 8 2 4 3 0 7 6 3 7 6 9 0 8 3 +direction combination 2.25 2 0 1 1 7 2 0 2 2 2 4 3 0 1 6 3 +street place 6.44 7 7 6 7 5 7 5 7 6 4 7 8 4 7 9 7 +street avenue 8.88 9 9 8.5 9 9 9 7 10 8.5 9 7 9 10 9 10 9 +street block 6.88 5 7 8.5 7 4 8 7 9 8.5 9 6 9 4 0 9 9 +street children 4.94 6 6 6 2 5 7 2 5 4 6 3 5 6 5 5 6 +listing proximity 2.56 3 0 1 1 5 4 0 3 1 2 2 4 3 1 7 4 +listing category 6.38 2 3 7 9 7 6 7 7 4 8 7 8 10 3 8 6 +cell phone 7.81 8 6 8 9 9 8 8 8 8 8 3 9 8 9 8 8 +production hike 1.75 2 2 1 1 6 3 0 1 1 0 2 3 0 0 4 2 +benchmark index 4.25 5 5 2 2 7 4 5 7 3 1 7 2 6 4 5 3 +media trading 3.88 6 2 5 1 7 6 3 4 2 2 6 2 5 0 8 3 +media gain 2.88 5 0 2 1 7 4 2 2 3 2 5 1 3 0 7 2 +dividend payment 7.63 6 9 7 4 9 8 8 8 7 8 7 8 8 9 9 7 +dividend calculation 6.48 7 8.75 6.5 1 9 7 6 7 6.5 8 3 6 7 8 8 5 +calculation computation 8.44 9 9.5 9.5 8 8 9 5 10 9 8 8 9 7 9 9 8 +currency market 7.50 8 5 7.5 5 9 8 7 8 7 7.5 6 8 8 9 9 8 +OPEC oil 8.59 8 8 9 10 10 8 8 8 8 7.5 7 9 10 9 9 9 +oil stock 6.34 6 5 8 6 7 6 2 6 8 7.5 6 6 7 8 7 6 +announcement production 3.38 5 0 3 2 6 5 1 4 2 2 3 6 3 5 6 1 +announcement warning 6.00 7 7 5 7 8 4 4 8 5 7 6 8 3 8 7 2 +profit warning 3.88 7 7 1 5 4 6 4 3 5 1 3 3 0 0 7 6 +profit loss 7.63 8 9.5 9.5 10 8 8 8 9 6 4 8 8 10 0 9 7 +dollar yen 7.78 8 9 9 10 7 5 8 8 7 7.5 8 8 10 3 9 8 +dollar buck 9.22 9 10 9.5 10 9 8 9 10 9 8 10 10 8 9 10 9 +dollar profit 7.38 8 6 9 9 9 7 7 8 8 6 7 5 6 7 8 8 +dollar loss 6.09 8 6 8.5 2 5 7 7 8 4 6 5 5 5 7 8 6 +computer software 8.50 9 8 9 8 9 8 8 9 8 9 8 8 10 9 9 7 +network hardware 8.31 8 8.5 8.5 9 9 7 8 7 8 9 8 9 8 9 9 8 +phone equipment 7.13 8 8.5 7.5 5 9 6 7 6 6 8 5 7 7 9 8 7 +equipment maker 5.91 8 7 7 6 6 5 8 5 2 7.5 3 4 6 5 8 7 +luxury car 6.47 7 6 8 6 7 7 5 5 3 7.5 6 6 7 7 8 8 +five month 3.38 5 6 2 1 5 4 1 5 2 4 2 1 3 6 5 2 +report gain 3.63 6 5 4 1 4 5 4 3 2 0 2 1 7 7 6 1 +investor earning 7.13 8 7 8 8 7 7 8 7 3 8 7 6 8 7 8 7 +liquid water 7.89 8 7.75 8.5 8 7 8 4 8 7 9 8 9 8 9 9 8 +baseball season 5.97 8 3 8.5 7 8 8 4 6 5 8 3 6 7 2 7 5 +game victory 7.03 8 8 7 7 5 8 6 7 6.5 8 7 5 9 8 7 6 +game team 7.69 8 8.5 8.5 8 5 8 6 9 7 9 7 7 9 8 8 7 +marathon sprint 7.47 7 9 7 8 6 8 7 8 6.5 9 8 8 5 9 8 6 +game series 6.19 7 8 7.5 6 5 8 5 6 2 7.5 3 8 6 5 8 7 +game defeat 6.97 8 8 7.5 7 6 8 6 7 6 8 7 5 9 6 7 6 +seven series 3.56 5 6 2 2 5 4 4 5 3 4 4 1 0 1 7 4 +seafood sea 7.47 9 8 7.5 8 9 9 7 7 7 9 6 6 5 7 8 7 +seafood food 8.34 9 9.5 9 9 9 8 4 9 7 9 8 9 8 9 9 8 +seafood lobster 8.70 9 9.75 8.5 10 9 9 6 10 7 9 9 9 8 9 9 8 +lobster food 7.81 8 8 8 10 9 7 4 9 7 9 6 9 9 7 8 7 +lobster wine 5.70 7 7.75 7.5 1 6 6 3 8 5.5 7.5 4 6 7 1 7 7 +food preparation 6.22 6 5 6.5 5 9 6 3 7 6 8 5 6 6 7 8 6 +video archive 6.34 7 6 7 5 9 7 4 7 4 7.5 5 7 5 9 8 4 +start year 4.06 5 5.5 6.5 2 5 3 0 6 4 6 2 2 3 9 4 2 +start match 4.47 5 2 6.5 1 9 3 3 8 1 2 3 5 5 9 6 3 +game round 5.97 4 8 8 4 5 5 7 9 4 7.5 5 6 7 5 8 3 +boxing round 7.61 6 8.25 7.5 7 8 7 8 9 4 8 7 8 10 9 9 6 +championship tournament 8.36 9 8.75 9 9 9 8 7 10 7 8 8 8 10 9 8 6 +fighting defeating 7.41 8 8 8 8 5 7 6 9 7 7.5 8 9 8 5 9 6 +line insurance 2.69 5 2 2 1 6 3 3 4 1 2 2 2 0 0 9 1 +day summer 3.94 7 7 2 1 4 3 1 7 3 4 4 4 6 1 5 4 +summer drought 7.16 8 8 8 9 5 7 7 8 5 7.5 5 4 8 9 8 8 +summer nature 5.63 5 6 4 7 9 5 6 7 4 6 6 3 3 6 7 6 +day dawn 7.53 8 8.5 8 8 9 8 6 8 6 6 8 7 8 7 8 7 +nature environment 8.31 9 6.5 8.5 9 9 9 7 9 8 8 8 8 10 9 8 7 +environment ecology 8.81 9 8.5 8.5 9 9 9 8 10 8 9 9 9 10 7 9 9 +nature man 6.25 5 6 8 5 9 5 5 7 3 8 5 6 8 5 8 7 +man woman 8.30 8 9.75 9 10 9 9 8 9 7.5 7.5 9 9 10 1 9 8 +man governor 5.25 7 4.5 5 1 6 4 3 7 2 7.5 3 7 7 8 7 5 +murder manslaughter 8.53 8 9.9 9.5 10 7 9 9 10 6 4 8 9 9 9 10 9 +soap opera 7.94 8 4 8.5 7 9 9 8 9 8 7.5 7 8 9 9 7 9 +opera performance 6.88 8 2 7.5 5 9 5 7 7 8 7.5 6 9 7 9 7 6 +life lesson 5.94 7 5 7.5 3 9 8 4 6 5 7.5 4 5 2 9 7 6 +focus life 4.06 5 0 7.5 1 7 6 0 3 4 7.5 3 2 2 7 5 5 +production crew 6.25 8 4 8 4 8 7 5 7 3 8 4 7 9 9 6 3 +television film 7.72 8 5 8.5 8 9 8 8 9 5 8 7 8 9 9 8 6 +lover quarrel 6.19 7 2 8.5 3 7 7 6 9 5 7.5 4 6 8 7 7 5 +viewer serial 2.97 3 0.5 1 1 4 3 0 6 2 2 2 7 7 3 4 2 +possibility girl 1.94 3 0 0 1 4 2 0 2 2 4 3 1 0 3 5 1 +population development 3.75 5 1 3 2 7 5 2 7 2 6 4 1 4 1 5 5 +morality importance 3.31 7 0 1 1 6 4 0 6 1 6 3 3 3 4 4 4 +morality marriage 3.69 6 5 2 1 5 4 1 3 3 6 3 5 4 1 4 6 +Mexico Brazil 7.44 8 8.5 8 6 7 7 8 9 7 7.5 7 8 10 2 8 8 +gender equality 6.41 8 6 5 4 4 8 5 8 6 7.5 2 8 8 7 7 9 +change attitude 5.44 8 5 6 3 4 7 4 7 7 6 4 6 5 0 7 8 +family planning 6.25 7 5 7 3 7 8 4 6 7 8 7 6 8 1 8 8 +opera industry 2.63 7 0 1 1 7 2 3 3 2 2 1 2 3 1 4 3 +sugar approach 0.88 3 0 0 1 5 1 0 1 0 0 1 0 0 0 1 1 +practice institution 3.19 4 1 1 1 6 2 2 2 4 3 6 6 5 0 5 3 +ministry culture 4.69 4 1 6 4 7 6 1 4 5 6 5 7 6 7 3 3 +problem challenge 6.75 7 7.5 7.5 8 7 7 1 10 5 6 6 8 8 8 7 5 +size prominence 5.31 7 8.5 6 7 6 4 2 8 3.5 2 6 5 6 1 7 6 +country citizen 7.31 8 7 7 9 8 7 7 7 5 8 7 8 9 6 8 6 +planet people 5.75 5 0 6 7 8 5 6 5 5 9 7 6 4 7 7 5 +development issue 3.97 5 1 6 1 5 3 1 5 3 7.5 3 7 3 2 5 6 +experience music 3.47 6 1 7 1 5 3 1 1 1 7.5 3 8 3 1 5 2 +music project 3.63 5 0 6 1 5 3 4 2 3 6 5 2 7 2 4 3 +glass metal 5.56 7 7 8 4 6 5 4 7 6 4 7 7 6 0 5 6 +aluminum metal 7.83 9 8.75 9 9 7 7 6 8 6 7.5 8 9 8 8 8 7 +chance credibility 3.88 8 3 1 3 6 3 3 4 3 6 3 8 1 1 4 5 +exhibit memorabilia 5.31 7 6 9 7 7 3 2 7 3 6 7 7 5 2 1 6 +concert virtuoso 6.81 8 6 7.5 9 6 7 7 8 2 7.5 7 7 8 3 8 8 +rock jazz 7.59 8 9 9 5 8 7 8 9 7 7.5 8 8 9 1 9 9 +museum theater 7.19 8 7.5 8.5 6 8 8 8 9 7 6 8 8 7 1 8 7 +observation architecture 4.38 7 3 3 4 6 3 6 5 3 4 7 7 3 1 2 6 +space world 6.53 7 6 8.5 3 9 6 7 9 5 6 8 8 5 3 8 6 +preservation world 6.19 7 8 7 6 7 7 2 8 4 6 6 8 8 4 6 5 +admission ticket 7.69 8 8 9 9 9 8 7 9 6 6 6 9 9 5 8 7 +shower thunderstorm 6.31 8 9 8 6 7 8 2 7 6 4 5 9 8 2 8 4 +shower flood 6.03 8 7 8.5 6 7 8 2 7 6 6 7 8 8 0 4 4 +weather forecast 8.34 8 7.5 9 9 9 9 7 9 7 8 8 9 10 7 9 8 +disaster area 6.25 7 8 9 3 9 8 3 5 6 6 5 8 9 1 5 8 +governor office 6.34 8 5 7.5 3 7 8 1 6 5 6 6 8 7 8 8 8 +architecture century 3.78 6 0 7.5 1 6 8 1 3 1 6 5 7 3 2 2 2 diff --git a/WordSim353/data/ws353simrel_agirre/test.tsv b/WordSim353/data/ws353simrel_agirre/test.tsv new file mode 100644 index 0000000..3ce36fb --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/test.tsv @@ -0,0 +1,352 @@ +t love sex 6.77 +h tiger cat 7.35 +i tiger tiger 10.00 +t book paper 7.46 +M computer keyboard 7.62 +t computer internet 7.58 +S plane car 5.77 +S train car 6.31 +t telephone communication 7.50 +S television radio 6.77 +H media radio 7.42 +t drug abuse 6.85 +S bread butter 6.19 +S cucumber potato 5.92 +S doctor nurse 7.00 +S professor doctor 6.62 +S student professor 6.81 +t smart student 4.62 +a smart stupid 5.81 +t company stock 7.08 +t stock market 8.08 +t stock phone 1.62 +t stock CD 1.31 +t stock jaguar 0.92 +t stock egg 1.81 +t fertility egg 6.69 +t stock live 3.73 +t stock life 0.92 +t book library 7.46 +t bank money 8.12 +s wood forest 7.73 +H money cash 9.15 +t professor cucumber 0.31 +t king cabbage 0.23 +S king queen 8.58 +S king rook 5.92 +S bishop rabbi 6.69 +m Jerusalem Israel 8.46 +t Jerusalem Palestinian 7.65 +t holy sex 1.62 +s fuck sex 9.44 +t Maradona football 8.62 +s football soccer 9.03 +S football basketball 6.81 +S football tennis 6.63 +t tennis racket 7.56 +t Arafat peace 6.73 +t Arafat terror 7.65 +S Arafat Jackson 2.50 +t law lawyer 8.38 +t movie star 7.38 +t movie popcorn 6.19 +t movie critic 6.73 +t movie theater 7.92 +t physics proton 8.12 +S physics chemistry 7.35 +t space chemistry 4.88 +t alcohol chemistry 5.54 +S vodka gin 8.46 +S vodka brandy 8.13 +t drink car 3.04 +t drink ear 1.31 +t drink mouth 5.96 +S drink eat 6.87 +t baby mother 7.85 +t drink mother 2.65 +s car automobile 8.94 +s gem jewel 8.96 +s journey voyage 9.29 +s boy lad 8.83 +s coast shore 9.10 +s asylum madhouse 8.87 +s magician wizard 9.02 +s midday noon 9.29 +s furnace stove 8.79 +H food fruit 7.52 +H bird cock 7.10 +H bird crane 7.38 +t tool implement 6.46 +t brother monk 6.27 +t crane implement 2.69 +t lad brother 4.46 +t journey car 5.85 +t monk oracle 5.00 +t cemetery woodland 2.08 +H food rooster 4.42 +t coast hill 4.38 +t forest graveyard 1.85 +t shore woodland 3.08 +t monk slave 0.92 +t coast forest 3.15 +t lad wizard 0.92 +t chord smile 0.54 +t glass magician 2.08 +t noon string 0.54 +t rooster voyage 0.62 +H money dollar 8.42 +H money currency 9.04 +t money wealth 8.27 +t money property 7.57 +t money possession 7.29 +t money bank 8.50 +t money deposit 7.73 +t money withdrawal 6.88 +t money laundering 5.65 +t money operation 3.31 +S tiger jaguar 8.00 +h tiger feline 8.00 +h tiger carnivore 7.08 +h tiger mammal 6.85 +h tiger animal 7.00 +h tiger organism 4.77 +h tiger fauna 5.62 +t tiger zoo 5.87 +S psychology psychiatry 8.08 +t psychology anxiety 7.00 +t psychology fear 6.85 +t psychology depression 7.42 +t psychology clinic 6.58 +t psychology doctor 6.42 +t psychology Freud 8.21 +t psychology mind 7.69 +t psychology health 7.23 +h psychology science 6.71 +h psychology discipline 5.58 +t psychology cognition 7.48 +S planet star 8.45 +t planet constellation 8.06 +S planet moon 8.08 +S planet sun 8.02 +m planet galaxy 8.11 +t planet space 7.92 +t planet astronomer 7.94 +h precedent example 5.85 +t precedent information 3.85 +t precedent cognition 2.81 +t precedent law 6.65 +t precedent collection 2.50 +t precedent group 1.77 +S precedent antecedent 6.04 +t cup coffee 6.58 +h cup tableware 6.85 +t cup article 2.40 +h cup artifact 2.92 +h cup object 3.69 +h cup entity 2.15 +t cup drink 7.25 +t cup food 5.00 +t cup substance 1.92 +t cup liquid 5.90 +h jaguar cat 7.42 +h jaguar car 7.27 +t energy secretary 1.81 +t secretary senate 5.06 +t energy laboratory 5.09 +t computer laboratory 6.78 +t weapon secret 6.06 +t FBI fingerprint 6.94 +t FBI investigation 8.31 +t investigation effort 4.59 +t Mars water 2.94 +t Mars scientist 5.63 +t news report 8.16 +m canyon landscape 7.53 +t image surface 4.56 +t discovery space 6.34 +t water seepage 6.56 +t sign recess 2.38 +t Wednesday news 2.22 +S mile kilometer 8.66 +t computer news 4.47 +t territory surface 5.34 +t atmosphere landscape 3.69 +t president medal 3.00 +t war troops 8.13 +t record number 6.31 +S skin eye 6.22 +S Japanese American 6.50 +t theater history 3.91 +t volunteer motto 2.56 +t prejudice recognition 3.00 +t decoration valor 5.63 +S century year 7.59 +t century nation 3.16 +t delay racism 1.19 +t delay news 3.31 +t minister party 6.63 +t peace plan 4.75 +t minority peace 3.69 +t attempt peace 4.25 +t government crisis 6.56 +t deployment departure 4.25 +t deployment withdrawal 5.88 +t energy crisis 5.94 +h announcement news 7.56 +t announcement effort 2.75 +t stroke hospital 7.03 +t disability death 5.47 +t victim emergency 6.47 +t treatment recovery 7.91 +t journal association 4.97 +h doctor personnel 5.00 +t doctor liability 5.19 +t liability insurance 7.03 +t school center 3.44 +t reason hypertension 2.31 +t reason criterion 5.91 +t hundred percent 7.38 +S Harvard Yale 8.13 +h hospital infrastructure 4.63 +t death row 5.25 +t death inmate 5.03 +t lawyer evidence 6.69 +S life death 7.88 +t life term 4.50 +t word similarity 4.75 +t board recommendation 4.47 +t governor interview 3.25 +M OPEC country 5.63 +t peace atmosphere 3.69 +t peace insurance 2.94 +t territory kilometer 5.28 +h travel activity 5.00 +t competition price 6.44 +t consumer confidence 4.13 +t consumer energy 4.75 +t problem airport 2.38 +t car flight 4.94 +t credit card 8.06 +t credit information 5.31 +t hotel reservation 8.03 +t grocery money 5.94 +t registration arrangement 6.00 +t arrangement accommodation 5.41 +t month hotel 1.81 +s type kind 8.97 +t arrival hotel 6.00 +t bed closet 6.72 +t closet clothes 8.00 +t situation conclusion 4.81 +t situation isolation 3.88 +t impartiality interest 5.16 +t direction combination 2.25 +h street place 6.44 +H street avenue 8.88 +S street block 6.88 +t street children 4.94 +t listing proximity 2.56 +t listing category 6.38 +h cell phone 7.81 +t production hike 1.75 +t benchmark index 4.25 +t media trading 3.88 +t media gain 2.88 +h dividend payment 7.63 +t dividend calculation 6.48 +s calculation computation 8.44 +t currency market 7.50 +t OPEC oil 8.59 +t oil stock 6.34 +t announcement production 3.38 +t announcement warning 6.00 +t profit warning 3.88 +S profit loss 7.63 +S dollar yen 7.78 +s dollar buck 9.22 +t dollar profit 7.38 +t dollar loss 6.09 +t computer software 8.50 +t network hardware 8.31 +h phone equipment 7.13 +t equipment maker 5.91 +t luxury car 6.47 +t five month 3.38 +t report gain 3.63 +t investor earning 7.13 +H liquid water 7.89 +t baseball season 5.97 +t game victory 7.03 +t game team 7.69 +S marathon sprint 7.47 +t game series 6.19 +t game defeat 6.97 +t seven series 3.56 +t seafood sea 7.47 +h seafood food 8.34 +H seafood lobster 8.70 +h lobster food 7.81 +S lobster wine 5.70 +t food preparation 6.22 +t video archive 6.34 +t start year 4.06 +t start match 4.47 +t game round 5.97 +t boxing round 7.61 +s championship tournament 8.36 +t fighting defeating 7.41 +t line insurance 2.69 +m day summer 3.94 +t summer drought 7.16 +t summer nature 5.63 +M day dawn 7.53 +t nature environment 8.31 +t environment ecology 8.81 +t nature man 6.25 +S man woman 8.30 +H man governor 5.25 +s murder manslaughter 8.53 +t soap opera 7.94 +h opera performance 6.88 +t life lesson 5.94 +t focus life 4.06 +t production crew 6.25 +t television film 7.72 +t lover quarrel 6.19 +t viewer serial 2.97 +t possibility girl 1.94 +t population development 3.75 +t morality importance 3.31 +t morality marriage 3.69 +S Mexico Brazil 7.44 +t gender equality 6.41 +t change attitude 5.44 +t family planning 6.25 +t opera industry 2.63 +t sugar approach 0.88 +t practice institution 3.19 +t ministry culture 4.69 +t problem challenge 6.75 +t size prominence 5.31 +M country citizen 7.31 +M planet people 5.75 +t development issue 3.97 +t experience music 3.47 +t music project 3.63 +S glass metal 5.56 +h aluminum metal 7.83 +t chance credibility 3.88 +t exhibit memorabilia 5.31 +t concert virtuoso 6.81 +S rock jazz 7.59 +S museum theater 7.19 +t observation architecture 4.38 +t space world 6.53 +t preservation world 6.19 +t admission ticket 7.69 +S shower thunderstorm 6.31 +t shower flood 6.03 +t weather forecast 8.34 +t disaster area 6.25 +t governor office 6.34 +t architecture century 3.78 \ No newline at end of file diff --git a/WordSim353/data/ws353simrel_agirre/wordsim353_agreed.txt b/WordSim353/data/ws353simrel_agirre/wordsim353_agreed.txt new file mode 100644 index 0000000..828113d --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim353_agreed.txt @@ -0,0 +1,363 @@ +#Word 1 Word 2 Human (mean) +# i = identical tokens +# s = synonym (at least in one meaning of each) +# a = antonyms (at least in one meaning of each) +# h = first is hyponym of second (at least in one meaning of each) +# H = first is hyperonym of second (at least in one meaning of each) +# S = sibling terms (terms with a common hyperonymy) +# m = first is part of the second one (at least in one meaning of each) +# M = second is part of the first one (at least in one meaning of each) +# t = topically related, but none of the above +# +t love sex 6.77 +h tiger cat 7.35 +i tiger tiger 10.00 +t book paper 7.46 +M computer keyboard 7.62 +t computer internet 7.58 +S plane car 5.77 +S train car 6.31 +t telephone communication 7.50 +S television radio 6.77 +H media radio 7.42 +t drug abuse 6.85 +S bread butter 6.19 +S cucumber potato 5.92 +S doctor nurse 7.00 +S professor doctor 6.62 +S student professor 6.81 +t smart student 4.62 +a smart stupid 5.81 +t company stock 7.08 +t stock market 8.08 +t stock phone 1.62 +t stock CD 1.31 +t stock jaguar 0.92 +t stock egg 1.81 +t fertility egg 6.69 +t stock live 3.73 +t stock life 0.92 +t book library 7.46 +t bank money 8.12 +s wood forest 7.73 +H money cash 9.15 +t professor cucumber 0.31 +t king cabbage 0.23 +S king queen 8.58 +S king rook 5.92 +S bishop rabbi 6.69 +m Jerusalem Israel 8.46 +t Jerusalem Palestinian 7.65 +t holy sex 1.62 +s fuck sex 9.44 +t Maradona football 8.62 +s football soccer 9.03 +S football basketball 6.81 +S football tennis 6.63 +t tennis racket 7.56 +t Arafat peace 6.73 +t Arafat terror 7.65 +S Arafat Jackson 2.50 +t law lawyer 8.38 +t movie star 7.38 +t movie popcorn 6.19 +t movie critic 6.73 +t movie theater 7.92 +t physics proton 8.12 +S physics chemistry 7.35 +t space chemistry 4.88 +t alcohol chemistry 5.54 +S vodka gin 8.46 +S vodka brandy 8.13 +t drink car 3.04 +t drink ear 1.31 +t drink mouth 5.96 +S drink eat 6.87 +t baby mother 7.85 +t drink mother 2.65 +s car automobile 8.94 +s gem jewel 8.96 +s journey voyage 9.29 +s boy lad 8.83 +s coast shore 9.10 +s asylum madhouse 8.87 +s magician wizard 9.02 +s midday noon 9.29 +s furnace stove 8.79 +H food fruit 7.52 +H bird cock 7.10 +H bird crane 7.38 +t tool implement 6.46 +t brother monk 6.27 +t crane implement 2.69 +t lad brother 4.46 +t journey car 5.85 +t monk oracle 5.00 +t cemetery woodland 2.08 +H food rooster 4.42 +t coast hill 4.38 +t forest graveyard 1.85 +t shore woodland 3.08 +t monk slave 0.92 +t coast forest 3.15 +t lad wizard 0.92 +t chord smile 0.54 +t glass magician 2.08 +t noon string 0.54 +t rooster voyage 0.62 +H money dollar 8.42 +H money currency 9.04 +t money wealth 8.27 +t money property 7.57 +t money possession 7.29 +t money bank 8.50 +t money deposit 7.73 +t money withdrawal 6.88 +t money laundering 5.65 +t money operation 3.31 +S tiger jaguar 8.00 +h tiger feline 8.00 +h tiger carnivore 7.08 +h tiger mammal 6.85 +h tiger animal 7.00 +h tiger organism 4.77 +h tiger fauna 5.62 +t tiger zoo 5.87 +S psychology psychiatry 8.08 +t psychology anxiety 7.00 +t psychology fear 6.85 +t psychology depression 7.42 +t psychology clinic 6.58 +t psychology doctor 6.42 +t psychology Freud 8.21 +t psychology mind 7.69 +t psychology health 7.23 +h psychology science 6.71 +h psychology discipline 5.58 +t psychology cognition 7.48 +S planet star 8.45 +t planet constellation 8.06 +S planet moon 8.08 +S planet sun 8.02 +m planet galaxy 8.11 +t planet space 7.92 +t planet astronomer 7.94 +h precedent example 5.85 +t precedent information 3.85 +t precedent cognition 2.81 +t precedent law 6.65 +t precedent collection 2.50 +t precedent group 1.77 +S precedent antecedent 6.04 +t cup coffee 6.58 +h cup tableware 6.85 +t cup article 2.40 +h cup artifact 2.92 +h cup object 3.69 +h cup entity 2.15 +t cup drink 7.25 +t cup food 5.00 +t cup substance 1.92 +t cup liquid 5.90 +h jaguar cat 7.42 +h jaguar car 7.27 +t energy secretary 1.81 +t secretary senate 5.06 +t energy laboratory 5.09 +t computer laboratory 6.78 +t weapon secret 6.06 +t FBI fingerprint 6.94 +t FBI investigation 8.31 +t investigation effort 4.59 +t Mars water 2.94 +t Mars scientist 5.63 +t news report 8.16 +m canyon landscape 7.53 +t image surface 4.56 +t discovery space 6.34 +t water seepage 6.56 +t sign recess 2.38 +t Wednesday news 2.22 +S mile kilometer 8.66 +t computer news 4.47 +t territory surface 5.34 +t atmosphere landscape 3.69 +t president medal 3.00 +t war troops 8.13 +t record number 6.31 +S skin eye 6.22 +S Japanese American 6.50 +t theater history 3.91 +t volunteer motto 2.56 +t prejudice recognition 3.00 +t decoration valor 5.63 +S century year 7.59 +t century nation 3.16 +t delay racism 1.19 +t delay news 3.31 +t minister party 6.63 +t peace plan 4.75 +t minority peace 3.69 +t attempt peace 4.25 +t government crisis 6.56 +t deployment departure 4.25 +t deployment withdrawal 5.88 +t energy crisis 5.94 +h announcement news 7.56 +t announcement effort 2.75 +t stroke hospital 7.03 +t disability death 5.47 +t victim emergency 6.47 +t treatment recovery 7.91 +t journal association 4.97 +h doctor personnel 5.00 +t doctor liability 5.19 +t liability insurance 7.03 +t school center 3.44 +t reason hypertension 2.31 +t reason criterion 5.91 +t hundred percent 7.38 +S Harvard Yale 8.13 +h hospital infrastructure 4.63 +t death row 5.25 +t death inmate 5.03 +t lawyer evidence 6.69 +S life death 7.88 +t life term 4.50 +t word similarity 4.75 +t board recommendation 4.47 +t governor interview 3.25 +M OPEC country 5.63 +t peace atmosphere 3.69 +t peace insurance 2.94 +t territory kilometer 5.28 +h travel activity 5.00 +t competition price 6.44 +t consumer confidence 4.13 +t consumer energy 4.75 +t problem airport 2.38 +t car flight 4.94 +t credit card 8.06 +t credit information 5.31 +t hotel reservation 8.03 +t grocery money 5.94 +t registration arrangement 6.00 +t arrangement accommodation 5.41 +t month hotel 1.81 +s type kind 8.97 +t arrival hotel 6.00 +t bed closet 6.72 +t closet clothes 8.00 +t situation conclusion 4.81 +t situation isolation 3.88 +t impartiality interest 5.16 +t direction combination 2.25 +h street place 6.44 +H street avenue 8.88 +S street block 6.88 +t street children 4.94 +t listing proximity 2.56 +t listing category 6.38 +h cell phone 7.81 +t production hike 1.75 +t benchmark index 4.25 +t media trading 3.88 +t media gain 2.88 +h dividend payment 7.63 +t dividend calculation 6.48 +s calculation computation 8.44 +t currency market 7.50 +t OPEC oil 8.59 +t oil stock 6.34 +t announcement production 3.38 +t announcement warning 6.00 +t profit warning 3.88 +S profit loss 7.63 +S dollar yen 7.78 +s dollar buck 9.22 +t dollar profit 7.38 +t dollar loss 6.09 +t computer software 8.50 +t network hardware 8.31 +h phone equipment 7.13 +t equipment maker 5.91 +t luxury car 6.47 +t five month 3.38 +t report gain 3.63 +t investor earning 7.13 +H liquid water 7.89 +t baseball season 5.97 +t game victory 7.03 +t game team 7.69 +S marathon sprint 7.47 +t game series 6.19 +t game defeat 6.97 +t seven series 3.56 +t seafood sea 7.47 +h seafood food 8.34 +H seafood lobster 8.70 +h lobster food 7.81 +S lobster wine 5.70 +t food preparation 6.22 +t video archive 6.34 +t start year 4.06 +t start match 4.47 +t game round 5.97 +t boxing round 7.61 +s championship tournament 8.36 +t fighting defeating 7.41 +t line insurance 2.69 +m day summer 3.94 +t summer drought 7.16 +t summer nature 5.63 +M day dawn 7.53 +t nature environment 8.31 +t environment ecology 8.81 +t nature man 6.25 +S man woman 8.30 +H man governor 5.25 +s murder manslaughter 8.53 +t soap opera 7.94 +h opera performance 6.88 +t life lesson 5.94 +t focus life 4.06 +t production crew 6.25 +t television film 7.72 +t lover quarrel 6.19 +t viewer serial 2.97 +t possibility girl 1.94 +t population development 3.75 +t morality importance 3.31 +t morality marriage 3.69 +S Mexico Brazil 7.44 +t gender equality 6.41 +t change attitude 5.44 +t family planning 6.25 +t opera industry 2.63 +t sugar approach 0.88 +t practice institution 3.19 +t ministry culture 4.69 +t problem challenge 6.75 +t size prominence 5.31 +M country citizen 7.31 +M planet people 5.75 +t development issue 3.97 +t experience music 3.47 +t music project 3.63 +S glass metal 5.56 +h aluminum metal 7.83 +t chance credibility 3.88 +t exhibit memorabilia 5.31 +t concert virtuoso 6.81 +S rock jazz 7.59 +S museum theater 7.19 +t observation architecture 4.38 +t space world 6.53 +t preservation world 6.19 +t admission ticket 7.69 +S shower thunderstorm 6.31 +t shower flood 6.03 +t weather forecast 8.34 +t disaster area 6.25 +t governor office 6.34 +t architecture century 3.78 diff --git a/WordSim353/data/ws353simrel_agirre/wordsim353_annotator1.txt b/WordSim353/data/ws353simrel_agirre/wordsim353_annotator1.txt new file mode 100644 index 0000000..bd5c58e --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim353_annotator1.txt @@ -0,0 +1,363 @@ +#Word 1 Word 2 Human (mean) +# i = identical tokens +# s = synonym (at least in one meaning of each) +# a = antonyms (at least in one meaning of each) +# h = first is hyponym of second (at least in one meaning of each) +# H = first is hyperonym of second (at least in one meaning of each) +# S = sibling terms (terms with a common hyperonymy) +# m = first is part of the second one (at least in one meaning of each) +# M = second is part of the first one (at least in one meaning of each) +# t = topically related, but none of the above +# +t love sex 6.77 +h tiger cat 7.35 +i tiger tiger 10.00 +t book paper 7.46 +M computer keyboard 7.62 +t computer internet 7.58 +S plane car 5.77 +S train car 6.31 +t telephone communication 7.50 +S television radio 6.77 +t media radio 7.42 +t drug abuse 6.85 +t bread butter 6.19 +S cucumber potato 5.92 +S doctor nurse 7.00 +t professor doctor 6.62 +S student professor 6.81 +t smart student 4.62 +a smart stupid 5.81 +M company stock 7.08 +t stock market 8.08 +t stock phone 1.62 +t stock CD 1.31 +t stock jaguar 0.92 +t stock egg 1.81 +t fertility egg 6.69 +t stock live 3.73 +t stock life 0.92 +m book library 7.46 +M bank money 8.12 +s wood forest 7.73 +H money cash 9.15 +t professor cucumber 0.31 +t king cabbage 0.23 +S king queen 8.58 +S king rook 5.92 +S bishop rabbi 6.69 +m Jerusalem Israel 8.46 +t Jerusalem Palestinian 7.65 +t holy sex 1.62 +h fuck sex 9.44 +t Maradona football 8.62 +s football soccer 9.03 +S football basketball 6.81 +S football tennis 6.63 +t tennis racket 7.56 +t Arafat peace 6.73 +t Arafat terror 7.65 +t Arafat Jackson 2.50 +t law lawyer 8.38 +t movie star 7.38 +t movie popcorn 6.19 +t movie critic 6.73 +t movie theater 7.92 +t physics proton 8.12 +S physics chemistry 7.35 +t space chemistry 4.88 +t alcohol chemistry 5.54 +S vodka gin 8.46 +S vodka brandy 8.13 +t drink car 3.04 +t drink ear 1.31 +t drink mouth 5.96 +S drink eat 6.87 +t baby mother 7.85 +t drink mother 2.65 +s car automobile 8.94 +s gem jewel 8.96 +s journey voyage 9.29 +s boy lad 8.83 +s coast shore 9.10 +s asylum madhouse 8.87 +s magician wizard 9.02 +s midday noon 9.29 +s furnace stove 8.79 +H food fruit 7.52 +H bird cock 7.10 +H bird crane 7.38 +s tool implement 6.46 +s brother monk 6.27 +t crane implement 2.69 +t lad brother 4.46 +t journey car 5.85 +t monk oracle 5.00 +S cemetery woodland 2.08 +H food rooster 4.42 +S coast hill 4.38 +S forest graveyard 1.85 +S shore woodland 3.08 +t monk slave 0.92 +S coast forest 3.15 +t lad wizard 0.92 +t chord smile 0.54 +t glass magician 2.08 +t noon string 0.54 +t rooster voyage 0.62 +H money dollar 8.42 +H money currency 9.04 +t money wealth 8.27 +t money property 7.57 +h money possession 7.29 +m money bank 8.50 +m money deposit 7.73 +t money withdrawal 6.88 +t money laundering 5.65 +t money operation 3.31 +S tiger jaguar 8.00 +h tiger feline 8.00 +h tiger carnivore 7.08 +h tiger mammal 6.85 +h tiger animal 7.00 +h tiger organism 4.77 +t tiger fauna 5.62 +t tiger zoo 5.87 +S psychology psychiatry 8.08 +t psychology anxiety 7.00 +t psychology fear 6.85 +t psychology depression 7.42 +t psychology clinic 6.58 +t psychology doctor 6.42 +t psychology Freud 8.21 +t psychology mind 7.69 +t psychology health 7.23 +h psychology science 6.71 +h psychology discipline 5.58 +t psychology cognition 7.48 +S planet star 8.45 +m planet constellation 8.06 +M planet moon 8.08 +m planet sun 8.02 +m planet galaxy 8.11 +t planet space 7.92 +t planet astronomer 7.94 +h precedent example 5.85 +t precedent information 3.85 +t precedent cognition 2.81 +t precedent law 6.65 +t precedent collection 2.50 +t precedent group 1.77 +s precedent antecedent 6.04 +t cup coffee 6.58 +h cup tableware 6.85 +t cup article 2.40 +h cup artifact 2.92 +h cup object 3.69 +h cup entity 2.15 +t cup drink 7.25 +t cup food 5.00 +t cup substance 1.92 +t cup liquid 5.90 +h jaguar cat 7.42 +h jaguar car 7.27 +t energy secretary 1.81 +t secretary senate 5.06 +t energy laboratory 5.09 +t computer laboratory 6.78 +t weapon secret 6.06 +t FBI fingerprint 6.94 +t FBI investigation 8.31 +h investigation effort 4.59 +t Mars water 2.94 +t Mars scientist 5.63 +t news report 8.16 +m canyon landscape 7.53 +t image surface 4.56 +t discovery space 6.34 +t water seepage 6.56 +t sign recess 2.38 +t Wednesday news 2.22 +S mile kilometer 8.66 +t computer news 4.47 +t territory surface 5.34 +t atmosphere landscape 3.69 +t president medal 3.00 +t war troops 8.13 +h record number 6.31 +t skin eye 6.22 +S Japanese American 6.50 +t theater history 3.91 +t volunteer motto 2.56 +t prejudice recognition 3.00 +t decoration valor 5.63 +S century year 7.59 +t century nation 3.16 +t delay racism 1.19 +t delay news 3.31 +t minister party 6.63 +t peace plan 4.75 +t minority peace 3.69 +t attempt peace 4.25 +t government crisis 6.56 +t deployment departure 4.25 +t deployment withdrawal 5.88 +t energy crisis 5.94 +h announcement news 7.56 +t announcement effort 2.75 +t stroke hospital 7.03 +t disability death 5.47 +t victim emergency 6.47 +t treatment recovery 7.91 +t journal association 4.97 +h doctor personnel 5.00 +t doctor liability 5.19 +t liability insurance 7.03 +h school center 3.44 +t reason hypertension 2.31 +t reason criterion 5.91 +t hundred percent 7.38 +S Harvard Yale 8.13 +h hospital infrastructure 4.63 +t death row 5.25 +t death inmate 5.03 +t lawyer evidence 6.69 +t life death 7.88 +t life term 4.50 +t word similarity 4.75 +t board recommendation 4.47 +t governor interview 3.25 +M OPEC country 5.63 +t peace atmosphere 3.69 +t peace insurance 2.94 +t territory kilometer 5.28 +h travel activity 5.00 +t competition price 6.44 +t consumer confidence 4.13 +t consumer energy 4.75 +t problem airport 2.38 +t car flight 4.94 +t credit card 8.06 +t credit information 5.31 +t hotel reservation 8.03 +t grocery money 5.94 +t registration arrangement 6.00 +t arrangement accommodation 5.41 +t month hotel 1.81 +s type kind 8.97 +t arrival hotel 6.00 +t bed closet 6.72 +t closet clothes 8.00 +t situation conclusion 4.81 +t situation isolation 3.88 +t impartiality interest 5.16 +t direction combination 2.25 +h street place 6.44 +H street avenue 8.88 +t street block 6.88 +t street children 4.94 +t listing proximity 2.56 +M listing category 6.38 +t cell phone 7.81 +t production hike 1.75 +t benchmark index 4.25 +t media trading 3.88 +t media gain 2.88 +h dividend payment 7.63 +t dividend calculation 6.48 +s calculation computation 8.44 +t currency market 7.50 +t OPEC oil 8.59 +t oil stock 6.34 +t announcement production 3.38 +H announcement warning 6.00 +t profit warning 3.88 +t profit loss 7.63 +S dollar yen 7.78 +s dollar buck 9.22 +t dollar profit 7.38 +t dollar loss 6.09 +t computer software 8.50 +t network hardware 8.31 +h phone equipment 7.13 +t equipment maker 5.91 +t luxury car 6.47 +t five month 3.38 +t report gain 3.63 +t investor earning 7.13 +t liquid water 7.89 +t baseball season 5.97 +t game victory 7.03 +t game team 7.69 +M marathon sprint 7.47 +t game series 6.19 +t game defeat 6.97 +t seven series 3.56 +t seafood sea 7.47 +h seafood food 8.34 +H seafood lobster 8.70 +h lobster food 7.81 +t lobster wine 5.70 +t food preparation 6.22 +t video archive 6.34 +t start year 4.06 +t start match 4.47 +M game round 5.97 +t boxing round 7.61 +s championship tournament 8.36 +t fighting defeating 7.41 +t line insurance 2.69 +m day summer 3.94 +t summer drought 7.16 +t summer nature 5.63 +M day dawn 7.53 +t nature environment 8.31 +t environment ecology 8.81 +t nature man 6.25 +S man woman 8.30 +H man governor 5.25 +s murder manslaughter 8.53 +t soap opera 7.94 +h opera performance 6.88 +t life lesson 5.94 +t focus life 4.06 +t production crew 6.25 +t television film 7.72 +t lover quarrel 6.19 +t viewer serial 2.97 +t possibility girl 1.94 +t population development 3.75 +t morality importance 3.31 +t morality marriage 3.69 +S Mexico Brazil 7.44 +t gender equality 6.41 +t change attitude 5.44 +t family planning 6.25 +t opera industry 2.63 +t sugar approach 0.88 +t practice institution 3.19 +t ministry culture 4.69 +t problem challenge 6.75 +t size prominence 5.31 +M country citizen 7.31 +t planet people 5.75 +t development issue 3.97 +t experience music 3.47 +t music project 3.63 +S glass metal 5.56 +h aluminum metal 7.83 +t chance credibility 3.88 +t exhibit memorabilia 5.31 +t concert virtuoso 6.81 +S rock jazz 7.59 +S museum theater 7.19 +t observation architecture 4.38 +t space world 6.53 +t preservation world 6.19 +t admission ticket 7.69 +S shower thunderstorm 6.31 +t shower flood 6.03 +t weather forecast 8.34 +t disaster area 6.25 +t governor office 6.34 +t architecture century 3.78 diff --git a/WordSim353/data/ws353simrel_agirre/wordsim353_annotator2.txt b/WordSim353/data/ws353simrel_agirre/wordsim353_annotator2.txt new file mode 100644 index 0000000..36576bf --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim353_annotator2.txt @@ -0,0 +1,362 @@ +#Word 1 Word 2 Human (mean) +# i = identical tokens +# s = synonym (at least in one meaning of each) +# h = first is hyponym of second (at least in one meaning of each) +# H = first is hyperonym of second (at least in one meaning of each) +# S = sibling terms (terms with a common hyperonymy) +# m = first is part of the second one (at least in one meaning of each) +# M = second is part of the first one (at least in one meaning of each) +# t = topically related, but none of the above +# +s love sex 6.77 +S tiger cat 7.35 +i tiger tiger 10.00 +t book paper 7.46 +M computer keyboard 7.62 +t computer internet 7.58 +S plane car 5.77 +S train car 6.31 +t telephone communication 7.50 +S television radio 6.77 +H media radio 7.42 +t drug abuse 6.85 +S bread butter 6.19 +S cucumber potato 5.92 +t doctor nurse 7.00 +s professor doctor 6.62 +S student professor 6.81 +t smart student 4.62 +S smart stupid 5.81 +t company stock 7.08 +s stock market 8.08 +t stock phone 1.62 +t stock CD 1.31 +t stock jaguar 0.92 +t stock egg 1.81 +t fertility egg 6.69 +t stock live 3.73 +t stock life 0.92 +t book library 7.46 +t bank money 8.12 +s wood forest 7.73 +s money cash 9.15 +t professor cucumber 0.31 +t king cabbage 0.23 +S king queen 8.58 +S king rook 5.92 +S bishop rabbi 6.69 +S Jerusalem Israel 8.46 +t Jerusalem Palestinian 7.65 +t holy sex 1.62 +s fuck sex 9.44 +t Maradona football 8.62 +s football soccer 9.03 +S football basketball 6.81 +S football tennis 6.63 +t tennis racket 7.56 +t Arafat peace 6.73 +t Arafat terror 7.65 +S Arafat Jackson 2.50 +t law lawyer 8.38 +t movie star 7.38 +t movie popcorn 6.19 +t movie critic 6.73 +t movie theater 7.92 +t physics proton 8.12 +S physics chemistry 7.35 +t space chemistry 4.88 +t alcohol chemistry 5.54 +S vodka gin 8.46 +S vodka brandy 8.13 +t drink car 3.04 +t drink ear 1.31 +t drink mouth 5.96 +S drink eat 6.87 +t baby mother 7.85 +t drink mother 2.65 +s car automobile 8.94 +s gem jewel 8.96 +s journey voyage 9.29 +s boy lad 8.83 +s coast shore 9.10 +s asylum madhouse 8.87 +s magician wizard 9.02 +s midday noon 9.29 +s furnace stove 8.79 +H food fruit 7.52 +H bird cock 7.10 +H bird crane 7.38 +t tool implement 6.46 +t brother monk 6.27 +t crane implement 2.69 +t lad brother 4.46 +t journey car 5.85 +t monk oracle 5.00 +t cemetery woodland 2.08 +t food rooster 4.42 +t coast hill 4.38 +t forest graveyard 1.85 +t shore woodland 3.08 +t monk slave 0.92 +t coast forest 3.15 +t lad wizard 0.92 +t chord smile 0.54 +t glass magician 2.08 +t noon string 0.54 +t rooster voyage 0.62 +H money dollar 8.42 +S money currency 9.04 +t money wealth 8.27 +t money property 7.57 +t money possession 7.29 +t money bank 8.50 +t money deposit 7.73 +t money withdrawal 6.88 +t money laundering 5.65 +t money operation 3.31 +S tiger jaguar 8.00 +t tiger feline 8.00 +h tiger carnivore 7.08 +h tiger mammal 6.85 +h tiger animal 7.00 +h tiger organism 4.77 +h tiger fauna 5.62 +t tiger zoo 5.87 +t psychology psychiatry 8.08 +t psychology anxiety 7.00 +t psychology fear 6.85 +t psychology depression 7.42 +t psychology clinic 6.58 +t psychology doctor 6.42 +t psychology Freud 8.21 +t psychology mind 7.69 +t psychology health 7.23 +t psychology science 6.71 +h psychology discipline 5.58 +t psychology cognition 7.48 +S planet star 8.45 +t planet constellation 8.06 +S planet moon 8.08 +S planet sun 8.02 +m planet galaxy 8.11 +m planet space 7.92 +t planet astronomer 7.94 +t precedent example 5.85 +t precedent information 3.85 +t precedent cognition 2.81 +t precedent law 6.65 +t precedent collection 2.50 +t precedent group 1.77 +S precedent antecedent 6.04 +t cup coffee 6.58 +t cup tableware 6.85 +t cup article 2.40 +h cup artifact 2.92 +h cup object 3.69 +h cup entity 2.15 +t cup drink 7.25 +t cup food 5.00 +t cup substance 1.92 +t cup liquid 5.90 +h jaguar cat 7.42 +h jaguar car 7.27 +t energy secretary 1.81 +t secretary senate 5.06 +t energy laboratory 5.09 +t computer laboratory 6.78 +t weapon secret 6.06 +t FBI fingerprint 6.94 +t FBI investigation 8.31 +s investigation effort 4.59 +t Mars water 2.94 +t Mars scientist 5.63 +s news report 8.16 +h canyon landscape 7.53 +t image surface 4.56 +t discovery space 6.34 +t water seepage 6.56 +t sign recess 2.38 +t Wednesday news 2.22 +S mile kilometer 8.66 +t computer news 4.47 +t territory surface 5.34 +t atmosphere landscape 3.69 +t president medal 3.00 +t war troops 8.13 +t record number 6.31 +S skin eye 6.22 +S Japanese American 6.50 +t theater history 3.91 +t volunteer motto 2.56 +t prejudice recognition 3.00 +t decoration valor 5.63 +S century year 7.59 +t century nation 3.16 +t delay racism 1.19 +t delay news 3.31 +t minister party 6.63 +t peace plan 4.75 +t minority peace 3.69 +t attempt peace 4.25 +t government crisis 6.56 +t deployment departure 4.25 +t deployment withdrawal 5.88 +t energy crisis 5.94 +s announcement news 7.56 +t announcement effort 2.75 +t stroke hospital 7.03 +t disability death 5.47 +t victim emergency 6.47 +t treatment recovery 7.91 +t journal association 4.97 +t doctor personnel 5.00 +t doctor liability 5.19 +t liability insurance 7.03 +t school center 3.44 +t reason hypertension 2.31 +t reason criterion 5.91 +t hundred percent 7.38 +S Harvard Yale 8.13 +h hospital infrastructure 4.63 +t death row 5.25 +t death inmate 5.03 +t lawyer evidence 6.69 +S life death 7.88 +t life term 4.50 +t word similarity 4.75 +t board recommendation 4.47 +t governor interview 3.25 +t OPEC country 5.63 +t peace atmosphere 3.69 +t peace insurance 2.94 +S territory kilometer 5.28 +h travel activity 5.00 +t competition price 6.44 +t consumer confidence 4.13 +t consumer energy 4.75 +t problem airport 2.38 +t car flight 4.94 +t credit card 8.06 +t credit information 5.31 +t hotel reservation 8.03 +t grocery money 5.94 +s registration arrangement 6.00 +t arrangement accommodation 5.41 +t month hotel 1.81 +s type kind 8.97 +t arrival hotel 6.00 +t bed closet 6.72 +t closet clothes 8.00 +t situation conclusion 4.81 +t situation isolation 3.88 +t impartiality interest 5.16 +t direction combination 2.25 +h street place 6.44 +s street avenue 8.88 +S street block 6.88 +t street children 4.94 +t listing proximity 2.56 +t listing category 6.38 +s cell phone 7.81 +t production hike 1.75 +t benchmark index 4.25 +t media trading 3.88 +t media gain 2.88 +s dividend payment 7.63 +t dividend calculation 6.48 +s calculation computation 8.44 +t currency market 7.50 +t OPEC oil 8.59 +t oil stock 6.34 +t announcement production 3.38 +t announcement warning 6.00 +t profit warning 3.88 +S profit loss 7.63 +S dollar yen 7.78 +s dollar buck 9.22 +t dollar profit 7.38 +t dollar loss 6.09 +M computer software 8.50 +S network hardware 8.31 +h phone equipment 7.13 +H equipment maker 5.91 +t luxury car 6.47 +t five month 3.38 +t report gain 3.63 +t investor earning 7.13 +H liquid water 7.89 +t baseball season 5.97 +t game victory 7.03 +t game team 7.69 +S marathon sprint 7.47 +t game series 6.19 +t game defeat 6.97 +t seven series 3.56 +t seafood sea 7.47 +h seafood food 8.34 +H seafood lobster 8.70 +h lobster food 7.81 +S lobster wine 5.70 +t food preparation 6.22 +t video archive 6.34 +t start year 4.06 +t start match 4.47 +t game round 5.97 +t boxing round 7.61 +s championship tournament 8.36 +t fighting defeating 7.41 +t line insurance 2.69 +t day summer 3.94 +t summer drought 7.16 +t summer nature 5.63 +t day dawn 7.53 +s nature environment 8.31 +t environment ecology 8.81 +t nature man 6.25 +S man woman 8.30 +t man governor 5.25 +s murder manslaughter 8.53 +t soap opera 7.94 +h opera performance 6.88 +t life lesson 5.94 +t focus life 4.06 +t production crew 6.25 +t television film 7.72 +t lover quarrel 6.19 +t viewer serial 2.97 +t possibility girl 1.94 +t population development 3.75 +t morality importance 3.31 +t morality marriage 3.69 +S Mexico Brazil 7.44 +t gender equality 6.41 +t change attitude 5.44 +t family planning 6.25 +t opera industry 2.63 +t sugar approach 0.88 +t practice institution 3.19 +t ministry culture 4.69 +t problem challenge 6.75 +t size prominence 5.31 +m country citizen 7.31 +m planet people 5.75 +t development issue 3.97 +t experience music 3.47 +t music project 3.63 +S glass metal 5.56 +h aluminum metal 7.83 +t chance credibility 3.88 +t exhibit memorabilia 5.31 +t concert virtuoso 6.81 +S rock jazz 7.59 +S museum theater 7.19 +t observation architecture 4.38 +t space world 6.53 +t preservation world 6.19 +t admission ticket 7.69 +S shower thunderstorm 6.31 +t shower flood 6.03 +t weather forecast 8.34 +t disaster area 6.25 +t governor office 6.34 +t architecture century 3.78 diff --git a/WordSim353/data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt b/WordSim353/data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt new file mode 100644 index 0000000..778bdc2 --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt @@ -0,0 +1,252 @@ +computer keyboard 7.62 +Jerusalem Israel 8.46 +planet galaxy 8.11 +canyon landscape 7.53 +OPEC country 5.63 +day summer 3.94 +day dawn 7.53 +country citizen 7.31 +planet people 5.75 +environment ecology 8.81 +Maradona football 8.62 +OPEC oil 8.59 +money bank 8.50 +computer software 8.50 +law lawyer 8.38 +weather forecast 8.34 +network hardware 8.31 +nature environment 8.31 +FBI investigation 8.31 +money wealth 8.27 +psychology Freud 8.21 +news report 8.16 +war troops 8.13 +physics proton 8.12 +bank money 8.12 +stock market 8.08 +planet constellation 8.06 +credit card 8.06 +hotel reservation 8.03 +closet clothes 8.00 +soap opera 7.94 +planet astronomer 7.94 +planet space 7.92 +movie theater 7.92 +treatment recovery 7.91 +baby mother 7.85 +money deposit 7.73 +television film 7.72 +psychology mind 7.69 +game team 7.69 +admission ticket 7.69 +Jerusalem Palestinian 7.65 +Arafat terror 7.65 +boxing round 7.61 +computer internet 7.58 +money property 7.57 +tennis racket 7.56 +telephone communication 7.50 +currency market 7.50 +psychology cognition 7.48 +seafood sea 7.47 +book paper 7.46 +book library 7.46 +psychology depression 7.42 +fighting defeating 7.41 +movie star 7.38 +hundred percent 7.38 +dollar profit 7.38 +money possession 7.29 +cup drink 7.25 +psychology health 7.23 +summer drought 7.16 +investor earning 7.13 +company stock 7.08 +stroke hospital 7.03 +liability insurance 7.03 +game victory 7.03 +psychology anxiety 7.00 +game defeat 6.97 +FBI fingerprint 6.94 +money withdrawal 6.88 +psychology fear 6.85 +drug abuse 6.85 +concert virtuoso 6.81 +computer laboratory 6.78 +love sex 6.77 +problem challenge 6.75 +movie critic 6.73 +Arafat peace 6.73 +bed closet 6.72 +lawyer evidence 6.69 +fertility egg 6.69 +precedent law 6.65 +minister party 6.63 +psychology clinic 6.58 +cup coffee 6.58 +water seepage 6.56 +government crisis 6.56 +space world 6.53 +dividend calculation 6.48 +victim emergency 6.47 +luxury car 6.47 +tool implement 6.46 +competition price 6.44 +psychology doctor 6.42 +gender equality 6.41 +listing category 6.38 +video archive 6.34 +oil stock 6.34 +governor office 6.34 +discovery space 6.34 +record number 6.31 +brother monk 6.27 +production crew 6.25 +nature man 6.25 +family planning 6.25 +disaster area 6.25 +food preparation 6.22 +preservation world 6.19 +movie popcorn 6.19 +lover quarrel 6.19 +game series 6.19 +dollar loss 6.09 +weapon secret 6.06 +shower flood 6.03 +registration arrangement 6.00 +arrival hotel 6.00 +announcement warning 6.00 +game round 5.97 +baseball season 5.97 +drink mouth 5.96 +life lesson 5.94 +grocery money 5.94 +energy crisis 5.94 +reason criterion 5.91 +equipment maker 5.91 +cup liquid 5.90 +deployment withdrawal 5.88 +tiger zoo 5.87 +journey car 5.85 +money laundering 5.65 +summer nature 5.63 +decoration valor 5.63 +Mars scientist 5.63 +alcohol chemistry 5.54 +disability death 5.47 +change attitude 5.44 +arrangement accommodation 5.41 +territory surface 5.34 +size prominence 5.31 +exhibit memorabilia 5.31 +credit information 5.31 +territory kilometer 5.28 +death row 5.25 +doctor liability 5.19 +impartiality interest 5.16 +energy laboratory 5.09 +secretary senate 5.06 +death inmate 5.03 +monk oracle 5.00 +cup food 5.00 +journal association 4.97 +street children 4.94 +car flight 4.94 +space chemistry 4.88 +situation conclusion 4.81 +word similarity 4.75 +peace plan 4.75 +consumer energy 4.75 +ministry culture 4.69 +smart student 4.62 +investigation effort 4.59 +image surface 4.56 +life term 4.50 +start match 4.47 +computer news 4.47 +board recommendation 4.47 +lad brother 4.46 +observation architecture 4.38 +coast hill 4.38 +deployment departure 4.25 +benchmark index 4.25 +attempt peace 4.25 +consumer confidence 4.13 +start year 4.06 +focus life 4.06 +development issue 3.97 +theater history 3.91 +situation isolation 3.88 +profit warning 3.88 +media trading 3.88 +chance credibility 3.88 +precedent information 3.85 +architecture century 3.78 +population development 3.75 +stock live 3.73 +peace atmosphere 3.69 +morality marriage 3.69 +minority peace 3.69 +atmosphere landscape 3.69 +report gain 3.63 +music project 3.63 +seven series 3.56 +experience music 3.47 +school center 3.44 +five month 3.38 +announcement production 3.38 +morality importance 3.31 +money operation 3.31 +delay news 3.31 +governor interview 3.25 +practice institution 3.19 +century nation 3.16 +coast forest 3.15 +shore woodland 3.08 +drink car 3.04 +president medal 3.00 +prejudice recognition 3.00 +viewer serial 2.97 +peace insurance 2.94 +Mars water 2.94 +media gain 2.88 +precedent cognition 2.81 +announcement effort 2.75 +line insurance 2.69 +crane implement 2.69 +drink mother 2.65 +opera industry 2.63 +volunteer motto 2.56 +listing proximity 2.56 +precedent collection 2.50 +cup article 2.40 +sign recess 2.38 +problem airport 2.38 +reason hypertension 2.31 +direction combination 2.25 +Wednesday news 2.22 +glass magician 2.08 +cemetery woodland 2.08 +possibility girl 1.94 +cup substance 1.92 +forest graveyard 1.85 +stock egg 1.81 +month hotel 1.81 +energy secretary 1.81 +precedent group 1.77 +production hike 1.75 +stock phone 1.62 +holy sex 1.62 +stock CD 1.31 +drink ear 1.31 +delay racism 1.19 +stock life 0.92 +stock jaguar 0.92 +monk slave 0.92 +lad wizard 0.92 +sugar approach 0.88 +rooster voyage 0.62 +noon string 0.54 +chord smile 0.54 +professor cucumber 0.31 +king cabbage 0.23 diff --git a/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard.txt b/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard.txt new file mode 100644 index 0000000..4a94658 --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard.txt @@ -0,0 +1,203 @@ +tiger cat 7.35 +tiger tiger 10.00 +plane car 5.77 +train car 6.31 +television radio 6.77 +media radio 7.42 +bread butter 6.19 +cucumber potato 5.92 +doctor nurse 7.00 +professor doctor 6.62 +student professor 6.81 +smart stupid 5.81 +wood forest 7.73 +money cash 9.15 +king queen 8.58 +king rook 5.92 +bishop rabbi 6.69 +fuck sex 9.44 +football soccer 9.03 +football basketball 6.81 +football tennis 6.63 +Arafat Jackson 2.50 +physics chemistry 7.35 +vodka gin 8.46 +vodka brandy 8.13 +drink eat 6.87 +car automobile 8.94 +gem jewel 8.96 +journey voyage 9.29 +boy lad 8.83 +coast shore 9.10 +asylum madhouse 8.87 +magician wizard 9.02 +midday noon 9.29 +furnace stove 8.79 +food fruit 7.52 +bird cock 7.10 +bird crane 7.38 +food rooster 4.42 +money dollar 8.42 +money currency 9.04 +tiger jaguar 8.00 +tiger feline 8.00 +tiger carnivore 7.08 +tiger mammal 6.85 +tiger animal 7.00 +tiger organism 4.77 +tiger fauna 5.62 +psychology psychiatry 8.08 +psychology science 6.71 +psychology discipline 5.58 +planet star 8.45 +planet moon 8.08 +planet sun 8.02 +precedent example 5.85 +precedent antecedent 6.04 +cup tableware 6.85 +cup artifact 2.92 +cup object 3.69 +cup entity 2.15 +jaguar cat 7.42 +jaguar car 7.27 +mile kilometer 8.66 +skin eye 6.22 +Japanese American 6.50 +century year 7.59 +announcement news 7.56 +doctor personnel 5.00 +Harvard Yale 8.13 +hospital infrastructure 4.63 +life death 7.88 +travel activity 5.00 +type kind 8.97 +street place 6.44 +street avenue 8.88 +street block 6.88 +cell phone 7.81 +dividend payment 7.63 +calculation computation 8.44 +profit loss 7.63 +dollar yen 7.78 +dollar buck 9.22 +phone equipment 7.13 +liquid water 7.89 +marathon sprint 7.47 +seafood food 8.34 +seafood lobster 8.70 +lobster food 7.81 +lobster wine 5.70 +championship tournament 8.36 +man woman 8.30 +man governor 5.25 +murder manslaughter 8.53 +opera performance 6.88 +Mexico Brazil 7.44 +glass metal 5.56 +aluminum metal 7.83 +rock jazz 7.59 +museum theater 7.19 +shower thunderstorm 6.31 +monk oracle 5.00 +cup food 5.00 +journal association 4.97 +street children 4.94 +car flight 4.94 +space chemistry 4.88 +situation conclusion 4.81 +word similarity 4.75 +peace plan 4.75 +consumer energy 4.75 +ministry culture 4.69 +smart student 4.62 +investigation effort 4.59 +image surface 4.56 +life term 4.50 +start match 4.47 +computer news 4.47 +board recommendation 4.47 +lad brother 4.46 +observation architecture 4.38 +coast hill 4.38 +deployment departure 4.25 +benchmark index 4.25 +attempt peace 4.25 +consumer confidence 4.13 +start year 4.06 +focus life 4.06 +development issue 3.97 +theater history 3.91 +situation isolation 3.88 +profit warning 3.88 +media trading 3.88 +chance credibility 3.88 +precedent information 3.85 +architecture century 3.78 +population development 3.75 +stock live 3.73 +peace atmosphere 3.69 +morality marriage 3.69 +minority peace 3.69 +atmosphere landscape 3.69 +report gain 3.63 +music project 3.63 +seven series 3.56 +experience music 3.47 +school center 3.44 +five month 3.38 +announcement production 3.38 +morality importance 3.31 +money operation 3.31 +delay news 3.31 +governor interview 3.25 +practice institution 3.19 +century nation 3.16 +coast forest 3.15 +shore woodland 3.08 +drink car 3.04 +president medal 3.00 +prejudice recognition 3.00 +viewer serial 2.97 +peace insurance 2.94 +Mars water 2.94 +media gain 2.88 +precedent cognition 2.81 +announcement effort 2.75 +line insurance 2.69 +crane implement 2.69 +drink mother 2.65 +opera industry 2.63 +volunteer motto 2.56 +listing proximity 2.56 +precedent collection 2.50 +cup article 2.40 +sign recess 2.38 +problem airport 2.38 +reason hypertension 2.31 +direction combination 2.25 +Wednesday news 2.22 +glass magician 2.08 +cemetery woodland 2.08 +possibility girl 1.94 +cup substance 1.92 +forest graveyard 1.85 +stock egg 1.81 +month hotel 1.81 +energy secretary 1.81 +precedent group 1.77 +production hike 1.75 +stock phone 1.62 +holy sex 1.62 +stock CD 1.31 +drink ear 1.31 +delay racism 1.19 +stock life 0.92 +stock jaguar 0.92 +monk slave 0.92 +lad wizard 0.92 +sugar approach 0.88 +rooster voyage 0.62 +noon string 0.54 +chord smile 0.54 +professor cucumber 0.31 +king cabbage 0.23 diff --git a/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard_353.txt b/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard_353.txt new file mode 100644 index 0000000..937209a --- /dev/null +++ b/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard_353.txt @@ -0,0 +1,204 @@ +tiger cat 7.35 +tiger tiger 10.00 +plane car 5.77 +train car 6.31 +television radio 6.77 +media radio 7.42 +bread butter 6.19 +cucumber potato 5.92 +doctor nurse 7.00 +professor doctor 6.62 +student professor 6.81 +smart stupid 5.81 +wood forest 7.73 +money cash 9.15 +money cash 9.08 +king queen 8.58 +king rook 5.92 +bishop rabbi 6.69 +fuck sex 9.44 +football soccer 9.03 +football basketball 6.81 +football tennis 6.63 +Arafat Jackson 2.50 +physics chemistry 7.35 +vodka gin 8.46 +vodka brandy 8.13 +drink eat 6.87 +car automobile 8.94 +gem jewel 8.96 +journey voyage 9.29 +boy lad 8.83 +coast shore 9.10 +asylum madhouse 8.87 +magician wizard 9.02 +midday noon 9.29 +furnace stove 8.79 +food fruit 7.52 +bird cock 7.10 +bird crane 7.38 +food rooster 4.42 +money dollar 8.42 +money currency 9.04 +tiger jaguar 8.00 +tiger feline 8.00 +tiger carnivore 7.08 +tiger mammal 6.85 +tiger animal 7.00 +tiger organism 4.77 +tiger fauna 5.62 +psychology psychiatry 8.08 +psychology science 6.71 +psychology discipline 5.58 +planet star 8.45 +planet moon 8.08 +planet sun 8.02 +precedent example 5.85 +precedent antecedent 6.04 +cup tableware 6.85 +cup artifact 2.92 +cup object 3.69 +cup entity 2.15 +jaguar cat 7.42 +jaguar car 7.27 +mile kilometer 8.66 +skin eye 6.22 +Japanese American 6.50 +century year 7.59 +announcement news 7.56 +doctor personnel 5.00 +Harvard Yale 8.13 +hospital infrastructure 4.63 +life death 7.88 +travel activity 5.00 +type kind 8.97 +street place 6.44 +street avenue 8.88 +street block 6.88 +cell phone 7.81 +dividend payment 7.63 +calculation computation 8.44 +profit loss 7.63 +dollar yen 7.78 +dollar buck 9.22 +phone equipment 7.13 +liquid water 7.89 +marathon sprint 7.47 +seafood food 8.34 +seafood lobster 8.70 +lobster food 7.81 +lobster wine 5.70 +championship tournament 8.36 +man woman 8.30 +man governor 5.25 +murder manslaughter 8.53 +opera performance 6.88 +Mexico Brazil 7.44 +glass metal 5.56 +aluminum metal 7.83 +rock jazz 7.59 +museum theater 7.19 +shower thunderstorm 6.31 +monk oracle 5.00 +cup food 5.00 +journal association 4.97 +street children 4.94 +car flight 4.94 +space chemistry 4.88 +situation conclusion 4.81 +word similarity 4.75 +peace plan 4.75 +consumer energy 4.75 +ministry culture 4.69 +smart student 4.62 +investigation effort 4.59 +image surface 4.56 +life term 4.50 +start match 4.47 +computer news 4.47 +board recommendation 4.47 +lad brother 4.46 +observation architecture 4.38 +coast hill 4.38 +deployment departure 4.25 +benchmark index 4.25 +attempt peace 4.25 +consumer confidence 4.13 +start year 4.06 +focus life 4.06 +development issue 3.97 +theater history 3.91 +situation isolation 3.88 +profit warning 3.88 +media trading 3.88 +chance credibility 3.88 +precedent information 3.85 +architecture century 3.78 +population development 3.75 +stock live 3.73 +peace atmosphere 3.69 +morality marriage 3.69 +minority peace 3.69 +atmosphere landscape 3.69 +report gain 3.63 +music project 3.63 +seven series 3.56 +experience music 3.47 +school center 3.44 +five month 3.38 +announcement production 3.38 +morality importance 3.31 +money operation 3.31 +delay news 3.31 +governor interview 3.25 +practice institution 3.19 +century nation 3.16 +coast forest 3.15 +shore woodland 3.08 +drink car 3.04 +president medal 3.00 +prejudice recognition 3.00 +viewer serial 2.97 +peace insurance 2.94 +Mars water 2.94 +media gain 2.88 +precedent cognition 2.81 +announcement effort 2.75 +line insurance 2.69 +crane implement 2.69 +drink mother 2.65 +opera industry 2.63 +volunteer motto 2.56 +listing proximity 2.56 +precedent collection 2.50 +cup article 2.40 +sign recess 2.38 +problem airport 2.38 +reason hypertension 2.31 +direction combination 2.25 +Wednesday news 2.22 +glass magician 2.08 +cemetery woodland 2.08 +possibility girl 1.94 +cup substance 1.92 +forest graveyard 1.85 +stock egg 1.81 +month hotel 1.81 +energy secretary 1.81 +precedent group 1.77 +production hike 1.75 +stock phone 1.62 +holy sex 1.62 +stock CD 1.31 +drink ear 1.31 +delay racism 1.19 +stock life 0.92 +stock jaguar 0.92 +monk slave 0.92 +lad wizard 0.92 +sugar approach 0.88 +rooster voyage 0.62 +noon string 0.54 +chord smile 0.54 +professor cucumber 0.31 +king cabbage 0.23 diff --git a/WordSim353/evaluate.py b/WordSim353/evaluate.py new file mode 100644 index 0000000..bef00b7 --- /dev/null +++ b/WordSim353/evaluate.py @@ -0,0 +1,173 @@ +""" +WordSim-353 score calculation for a given pair of embeddings. +Example usage: python evaluate.py --version gur350 --vector_location /path/to/vec +""" +import argparse +import pandas as pd +from gensim.models import KeyedVectors +from scipy.stats import spearmanr +from scipy.spatial.distance import cosine + +def load_word_lists(version: str): + """Loads word pair scores as annotated by humans and published. + Different versions: + - english = original scores spit into relatedness and similarity + - english_complete = same as english, but includes the duplicate money-cash + entry, which the authors of the rel/sim split removed + - english_multilingual = excludes three hard to transalte pairs and has + has new scores, annotated in same study as other translated data + - german = translated word pairs, annotated in same study as english_multilingual + - german = different version, annotated by Gurevych et al. 2005, 350 pairs""" + + if version == "english": + file_path_rel = "/home/students/reichelt/ba/bias-mitigation-ba/WordSim353/data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt" + file_path_sim = "/home/students/reichelt/ba/bias-mitigation-ba/WordSim353/data/ws353simrel_agirre/wordsim_similarity_goldstandard.txt" + correct_length = 352 # excludes the duplicate entry money-cash + header = None + elif version == "english_complete": + file_path_rel = "data/ws353simrel_agirre/wordsim_relatedness_goldstandard.txt" + file_path_sim = "data/ws353simrel_agirre/wordsim_similarity_goldstandard_353.txt" + correct_length = 353 # money-cash 9.08 added to similarity + header = None + elif version == "english_multilingual": + file_path_rel = "data/multilingual_leviant_reichhart/wordsim353-english-rel.txt" + file_path_sim = "data/multilingual_leviant_reichhart/wordsim353-english-sim.txt" + correct_length = 350 # excludes some non-translatable entries + header = 0 # meaning file has a header in first line + elif version == "german": + file_path_rel = "data/multilingual_leviant_reichhart/wordsim353-german-rel.txt" + file_path_sim = "data/multilingual_leviant_reichhart/wordsim353-german-sim.txt" + correct_length = 350 + header = 0 + elif version == "gur350": + file_path_rel = "data/german_gurevych_zesch/gur_350.tsv" # only combined available + file_path_sim = "data/german_gurevych_zesch/gur_350.tsv" # only combined available + correct_length = 350 + header = 0 + elif version == "gur283": + file_path_rel = "data/german_gurevych_zesch/gur_350_reduced.tsv" # only combined available + file_path_sim = "data/german_gurevych_zesch/gur_350_reduced.tsv" # only combined available + correct_length = 283 + header = 0 + else: + raise ValueError("invalid language/word lists specified") + + rel_df = pd.read_csv(file_path_rel, + encoding="utf-8", header=header, sep="\t", usecols=[0,1,2], + names=["Word 1", "Word 2", "Human Relatedness"]) + sim_df = pd.read_csv(file_path_sim, + encoding="utf-8", sep="\t", header=header, usecols=[0,1,2], + names=["Word 1", "Word 2", "Human Similarity"]) + + # Split into similarity and relatedness doesn't change scores, so + # the tables can be combined back into one for easier computation later on + merged_df = sim_df.merge(rel_df, on=["Word 1", "Word 2"], how="outer") + merged_df["Combined Human Score"] = merged_df["Human Similarity"].fillna( + merged_df["Human Relatedness"]) + + # Check data + # Combined Score should be filled everywhere + assert merged_df['Combined Human Score'].notna().all() + + # Sim and Rel should have same values where both are filled + assert merged_df[(merged_df['Human Similarity'].notna()) + & (merged_df['Human Relatedness'].notna())]['Human Similarity'].equals( + merged_df[(merged_df['Human Similarity'].notna()) + & (merged_df['Human Relatedness'].notna())]['Human Relatedness']) + + # There should be 353 rows + assert len(merged_df) == correct_length + + return merged_df + + +def calculate_wordsim_score(word_pair_scores: pd.DataFrame, file_path: str) -> dict: + """Loads word vectors, calculates cosine similiarity scores for word pairs + and compares with human scores using Spearman Rank Correlation""" + + # Load word vectors + if "fasttext" in file_path: + #model = FastText.load_fasttext_format(file_path) + #model.init_sims(replace=True) + model = KeyedVectors.load_word2vec_format(file_path, binary=False) + model.init_sims(replace=True) + elif file_path[-4:] == ".bin": + model = KeyedVectors.load_word2vec_format(file_path, binary=True) + model.init_sims(replace=True) + else: + model = KeyedVectors.load_word2vec_format(file_path, binary=False) + model.init_sims(replace=True) + + # Calculate embedding similarites and add to df as new column + def calculate_embedding_similarity(row): + word_1 = row["Word 1"].lower() + word_2 = row["Word 2"].lower() + + if word_1 in model: + embd_1 = model[word_1] + elif repr(word_1.encode("utf-8")) in model: + embd_1 = model[repr(word_1.encode("utf-8"))] # deepset models have weird format + else: + print(f"{word_1} not in vocab. returning similarity 0.") + return 0.0 + + if word_2 in model: + embd_2 = model[word_2] + elif repr(word_2.encode("utf-8")) in model: + embd_2 = model[repr(word_2.encode("utf-8"))] + else: + print(f"{word_2} not in vocab. returning similarity 0.") + return 0.0 + + return 1 - cosine(embd_1, embd_2) # scipy implements cosine distance not similarity + + + word_pair_scores["Embedding Score"] = word_pair_scores.apply( + calculate_embedding_similarity, axis=1) + + # Calculate correlations + combined_rho, combined_p = spearmanr( + word_pair_scores["Combined Human Score"], word_pair_scores["Embedding Score"], + nan_policy="raise" + ) + + sim_rows = word_pair_scores.dropna(subset=['Human Similarity', 'Embedding Score']) + rel_rows = word_pair_scores.dropna(subset=['Human Relatedness', 'Embedding Score']) + + sim_rho, sim_p = spearmanr( + sim_rows["Human Similarity"], sim_rows["Embedding Score"], nan_policy="raise" + ) + rel_rho, rel_p = spearmanr( + rel_rows["Human Relatedness"], rel_rows["Embedding Score"], nan_policy="raise" + ) + + # For easier access later on + results = { + "sim_rho": sim_rho, "sim_p": sim_p, "rel_rho": rel_rho, + "rel_p": rel_p, "combined_rho": combined_rho, "combined_p": combined_p + } + + return results + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Calculate wordsim353 score for given language and vectors") + parser.add_argument("--version", default="english", + help="'english', 'english_complete', 'english_multilingual', 'german', 'gur350'") + parser.add_argument("--vector_location", help="specify a file path to embeddings") + args = parser.parse_args() + + print("Loading data ...") + data = load_word_lists(args.version) + print("Loading successful. Calculating score ...") + scores = calculate_wordsim_score(data, args.vector_location) + output = ( + "-----------------------------\n" + f"WordSim-353 scores (Spearman's rank correlation) for '{args.version}' word lists and embeddings from {args.vector_location}:\n" + f"Similarity: {scores['sim_rho']:.4f} with p-value {scores['sim_p']:.5f}\n" + f"Relatedness: {scores['rel_rho']:.4f} with p-value {scores['rel_p']:.5f}\n" + f"Combined: {scores['combined_rho']:.4f} with p-value {scores['combined_p']:.5f}\n" + "-----------------------------" + ) + print(output) diff --git a/WordSim353/run_evaluate.sh b/WordSim353/run_evaluate.sh new file mode 100644 index 0000000..6417010 --- /dev/null +++ b/WordSim353/run_evaluate.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# +#SBATCH --job-name=wordsim +#SBATCH --output=run_evaluate_output.txt +#SBATCH --mem=10G +#SBATCH --partition=compute +#SBATCH --cpus-per-task=4 +#SBATCH --mail-user=reichelt@cl.uni-heidelberg.de +#SBATCH --mail-type=ALL +#SBATCH --time=1-00:00:00 + +# JOB STEPS +source /home/students/reichelt/ba/bias-mitigation-ba/bias-venv/bin/activate +srun python /home/students/reichelt/ba/bias-mitigation-ba/WordSim353/evaluate.py --version gur283 --vector_location /home/students/reichelt/ba/bias-mitigation-ba/data/embeddings/glove/dd-glove/glove_dd_polish.txt +srun python /home/students/reichelt/ba/bias-mitigation-ba/WordSim353/evaluate.py --version gur283 --vector_location /home/students/reichelt/ba/bias-mitigation-ba/data/embeddings/glove/dd-glove/glove_dd_italian.txt \ No newline at end of file diff --git a/WordSim353/run_evaluate_output.txt b/WordSim353/run_evaluate_output.txt new file mode 100644 index 0000000..4334a54 --- /dev/null +++ b/WordSim353/run_evaluate_output.txt @@ -0,0 +1,24 @@ +Loading data ... +Loading successful. Calculating score ... +stellenanzeige not in vocab. returning similarity 0. +stellenanzeige not in vocab. returning similarity 0. +----------------------------- +WordSim-353 scores (Spearman's rank correlation) for 'gur283' word lists and embeddings from /home/students/reichelt/ba/bias-mitigation-ba/data/embeddings/glove/dd-glove/glove_dd_polish.txt: +Similarity: 0.5806 with p-value 0.00000 +Relatedness: 0.5806 with p-value 0.00000 +Combined: 0.5806 with p-value 0.00000 +----------------------------- +/home/students/reichelt/ba/bias-mitigation-ba/WordSim353/evaluate.py:99: DeprecationWarning: Call to deprecated `init_sims` (Use fill_norms() instead. See https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4). + model.init_sims(replace=True) +Loading data ... +Loading successful. Calculating score ... +stellenanzeige not in vocab. returning similarity 0. +stellenanzeige not in vocab. returning similarity 0. +----------------------------- +WordSim-353 scores (Spearman's rank correlation) for 'gur283' word lists and embeddings from /home/students/reichelt/ba/bias-mitigation-ba/data/embeddings/glove/dd-glove/glove_dd_italian.txt: +Similarity: 0.5802 with p-value 0.00000 +Relatedness: 0.5802 with p-value 0.00000 +Combined: 0.5802 with p-value 0.00000 +----------------------------- +/home/students/reichelt/ba/bias-mitigation-ba/WordSim353/evaluate.py:99: DeprecationWarning: Call to deprecated `init_sims` (Use fill_norms() instead. See https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4). + model.init_sims(replace=True) -- GitLab