Spaces:
Sleeping
Sleeping
File size: 326 Bytes
988c65e 2699b34 988c65e 2699b34 |
1 2 3 4 5 6 7 8 |
import streamlit as st
from gensim.models import KeyedVectors
from huggingface_hub import hf_hub_download
model = KeyedVectors.load_word2vec_format(hf_hub_download(repo_id="Word2vec/nlpl_43", filename="model.bin"), binary=True, unicode_errors="ignore")
word = st.text_input('Enter a word')
st.write(word, 'squared is', word) |