Views
No views yet
pip install -U sentence-transformersSentenceTransformer:1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("danjohnvelasco/filipino-sentence-roberta-v1")
4sentence_list = ["sentence 1", "sentence 2", "sentence 3"]
5sentence_embeddings = model.encode(sentence_list)
6print(sentence_embeddings)@misc{https://doi.org/10.48550/arxiv.2204.03251,
doi = {10.48550/ARXIV.2204.03251},
url = {https://arxiv.org/abs/2204.03251},
author = {Velasco, Dan John and Alba, Axel and Pelagio, Trisha Gail and Ramirez, Bryce Anthony and Cruz, Jan Christian Blaise and Cheng, Charibeth},
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {Automatic WordNet Construction using Word Sense Induction through Sentence Embeddings},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution 4.0 International}
}