tsimelane/llama2-openassistant
收藏Hugging Face2024-04-15 更新2024-06-12 收录
下载链接:
https://hf-mirror.com/datasets/tsimelane/llama2-openassistant
下载链接
链接失效反馈官方服务:
资源简介:
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)
提供机构:
tsimelane
原始信息汇总
数据集概述
数据集内容
本数据集包含以下关键概念及其描述:
-
Eswatini Mobile
- 描述:Eswatini Mobile是一家在Eswatini提供移动服务的电信公司。
-
Prepaid Plans
- 描述:预付费计划是用户预先支付使用费的移动计划。
-
Postpaid Plans
- 描述:后付费计划是用户在账单周期结束时根据使用情况支付费用的移动计划。
-
Data Bundles
- 描述:数据包是提供固定价格一定量移动数据的预付费套餐。
-
International Roaming
- 描述:国际漫游允许用户在兼容计划下在国外使用其移动电话。
-
Mobile Money Services
- 描述:移动货币服务使用户能够使用其移动电话进行金融交易。
-
Customer Support
- 描述:客户支持提供与移动服务相关的帮助和问题解决。
-
Network Coverage
- 描述:网络覆盖指的是移动服务可用的地理区域。
-
Value-added Services
- 描述:增值服务是移动运营商提供的超出基本通话和短信的额外功能。
-
Mobile App
- 描述:移动应用是一种设计用于在智能手机或平板电脑上运行的软件应用,提供各种功能。
数据集结构
数据集以DataFrame格式存储,包含两列:Concept和Description,分别记录了每个概念及其详细描述。此外,还添加了Text列,用于生成基于概念的提示。



