rahgadda commited on
Commit
b35b449
Β·
1 Parent(s): 1ea3ea5

Initial Draft

Browse files
Files changed (1) hide show
  1. README.md +19 -4
README.md CHANGED
@@ -1,8 +1,8 @@
1
  ---
2
  title: Llm Basics
3
- emoji: πŸ“Š
4
- colorFrom: purple
5
- colorTo: red
6
  sdk: streamlit
7
  sdk_version: 1.25.0
8
  app_file: app.py
@@ -10,4 +10,19 @@ pinned: false
10
  license: apache-2.0
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  title: Llm Basics
3
+ emoji: πŸ†
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: streamlit
7
  sdk_version: 1.25.0
8
  app_file: app.py
 
10
  license: apache-2.0
11
  ---
12
 
13
+ # LLM Basics
14
+
15
+ ## Overview
16
+ - LLM are an extension in the space of NLP.
17
+ - They perform lots of tasks, this example provides below
18
+ - Sentiment Analysis
19
+ - Zero-shot Classification
20
+ - Text Generation
21
+ - Mask Filling
22
+ - Named Entity Recognition
23
+ - Question & Answering
24
+ - Summarization
25
+ - Translation
26
+
27
+ ## Reference
28
+ - [Huggingface Pipelines](https://huggingface.co/learn/nlp-course/chapter1/3?fw=pt)