Is this a wrong label in the dataset?

#1
by ytxmobile - opened

I found this sample in question in the dialogues.json file:

      {
        "speaker": "user",
        "utterance": "I need the reminder at 7pm for the yoga class on December 12th.",
        "utt_idx": 2,
        "dialogue_acts": {
          "binary": [],
          "categorical": [],
          "non-categorical": [
            {
              "intent": "inform",
              "domain": "schedule",
              "slot": "date",
              "value": "yoga class",
              "start": 35,
              "end": 45
            },
            {
              "intent": "inform",
              "domain": "schedule",
              "slot": "event",
              "value": "yoga class",
              "start": 35,
              "end": 45
            }
          ]
        },
        "state": {
          "schedule": {
            "date": "Yoga class",
            "event": "Yoga Class",
            "agenda": "reminder"
          }
        }
      }

It tags "Yoga class" as both a date and an event. The date here should be December 12th.

image.png

Sign up or log in to comment