Metadata-Version: 2.4
Name: ie_datasets
Version: 0.0.2
Summary: Load fully-typed information extraction data in a single line.
Project-URL: Homepage, https://github.com/adanomad/ie-datasets
Project-URL: Issues, https://github.com/adanomad/ie-datasets/issues
Author-email: Justin Xu <xu.justin.j@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: annotated-types>=0.7.0
Requires-Dist: platformdirs>=4.3.6
Requires-Dist: pydantic-core>=2.27.1
Requires-Dist: pydantic>=2.10.3
Description-Content-Type: text/markdown

# Information Extraction Datasets

This package takes care of all of the tedium when loading various information extraction datasets, providing the data in fully validated and typed Pydantic objects.

## Datasets

### WikiEvents [Event Argument Extraction]

> [**NAACL 2021**](https://aclanthology.org/2021.naacl-main.69/) |
> [**GitHub**](https://github.com/raspberryice/gen-arg)

```py
from ie_datasets import WikiEvents

WikiEvents.load_ontology()
WikiEvents.load_wikievents_units("train")
WikiEvents.load_wikievents_units("dev")
WikiEvents.load_wikievents_units("test")
```
