Instructions to use pkshatech/GLuCoSE-base-ja with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use pkshatech/GLuCoSE-base-ja with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("pkshatech/GLuCoSE-base-ja") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Transformers
How to use pkshatech/GLuCoSE-base-ja with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("pkshatech/GLuCoSE-base-ja") model = AutoModel.from_pretrained("pkshatech/GLuCoSE-base-ja") - Notebooks
- Google Colab
- Kaggle
fix name
Browse files
README.md
CHANGED
|
@@ -97,7 +97,7 @@ Evaluation by top-k retrieval accuracy[^4] (the fraction of questions that have
|
|
| 97 |
|
| 98 |
|
| 99 |
# Authors
|
| 100 |
-
[Akihiko Fukuchi](https://huggingface.co/akiFQC), [
|
| 101 |
|
| 102 |
## License
|
| 103 |
This model is published under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
| 97 |
|
| 98 |
|
| 99 |
# Authors
|
| 100 |
+
[Akihiko Fukuchi](https://huggingface.co/akiFQC), [Yuichiro Hoshino](https://huggingface.co/Yuichiroh), [Yotarow Watanabe](https://huggingface.co/yotarow)
|
| 101 |
|
| 102 |
## License
|
| 103 |
This model is published under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|