dantuzi commented on PR #12169:
URL: https://github.com/apache/lucene/pull/12169#issuecomment-1449791310

   @rmuir we did some tests at both query and index time.
   We tried to index some documents using the following CustomAnalyzer which 
includes our Word2VecSynonymFilter and we verified the content of the index 
using Luke.
   
   ```
   Analyzer analyzer = CustomAnalyzer.builder()
         .withTokenizer(ClassicTokenizerFactory.NAME)
         .addTokenFilter(Word2VecSynonymFilterFactory.NAME, "model", 
"wiki-ita-w2v-model.zip")
         .addTokenFilter(FlattenGraphFilterFactory.NAME)
         .addTokenFilter(LowerCaseFilterFactory.NAME)
         .build();
   ```
   
   Please find some screenshots in our presentation from slide 32
   
https://www.slideshare.net/SeaseLtd/word2vec-model-to-generate-synonyms-on-the-fly-in-apache-lucenepdf


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to