|
|
--- |
|
|
language: en |
|
|
tags: |
|
|
- chatbot |
|
|
- conversational |
|
|
- data-assistant |
|
|
- data-analyst |
|
|
- python |
|
|
license: mit |
|
|
--- |
|
|
|
|
|
# 🤖 Databoy Chatbot |
|
|
|
|
|
Databoy is a conversational AI chatbot designed to assist data analysts and data science learners. It answers questions related to: |
|
|
|
|
|
- Python and Pandas |
|
|
- Data Cleaning and EDA |
|
|
- Statistics and Visualization |
|
|
- Interview Questions |
|
|
- Common data workflows |
|
|
|
|
|
## 🛠️ Model Details |
|
|
|
|
|
- **Type**: Language Model (LLM) |
|
|
- **Usage**: Text generation/chat |
|
|
- **Framework**: Transformers (Hugging Face) |
|
|
- **Hosted on**: Hugging Face Inference API |
|
|
|
|
|
## 📦 Example Usage |
|
|
|
|
|
```python |
|
|
from transformers import pipeline |
|
|
|
|
|
chatbot = pipeline("text-generation", model="GHarshasri/Databoy") |
|
|
response = chatbot("Explain standard deviation in simple terms.", max_length=100) |
|
|
print(response[0]["generated_text"]) |