The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

import pandas as pd

Creating a dictionary with concepts and descriptions

data = { 'Concept': ['Eswatini Mobile', 'Prepaid Plans', 'Postpaid Plans', 'Data Bundles', 'International Roaming', 'Mobile Money Services', 'Customer Support', 'Network Coverage', 'Value-added Services', 'Mobile App'], 'Description': ['Eswatini Mobile is a telecommunications company providing mobile services in Eswatini.', 'Prepaid plans are mobile plans where users pay in advance for usage.', 'Postpaid plans are mobile plans where users pay at the end of the billing cycle based on usage.', 'Data bundles are prepaid packages offering a certain amount of mobile data for a fixed price.', 'International roaming allows users to use their mobile phones abroad with a compatible plan.', 'Mobile money services enable users to perform financial transactions using their mobile phones.', 'Customer support provides assistance and resolves issues related to mobile services.', 'Network coverage refers to the geographical area where mobile services are available.', 'Value-added services are additional features offered by mobile operators beyond basic calling and texting.', 'Mobile app is a software application designed to run on smartphones or tablets providing various functionalities.'] }

Creating DataFrame

df = pd.DataFrame(data)

Adding 'Text' column

df['Text'] = "###Human:\ngenerate a midjourney prompt for {Concept}\n\n###Assistant:\n{Description}".format_map(df)

print(df)

Downloads last month
2