NameGenderClassification
NameGenderClassification copied to clipboard
Gender Classification of Names
Results
1
NameGenderClassification issues
Sort by
recently updated
recently updated
newest added
The code assumes you have downloaded and unzipped the files. Here a way to handle it ``` def load_data(): my_data = np.genfromtxt('yob2014.txt', delimiter=',', dtype=[('name','S50'), ('gender','S1'),('count','i4')], converters={0: lambda s:s.lower()}) try: load_data()...