1、首先,我们加载一篇文章——Alice In Wonderland——《Alice梦游记》:alice = ExampleData[{"Text", "AliceInWonderland"}];
2、用逗号“,”把每一个单句分隔开来:sentences = TextSentences[alice];
3、提取每一个单句的特征:fe = FeatureExtraction[sentences]
4、生成体现所有单句特征的最亲近函数:nf = Nearest[fe[sentences] -> Automatic]
5、使用 NearestFunction,构建一个新的函数,来显示文中最接近的单句:nearestalice = sentences[[First@nf[fe[#]]]] &
6、用这个函数来查询几个例子:nearestalice["Alice and the Rabbit"]