mscholl96 / mad-recime

ReciMe is a fancy recipe generator based on AI. It offers an iOS App with remarkable user experience.
2 stars 0 forks source link

Implement a parser for the Recipe1M dataset #12

Closed WagnerMarcel closed 2 years ago

WagnerMarcel commented 2 years ago

GanttStart: 2022-01-14 GanttDue: 2022-02-01

mscholl96 commented 2 years ago

Only use recipes with no more than 20 ingredients and 30 instructions

Output data format:

[
  {
    "title": "NULL",
    "ingredients": [
      {
        "ingredient": "NULL",
        "amount": "NULL",
        "unit":"NULL"
        "instruction": "NULL" (optional, left out in first approach)
      }
    ],
   "instructions": [
    {
      "instruction":"NULL"
    }
   ]
  }
]

Formatted with: https://jsonformatter.org

SchatziHub commented 2 years ago

Open points:

normalization of ingredients

SchatziHub commented 2 years ago

bug of pattern.singularize: flour turns into flmy