Views
No views yet
semanlink_all_mpnet_base_v2semanlink_all_mpnet_base_v2 has been fine-tuned on the knowledge graph Semanlink via the library MKB on the link-prediction task. The model is dedicated to the representation of both technical and generic terminology in machine learning, NLP, news.pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2sentences = ["Machine Learning", "Geoffrey Hinton"]
3
4model = SentenceTransformer('raphaelsty/semanlink_all_mpnet_base_v2')
5embeddings = model.encode(sentences)
6print(embeddings)