sv-ident / README.md
e-tony's picture
Fix `license` metadata (#3)
60bd62c
metadata
annotations_creators:
  - expert-generated
language_creators:
  - expert-generated
language:
  - en
  - de
license:
  - mit
multilinguality:
  - multilingual
size_categories:
  - 1K<n<10K
source_datasets:
  - original
task_categories:
  - text-classification
task_ids:
  - multi-label-classification
  - semantic-similarity-classification
pretty_name: SV-Ident
paperswithcode_id: sv-ident

Dataset Card for SV-Ident

Table of Contents

Dataset Description

Dataset Summary

SV-Ident comprises 4,248 sentences from social science publications in English and German. The data is the official data for the Shared Task: “Survey Variable Identification in Social Science Publications” (SV-Ident) 2022. Visit the homepage to find out more details about the shared task.

Supported Tasks and Leaderboards

The dataset supports:

  • Variable Detection: identifying whether a sentence contains a variable mention or not.

  • Variable Disambiguation: identifying which variable from a given vocabulary is mentioned in a sentence. NOTE: for this task, you will need to also download the variable metadata from here.

Languages

The text in the dataset is in English and German, as written by researchers. The domain of the texts is scientific publications in the social sciences.

Dataset Structure

Data Instances

{
  "sentence": "Our point, however, is that so long as downward (favorable comparisons overwhelm the potential for unfavorable comparisons, system justification should be a likely outcome amongst the disadvantaged.",
  "is_variable": 1,
  "variable": ["exploredata-ZA5400_VarV66", "exploredata-ZA5400_VarV53"],
  "research_data": ["ZA5400"],
  "doc_id": "73106",
  "uuid": "b9fbb80f-3492-4b42-b9d5-0254cc33ac10",
  "lang": "en",
}

Data Fields

The following data fields are provided for documents:

`sentence`:       Textual instance, which may contain a variable mention.<br />
`is_variable`:    Label, whether the textual instance contains a variable mention (1) or not (0). This column can be used for Task 1 (Variable Detection).<br />
`variable`:       Variables (separated by a comma ";") that are mentioned in the textual instance. This column can be used for Task 2 (Variable Disambiguation). Variables with the "unk" tag could not be mapped to a unique variable.<br />
`research_data`:  Research data IDs (separated by a ";") that are relevant for each instance (and in general for each "doc_id").<br />
`doc_id`:         ID of the source document. Each document is written in one language (either English or German).<br />
`uuid`:           Unique ID of the instance in uuid4 format.<br />
`lang`:           Language of the sentence.

The language for each document can be found in the document-language mapping file here, which maps doc_id to a language code (en, de). The variables metadata (i.e., the vocabulary) can be downloaded from this link. Note, that each research_data contains hundreds of variables (these can be understood as the corpus of documents to choose the most relevant from). If the variable has an "unk" tag, it means that the sentence contains a variable that has not been disambiguated. Such sentences could be used for Task 1 and filtered out for Task 2. The metadata file has the following format:

{
  "research_data_id_1": {
    "variable_id_1": VARIABLE_METADATA,
    ...
    "variable_id_n": VARIABLE_METADATA,
  },
  ...
  "research_data_id_n": {...},
}

Each variable may contain all (or some) of the following values:

study_title:        The title of the research data study.
variable_label:     The label of the variable.
variable_name:      The name of the variable.
question_text:      The question of the variable in the original language.
question_text_en:   The question of the variable in English.
sub_question:       The sub-question of the variable.
item_categories:    The item categories of the variable.
answer_categories:  The answers of the variable.
topic:              The topics of the variable in the original language.
topic_en:           The topics of the variable in English.

Data Splits

Split Number of sentences
Train 3,823
Validation 425

Dataset Creation

Curation Rationale

The dataset was curated by the VADIS project (https://vadis-project.github.io/). The documents were annotated by two expert annotators.

Source Data

Initial Data Collection and Normalization

The original data are available at GESIS (https://www.gesis.org/home) in an unprocessed format.

Who are the source language producers?

[Needs More Information]

Annotations

Annotation process

[Needs More Information]

Who are the annotators?

The documents were annotated by two expert annotators.

Personal and Sensitive Information

The dataset does not include personal or sensitive information.

Considerations for Using the Data

Social Impact of Dataset

[Needs More Information]

Discussion of Biases

[Needs More Information]

Other Known Limitations

[Needs More Information]

Additional Information

Dataset Curators

VADIS project (https://vadis-project.github.io/)

Licensing Information

All documents originate from the Social Science Open Access Repository (SSOAR) and are licensed accordingly. The original document URLs are provided in document_urls.json. For more information on licensing, please refer to the terms and conditions on the SSAOR Grant of Licenses page.

Citation Information

@misc{sv-ident,
    author={vadis-project},
    title={SV-Ident},
    year={2022},
    url={https://github.com/vadis-project/sv-ident},
    }

Contributions

[Needs More Information]