Skip to content

mmd52/Whats_Cooking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

What's Cooking?

Whats cooking?

An interesting data set from kaggle where we have each row as a unique dish belonging to one cuisine and and each dish with its set of ingredients.

For example -
{
"id": 10259,
"cuisine": "greek",
"ingredients": [
"romaine lettuce",
"black olives",
"grape tomatoes",
"garlic",
"pepper",
"purple onion",
"seasoning",
"garbanzo beans",
"feta cheese crumbles"
]
}

There are 20 ingredients here, so based on the ingredients can we predict the cuisine?

Note: the project uses only Python 3.X and above for analysis