Create README.md
Browse files
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"])
|