heran commited on
Commit
e94ac4f
1 Parent(s): be0914a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -4
README.md CHANGED
@@ -4,11 +4,17 @@ language:
4
  - am
5
  ---
6
  ### Model Description
7
- This is a fine-tuned version of Sentence-BERT (SBERT) for the Amharic language. The model was trained on a dataset of Natural Language Inference (NLI) examples in the Amharic language.
8
 
9
  ### Usage
10
- This can be used as input to other machine learning models for downstream tasks such as Sentiment Analysis, Named Entity Recognition, etc.
11
- // enter code here
 
 
 
 
 
 
12
 
13
  ### Limitations and Known Issues
14
- The model was trained on a limited dataset. It may include biases and may not perform well for sentences that include less used words.
 
4
  - am
5
  ---
6
  ### Model Description
7
+ This is a fine-tuned version of Sentence-BERT (SBERT) specifically designed for the Amharic language. It was trained on a Natural Language Inference (NLI) dataset written in the Amharic language. The model outputs sentence embeddings, which are numerical representations of sentences in the form of 768-dimensional vectors.
8
 
9
  ### Usage
10
+ This model can be used as input for downstream tasks such as sentiment analysis, recommendation systems, question answering, text summarization, named entity recognition, etc.
11
+
12
+ ```
13
+ from sentence_transformers import SentenceTransformer
14
+
15
+ SentenceModel = SentenceTransformer('heran/SBERT-am-finetune')
16
+ textEncoding = SentenceModel.encode("ዛሬ አየሩ በጣም ጥሩ ነው።")
17
+ ```
18
 
19
  ### Limitations and Known Issues
20
+ It is important to note that the model was trained on a limited dataset, which means it may have inherent biases and may not perform optimally for sentences that contain infrequently used words. It is recommended to carefully evaluate the model's output and consider supplementing it with additional training data or methods to mitigate these limitations.