sethuiyer commited on
Commit
3f6f06e
1 Parent(s): 2d04683

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -0
README.md CHANGED
@@ -51,4 +51,10 @@ pipeline = transformers.pipeline(
51
 
52
  outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
53
  print(outputs[0]["generated_text"])
 
 
 
 
 
 
54
  ```
 
51
 
52
  outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
53
  print(outputs[0]["generated_text"])
54
+ ```
55
+
56
+ ```text
57
+ A large language model is a type of artificial intelligence (AI) system that has been trained on a vast amount of text data to understand and generate human-like text.
58
+ These models are capable of tasks such as text generation, translation, summarization, and more. They have a vast vocabulary and contextual understanding of language, allowing them to generate coherent and relevant responses.
59
+ Examples of large language models include GPT-3, OpenAI's text-based model, and Google's BERT, which is designed for natural language understanding.
60
  ```