l3cube-pune commited on
Commit
81252ee
1 Parent(s): 2c2b64a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -17,6 +17,17 @@ Released as a part of project MahaNLP: https://github.com/l3cube-pune/MarathiNLP
17
 
18
  A better sentence similarity model (fine-tuned version of this model) is shared here : https://huggingface.co/l3cube-pune/hindi-sentence-similarity-sbert <br>
19
 
 
 
 
 
 
 
 
 
 
 
 
20
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
21
 
22
  <!--- Describe your model here -->
@@ -74,7 +85,3 @@ sentence_embeddings = cls_pooling(model_output, encoded_input['attention_mask'])
74
  print("Sentence embeddings:")
75
  print(sentence_embeddings)
76
  ```
77
-
78
- ## Citing & Authors
79
-
80
- This will be updated soon, refer to the project page for now.
 
17
 
18
  A better sentence similarity model (fine-tuned version of this model) is shared here : https://huggingface.co/l3cube-pune/hindi-sentence-similarity-sbert <br>
19
 
20
+ More details on the dataset, models, and baseline results can be found in our [paper] (https://arxiv.org/abs/2211.11187)
21
+
22
+ ```
23
+ @article{joshi2022l3cubemahasbert,
24
+ title={L3Cube-MahaSBERT and HindSBERT: Sentence BERT Models and Benchmarking BERT Sentence Representations for Hindi and Marathi},
25
+ author={Joshi, Ananya and Kajale, Aditi and Gadre, Janhavi and Deode, Samruddhi and Joshi, Raviraj},
26
+ journal={arXiv preprint arXiv:2211.11187},
27
+ year={2022}
28
+ }
29
+
30
+
31
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
32
 
33
  <!--- Describe your model here -->
 
85
  print("Sentence embeddings:")
86
  print(sentence_embeddings)
87
  ```