I want to compare word2vec and fasttext model based on this comparison tutorial. https://github.com/jayantj/gensim/blob/fast_text_notebook/docs/notebooks/Word2Vec_FastText_Comparison.ipynb
According to this, the semantic accuracy of fastText model increase when we set the max length of char n-grams to zero, such that fastText starts to behave almost like to word2vec. It ignores the ngrams.
However, I can not find any formation on how to set this parameter while loading a fastText model. Any ideas on how to do this?