opengamedata / opengamedata-core

Python framework for extracting features from OpenGameData event datasets.
https://opengamedata.fielddaylab.wisc.edu/
MIT License
1 stars 3 forks source link

Journalism: SnippetsCollected #110

Closed LswaN58 closed 10 months ago

LswaN58 commented 12 months ago

This should be a per-level feature. It should simply return a list of all the snippet_id's from the snippet_received events in the given level.

LswaN58 commented 12 months ago

For reference, the event_data of the snippet_received events has the following structure:

"event_data" : {
    "node_id" : "str",
    "snippet_id": "str",
    "snippet_type": "enum(IMAGE, QUOTE)",
    "snippet_quality": "enum(BAD, GOOD, GREAT)",
    "snippet_attributes": [
        enum(COLOR, FACTS, USEFUL),
        enum(COLOR, FACTS, USEFUL),
        ...
    ]
}