GHarshasri commited on
Commit
2019270
·
verified ·
1 Parent(s): 5936da8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 🤖 Databoy Chatbot
2
+
3
+ Databoy is a conversational AI chatbot designed to assist data analysts and data science learners. It answers questions related to:
4
+
5
+ - Python and Pandas
6
+ - Data Cleaning and EDA
7
+ - Statistics and Visualization
8
+ - Interview Questions
9
+ - Common data workflows
10
+
11
+ ## 🛠️ Model Details
12
+
13
+ - **Type**: Language Model (LLM)
14
+ - **Usage**: Text generation/chat
15
+ - **Framework**: Transformers (Hugging Face)
16
+ - **Hosted on**: Hugging Face Inference API
17
+
18
+ ## 📦 Example Usage
19
+
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ chatbot = pipeline("text-generation", model="GHarshasri/Databoy")
24
+ response = chatbot("Explain standard deviation in simple terms.", max_length=100)
25
+ print(response[0]["generated_text"])