test-dataset / test_dataset.py
Jiwonny29's picture
Update test_dataset.py
9fae2fc verified
raw
history blame
9.86 kB
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO: Address all TODOs and remove all explanatory comments
"""TODO: Add a description here."""
import csv
import json
import os
import pandas
import numpy
import datasets
# TODO: Add BibTeX citation
# Find for instance the citation on arxiv or on the dataset repo/website
_CITATION = """\
@InProceedings{huggingface:dataset,
title = {A great new dataset},
author={huggingface, Inc.
},
year={2020}
}
"""
# TODO: Add description of the dataset here
# You can copy an official description
_DESCRIPTION = """\
This new dataset is designed to solve this great NLP task and is crafted with a lot of care.
"""
# TODO: Add a link to an official homepage for the dataset here
_HOMEPAGE = ""
# TODO: Add the licence for the dataset here if you can find it
_LICENSE = ""
# TODO: Add link to the official dataset URLs here
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
_URLS = {
"first_domain": "https://huggingface.co/great-new-dataset-first_domain.zip",
"second_domain": "https://huggingface.co/great-new-dataset-second_domain.zip",
}
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
class NewDataset(datasets.GeneratorBasedBuilder):
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"Year": datasets.Value("int32"),
"LocationAbbr": datasets.Value("string"),
"LocationDesc": datasets.Value("string"),
"Geolocation": datasets.Features({"latitude": datasets.Value("float32"), "longitude": datasets.Value("float32")}),
"Disease_Type": datasets.Value("int32"),
"Data_Value_Type": datasets.Value("int32"),
"Data_Value": datasets.Value("float32"),
"Break_Out_Category": datasets.Value("string"),
"Break_Out_Details": datasets.Value("string"),
"Break_Out_Type": datasets.Value("int32"),
"Life_Expectancy": datasets.Value("float32")
# These are the features of your dataset like images, labels ...
}
),
supervised_keys=None,
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
dl_paths = dl_manager.download_and_extract({
'train_csv': 'https://drive.google.com/file/d/1eChYmZ3RMq1v-ek1u6DD2m_dGIrz3sbi/view?usp=sharing'
})
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"csvpath": dl_paths['train_csv'],
},
),
]
def _generate_examples(self, csvpath):
with open(csvpath, encoding="utf-8") as f:
reader = csv.DictReader(f)
for key, row in enumerate(reader):
yield key, {
"Year": int(row["Year"]),
"Location_Abbr": row["LocationAbbr"],
"Location_Desc": row["LocationDesc"],
"Geolocation": {
"latitude": float(row["latitude"]),
"longitude": float(row["longitude"])
},
"Disease_Type": int(row["Disease_Type"]),
"Data_Value_Type": int(row["Data_Value_Type"]),
"Data_Value": float(row["Data_Value"]),
"Break_Out_Category": row["Break_Out_Category"],
"Break_Out_Details": row["Break_Out_Details"],
"Break_Out_Type": int(row["Break_Out_Type"]),
"Life_Expectancy": float(row["Life_Expectancy"]) if row["Life_Expectancy"] else None
}
@staticmethod
def preprocess_data(filepath):
data = pd.read_csv("https://drive.google.com/file/d/1ktRNl7jg0Z83rkymD9gcsGLdVqVaFtd-/view?usp=drive_link")
data = data[['YearStart', 'LocationAbbr', 'LocationDesc', 'Geolocation', 'Topic', 'Question', 'Data_Value_Type', 'Data_Value', 'Data_Value_Alt',
'Low_Confidence_Limit', 'High_Confidence_Limit', 'Break_Out_Category', 'Break_Out']]
def convert_to_tuple(geo_str):
if isinstance(geo_str, str):
geo_str = geo_str.replace('POINT (', '').replace(')', '')
lon, lat = map(float, geo_str.split())
return (lon, lat)
else:
return geo_str
data['Geolocation'] = data['Geolocation'].apply(convert_to_tuple)
disease_columns = [
'Major cardiovascular disease mortality rate among US adults (18+); NVSS',
'Diseases of the heart (heart disease) mortality rate among US adults (18+); NVSS',
'Acute myocardial infarction (heart attack) mortality rate among US adults (18+); NVSS',
'Coronary heart disease mortality rate among US adults (18+); NVSS',
'Heart failure mortality rate among US adults (18+); NVSS',
'Cerebrovascular disease (stroke) mortality rate among US adults (18+); NVSS',
'Ischemic stroke mortality rate among US adults (18+); NVSS',
'Hemorrhagic stroke mortality rate among US adults (18+); NVSS'
]
disease_column_mapping = {column_name: index for index, column_name in enumerate(disease_columns)}
data['Question'] = data['Question'].apply(lambda x: disease_column_mapping.get(x, -1))
sex_columns = ['Male', 'Female']
sex_column_mapping = {column_name: index + 1 for index, column_name in enumerate(sex_columns)}
age_columns = ['18-24', '25-44', '45-64', '65+']
age_column_mapping = {column_name: index + 1 for index, column_name in enumerate(age_columns)}
race_columns = ['Non-Hispanic White', 'Non-Hispanic Black', 'Hispanic', 'Other']
race_column_mapping = {column_name: index + 1 for index, column_name in enumerate(race_columns)}
def map_break_out_category(value):
if value in sex_column_mapping:
return sex_column_mapping[value]
elif value in age_column_mapping:
return age_column_mapping[value]
elif value in race_column_mapping:
return race_column_mapping[value]
else:
return value
data['Break_Out_Type'] = data['Break_Out'].apply(map_break_out_category)
data.drop(columns=['Topic', 'Low_Confidence_Limit', 'High_Confidence_Limit', 'Data_Value_Alt'], axis=1, inplace=True)
data['Data_Value_Type'] = data['Data_Value_Type'].apply(lambda x: 1 if x == 'Age-Standardized' else 0)
data.rename(columns={'Question':'Disease_Type', 'YearStart':'Year', 'Break_Out':'Break_Out_Details'}, inplace=True)
data['Break_Out_Type'] = data['Break_Out_Type'].replace('Overall', 0)
lt2000 = pd.read_csv("https://drive.google.com/file/d/1ktRNl7jg0Z83rkymD9gcsGLdVqVaFtd-/view?usp=drive_link")
lt2000 = lt2000[(lt2000['race_name'] == 'Total') & (lt2000['age_name'] == '<1 year')]
lt2000 = lt2000[['location_name', 'val']]
lt2000.rename(columns={'val':'Life_Expectancy'}, inplace=True)
lt2005 = pd.read_csv("https://drive.google.com/file/d/1xZqeOgj32-BkOhDTZVc4k_tp1ddnOEh7/view?usp=drive_link")
lt2005 = lt2005[(lt2005['race_name'] == 'Total') & (lt2005['age_name'] == '<1 year')]
lt2005 = lt2005[['location_name', 'val']]
lt2005.rename(columns={'val':'Life_Expectancy'}, inplace=True)
lt2010 = pd.read_csv("https://drive.google.com/file/d/1ItqHBuuUa38PVytfahaAV8NWwbhHMMg8/view?usp=drive_link")
lt2010 = lt2010[(lt2010['race_name'] == 'Total') & (lt2010['age_name'] == '<1 year')]
lt2010 = lt2010[['location_name', 'val']]
lt2010.rename(columns={'val':'Life_Expectancy'}, inplace=True)
lt2015 = pd.read_csv("https://drive.google.com/file/d/1rOgQY1RQiry2ionTKM_UWgT8cYD2E0vX/view?usp=drive_link")
lt2015 = lt2015[(lt2015['race_name'] == 'Total') & (lt2015['age_name'] == '<1 year')]
lt2015 = lt2015[['location_name', 'val']]
lt2015.rename(columns={'val':'Life_Expectancy'}, inplace=True)
lt_data = pd.concat([lt2000, lt2005, lt2010, lt2015])
lt_data.drop_duplicates(subset=['location_name'], inplace=True)
data2 = pd.merge(data, lt_data, how='inner', left_on='LocationDesc', right_on='location_name')
data2.drop(columns=['location_name'], axis=1, inplace=True)
data2 = data2[(data2['Break_Out_Details'] != '75+') & (data2['Break_Out_Details'] != '35+')]
data2.rename(columns={'Question':'Disease_Type'}, inplace=True)
data2['Life_Expectancy'] = np.where(data2['Break_Out_Type'] == 0, data2['Life_Expectancy'], np.nan)
processed_filepath = '/content/drive/MyDrive/my_processed_data.csv'
return processed_filepath