Your AI-powered data companion 🤖
Specify your dataset of choice, and ProTaska-GPT will understand the dataset with tasks, tutorials, and actionable insights for it. Accelerate your data science journey with ease and efficiency! (Meant for people starting their journey into Data Science.)
This is an open-source project and we would be really grateful to any contributions.
We have a multitude of tutorials to help get you started on using our AI-powered data companion.
pip install ProTaska-GPT --upgrade
Importing base descriptors and ideation bot:
from protaska.describer import describe_dataset
from protaska.ideate import main as chatbot
Providing meta-data about the dataset to be used:
openai_key = '**open-ai-secret-key**'
importer_type = "HuggingFaceDatasetImporter"
dataset_key = 'mteb/tweet_sentiment_extraction'
destination_path = './downloaded_data/'
Getting automated data descriptions:
description, dataloader_obj = describe_dataset(openai_key, importer_type, destination_path, dataset_key)
description
Running an interactive ChatBot for ideation and base-code building:
chatbot(openai_key, description, dataloader_obj.superficial_meta_data, agent_verbose=False)