l3cube-pune commited on
Commit
94b8a97
1 Parent(s): f5d1f68

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -6
README.md CHANGED
@@ -11,8 +11,19 @@ language: mr
11
 
12
  # MahaSBERT-STS
13
 
14
- A MahaSBERT model (l3cube-pune/marathi-sentence-bert-nli) fine-tuned on STS dataset.
15
- This is released as a part of project MahaNLP : https://github.com/l3cube-pune/MarathiNLP
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  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.
18
 
@@ -74,7 +85,3 @@ sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask']
74
  print("Sentence embeddings:")
75
  print(sentence_embeddings)
76
  ```
77
-
78
- ## Citing & Authors
79
-
80
- It will be updated soon, refer to the project page for now.
 
11
 
12
  # MahaSBERT-STS
13
 
14
+ A MahaSBERT model (l3cube-pune/marathi-sentence-bert-nli) fine-tuned on STS dataset. <br>
15
+ This is released as a part of project MahaNLP : https://github.com/l3cube-pune/MarathiNLP <br>
16
+
17
+ More details on the dataset, models, and baseline results can be found in our [paper] (https://arxiv.org/abs/2211.11187)
18
+
19
+ ```
20
+ @article{joshi2022l3cubemahasbert,
21
+ title={L3Cube-MahaSBERT and HindSBERT: Sentence BERT Models and Benchmarking BERT Sentence Representations for Hindi and Marathi},
22
+ author={Joshi, Ananya and Kajale, Aditi and Gadre, Janhavi and Deode, Samruddhi and Joshi, Raviraj},
23
+ journal={arXiv preprint arXiv:2211.11187},
24
+ year={2022}
25
+ }
26
+
27
 
28
  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.
29
 
 
85
  print("Sentence embeddings:")
86
  print(sentence_embeddings)
87
  ```