Sentence Similarity
sentence-transformers
PyTorch
English
bert
feature-extraction
mteb
custom_code
Eval Results
6 papers
dylanAtHum commited on
Commit
952a391
1 Parent(s): 63f8c1b

Corrected Quick Start Instructions and Author Links

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -1805,7 +1805,7 @@ model-index:
1805
 
1806
  # lodestone-base-4096-v1
1807
 
1808
- [Hum-Works/lodestone-base-4096-v1](https://huggingface.co/Hum-Works/lodestone-base-4096-v1). [Griffin McCauley](https://www.linkedin.com/in/griffin-mccauley-187b6423a), [Will Fortin](https://huggingface.co/willathum), [Dylan DiGioia](https://huggingface.co/dylanAtHum) 2023
1809
 
1810
  This new [sentence-transformers](https://www.SBERT.net) model from [Hum](https://www.hum.works/) maps long sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
1811
 
@@ -1829,7 +1829,7 @@ Then you can use the model like this:
1829
  ```python
1830
  from sentence_transformers import SentenceTransformer
1831
 
1832
- model = SentenceTransformer('lodestone-base-4096-v1', trust_remote_code=True, revision='v1.0.0')
1833
  sentences = ["This is an example sentence", "Each sentence is converted"]
1834
  embeddings = model.encode(sentences)
1835
  print(embeddings)
 
1805
 
1806
  # lodestone-base-4096-v1
1807
 
1808
+ [Hum-Works/lodestone-base-4096-v1](https://huggingface.co/Hum-Works/lodestone-base-4096-v1). [Griffin McCauley](https://huggingface.co/gmccaul1), [Will Fortin](https://huggingface.co/willathum), [Dylan DiGioia](https://huggingface.co/dylanAtHum) 2023
1809
 
1810
  This new [sentence-transformers](https://www.SBERT.net) model from [Hum](https://www.hum.works/) maps long sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
1811
 
 
1829
  ```python
1830
  from sentence_transformers import SentenceTransformer
1831
 
1832
+ model = SentenceTransformer('Hum-Works/lodestone-base-4096-v1', trust_remote_code=True, revision='v1.0.0')
1833
  sentences = ["This is an example sentence", "Each sentence is converted"]
1834
  embeddings = model.encode(sentences)
1835
  print(embeddings)