Carrot2- bisectingKmeans 알고리즘을 통해 문서 클러스터링을 시도했습니다. resouceLookup의 속성을 설정하고 영어/중국어의 언어를 테스트했습니다. 둘 다 "resouce lookup locations ...에 resources named stopwords.ar"라는 오류가 발생했습니다. 내가 쓴 대구 :Carrot2-bisectingKmeans resouceLookup의 속성을 설정하면 stopwords.ar라는 리소스가 없음 오류가 발생합니다.
//set the resoucelookup
File resDir = new File("resouces");
ResouceLookup res = new ResouceLookup(new DirLocator(resDir));
LexicalDataLoaderDescriptor.attributeBuilder(preprocessAttr).resourceLookup(res);
//set the language
MultilingualClusteringDescriptor.attributeBuilder(processingAttr)
.defaultLanguage(LanguageCode.CHINESE_SIMPLIFIED);
문제는 무엇입니까? 감사.