Cyrile commited on
Commit
d770fea
1 Parent(s): 14990b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md CHANGED
@@ -8,6 +8,12 @@ language:
8
  pipeline_tag: zero-shot-classification
9
  ---
10
 
 
 
 
 
 
 
11
  ```python
12
  from transformers import pipeline
13
 
 
8
  pipeline_tag: zero-shot-classification
9
  ---
10
 
11
+ ## Presentation
12
+ We introduce the Bloomz-560m-NLI model, fine-tuned on the [Bloomz-560m-chat-dpo](https://huggingface.co/cmarkea/bloomz-560m-dpo-chat) foundation model. This model is trained on a Natural Language Inference (NLI) task in a language-agnostic manner. The NLI task involves determining the semantic relationship between a hypothesis and a set of premises, often expressed as pairs of sentences. It should be noted that hypotheses and premises are randomly chosen between English and French, with each language combination representing a probability of 25%.
13
+
14
+ ## Zero-shot Classification
15
+ The primary appeal of training such models lies in their zero-shot classification performance. This means the model is capable of classifying any text with any label without specific training. What sets the Bloomz-560m-NLI LLMs apart in this realm is their ability to model and extract information from significantly more complex and lengthy test structures compared to models like BERT, RoBERTa, or CamemBERT.
16
+
17
  ```python
18
  from transformers import pipeline
19