Hello Remy,
Greetings and Welcome to Microsoft Q&A! Thanks for posting the question.
I understand that you are looking for Labeling date-related data for a custom extraction model,
If your dataset has consistent date formats, you can use a single bounding box to label the entire date. In this case, assign the sub-type based on the format, such as Date > dmy
for day-month-year formats or Date > mdy
for month-day-year formats. This approach is ideal when the dataset contains uniform and predictable date structures.
However, if your dataset is highly inconsistent or you need to extract specific date components, it is better to use separate bounding boxes for each part of the date. Label each component individually with specific sub-types:
- Day: Assign
Date > Day
(e.g., "1st", "15", "3rd"). - Month: Assign
Date > Month
(e.g., "Dec", "December", "12"). - Year: Assign
Date > Year
(e.g., "2023", "23").
Choosing between these two approaches depends on the variability of your dataset and the granularity of the information you need to extract.
I Hope this helps. Do let me know if you have any further queries.
If the response helped, please do click Accept Answer
and Yes
for was this answer helpful.
Thank you!