ก่อนอื่นถ้าคุณต้องการแยกคุณสมบัติการนับและใช้การทำให้เป็นมาตรฐาน TF-IDF และการทำให้เป็นมาตรฐานยูคลิดแบบแถวคุณสามารถทำได้ในการดำเนินการเดียวด้วยTfidfVectorizer
:
>>> from sklearn.feature_extraction.text import TfidfVectorizer
>>> from sklearn.datasets import fetch_20newsgroups
>>> twenty = fetch_20newsgroups()
>>> tfidf = TfidfVectorizer().fit_transform(twenty.data)
>>> tfidf
<11314x130088 sparse matrix of type '<type 'numpy.float64'>'
with 1787553 stored elements in Compressed Sparse Row format>
ตอนนี้เพื่อค้นหาระยะทางโคไซน์ของเอกสารหนึ่งชุด (เช่นรายการแรกในชุดข้อมูล) และเอกสารอื่น ๆ ทั้งหมดคุณเพียงแค่ต้องคำนวณผลิตภัณฑ์ดอทของเวกเตอร์ตัวแรกกับอีกทั้งหมดเนื่องจากเวกเตอร์ tfidf เป็นแถวที่ทำให้เป็นมาตรฐานแล้ว
ตามที่คริสคลาร์กอธิบายในความคิดเห็นและที่นี่ความคล้ายคลึงกันของโคไซน์ไม่ได้คำนึงถึงขนาดของเวกเตอร์ Row-normalized มีขนาดเท่ากับ 1 ดังนั้น Linear Kernel จึงเพียงพอที่จะคำนวณค่าความคล้ายคลึงกัน
API เมทริกซ์แบบกระจัดกระจาย scipy นั้นค่อนข้างแปลก (ไม่ยืดหยุ่นเท่าอาร์เรย์ numpy ที่มีมิติหนาแน่น) ในการรับเวกเตอร์แรกคุณต้องแบ่งแถวเมทริกซ์อย่างชาญฉลาดเพื่อให้ได้เมทริกซ์ย่อยด้วยแถวเดียว:
>>> tfidf[0:1]
<1x130088 sparse matrix of type '<type 'numpy.float64'>'
with 89 stored elements in Compressed Sparse Row format>
scikit-learn มีเมตริกแบบคู่ (aka kernels ในการเรียนรู้ของเครื่อง) ซึ่งใช้ได้กับทั้งการแสดงคอลเลกชันเวกเตอร์ที่หนาแน่นและเบาบาง ในกรณีนี้เราต้องการผลิตภัณฑ์ดอทที่เรียกอีกอย่างว่าเคอร์เนลเชิงเส้น:
>>> from sklearn.metrics.pairwise import linear_kernel
>>> cosine_similarities = linear_kernel(tfidf[0:1], tfidf).flatten()
>>> cosine_similarities
array([ 1. , 0.04405952, 0.11016969, ..., 0.04433602,
0.04457106, 0.03293218])
ดังนั้นในการค้นหาเอกสารที่เกี่ยวข้อง 5 อันดับแรกเราสามารถใช้argsort
และการแบ่งส่วนอาร์เรย์เชิงลบ (เอกสารที่เกี่ยวข้องส่วนใหญ่มีค่าความคล้ายคลึงกันของโคไซน์สูงสุดดังนั้นในตอนท้ายของอาร์เรย์ดัชนีที่เรียงลำดับ):
>>> related_docs_indices = cosine_similarities.argsort()[:-5:-1]
>>> related_docs_indices
array([ 0, 958, 10576, 3277])
>>> cosine_similarities[related_docs_indices]
array([ 1. , 0.54967926, 0.32902194, 0.2825788 ])
ผลลัพธ์แรกคือการตรวจสอบความมีสติ: เราพบว่าเอกสารแบบสอบถามเป็นเอกสารที่คล้ายกันมากที่สุดโดยมีคะแนนความคล้ายคลึงกันของโคไซน์เท่ากับ 1 ซึ่งมีข้อความต่อไปนี้:
>>> print twenty.data[0]
From: lerxst@wam.umd.edu (where's my thing)
Subject: WHAT car is this!?
Nntp-Posting-Host: rac3.wam.umd.edu
Organization: University of Maryland, College Park
Lines: 15
I was wondering if anyone out there could enlighten me on this car I saw
the other day. It was a 2-door sports car, looked to be from the late 60s/
early 70s. It was called a Bricklin. The doors were really small. In addition,
the front bumper was separate from the rest of the body. This is
all I know. If anyone can tellme a model name, engine specs, years
of production, where this car is made, history, or whatever info you
have on this funky looking car, please e-mail.
Thanks,
- IL
---- brought to you by your neighborhood Lerxst ----
เอกสารที่คล้ายกันมากที่สุดอันดับสองคือคำตอบที่อ้างถึงข้อความต้นฉบับด้วยเหตุนี้จึงมีคำทั่วไปหลายคำ:
>>> print twenty.data[958]
From: rseymour@reed.edu (Robert Seymour)
Subject: Re: WHAT car is this!?
Article-I.D.: reed.1993Apr21.032905.29286
Reply-To: rseymour@reed.edu
Organization: Reed College, Portland, OR
Lines: 26
In article <1993Apr20.174246.14375@wam.umd.edu> lerxst@wam.umd.edu (where's my
thing) writes:
>
> I was wondering if anyone out there could enlighten me on this car I saw
> the other day. It was a 2-door sports car, looked to be from the late 60s/
> early 70s. It was called a Bricklin. The doors were really small. In
addition,
> the front bumper was separate from the rest of the body. This is
> all I know. If anyone can tellme a model name, engine specs, years
> of production, where this car is made, history, or whatever info you
> have on this funky looking car, please e-mail.
Bricklins were manufactured in the 70s with engines from Ford. They are rather
odd looking with the encased front bumper. There aren't a lot of them around,
but Hemmings (Motor News) ususally has ten or so listed. Basically, they are a
performance Ford with new styling slapped on top.
> ---- brought to you by your neighborhood Lerxst ----
Rush fan?
--
Robert Seymour rseymour@reed.edu
Physics and Philosophy, Reed College (NeXTmail accepted)
Artificial Life Project Reed College
Reed Solar Energy Project (SolTrain) Portland, OR