import fasttext # Load the FastText model model_path = "fasttext_bn_wiki_100.bin" # Update this to your uploaded model file's path model = fasttext.load_model(model_path) # Find the most similar words similar_words = model.get_nearest_neighbors('বাংলা', k=5) print(similar_words)