Describe the sequential scoring of nyc_sport_event's events (dev set)
The dev-set script nyc_sport_event.py described each event's verification node as parallel, while the code builds a sequential one. This PR corrects the docstring of verify_event() and the comment above add_sequential(). The code and the scores are unchanged: the module's syntax tree is identical before and after once the docstring is removed.
With the sequential node, an event scores 0 when any essential check fails, and otherwise 0.5 + 0.5 * p, where p is the fraction of the four categories (location, date and time, tickets, travel time) that pass. The parallel node that the docstring described would also score 0 when an essential check fails, and p otherwise.
The same change is proposed for the GitHub copy in https://github.com/OSU-NLP-Group/Mind2Web-2/pull/20, so the two copies stay identical.
🤖 Generated with Claude Code