jppgks/twitter-financial-news-sentiment
zeroshot/twitter-financial-news-sentiment prepared for LLM fine-tuning by adding an instruction column and mapping the label from numeric to string ({0:"negative", 1:'positive', 2:'neutral'}). Source from datasets import load_dataset import datasets from huggingface_hub import notebook_login notebook_login() ds = load_dataset('zeroshot/twitter-financial-news-sentiment') num_to_label = { 0: 'negative', 1: 'positive', 2: 'neutral', } instruction = 'What is the sentiment of this… See the full description on the dataset page: https://huggingface.co/datasets/jppgks/twitter-financial-news-sentiment.
477
