├── .github ├── release.yml └── workflows │ ├── ci.yaml │ ├── push_to_hub.yaml │ └── release.yaml ├── .gitignore ├── .tagpr ├── CHANGELOG.md ├── JGLUE.py ├── Makefile ├── README.md ├── pyproject.toml ├── tests ├── JGLUE_test.py └── __init__.py └── uv.lock /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/push_to_hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.github/workflows/push_to_hub.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.gitignore -------------------------------------------------------------------------------- /.tagpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/.tagpr -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /JGLUE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/JGLUE.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/JGLUE_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/tests/JGLUE_test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunk031/huggingface-datasets_JGLUE/HEAD/uv.lock --------------------------------------------------------------------------------