cornell_movie_dialog

参考:

使用以下命令在 TFDS 中加载此数据集:

ds = tfds.load('huggingface:cornell_movie_dialog')
  • 说明
This corpus contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts:
- 220,579 conversational exchanges between 10,292 pairs of movie characters
- involves 9,035 characters from 617 movies
- in total 304,713 utterances
- movie metadata included:
    - genres
    - release year
    - IMDB rating
    - number of IMDB votes
    - IMDB rating
- character metadata included:
    - gender (for 3,774 characters)
    - position on movie credits (3,321 characters)
  • 许可:无已知许可
  • 版本:0.1.0
  • 拆分
拆分 样本
'train' 83097
  • 特征
{
    "movieID": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "movieTitle": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "movieYear": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "movieIMDBRating": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "movieNoIMDBVotes": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "movieGenres": {
        "feature": {
            "dtype": "string",
            "id": null,
            "_type": "Value"
        },
        "length": -1,
        "id": null,
        "_type": "Sequence"
    },
    "characterID1": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "characterID2": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "characterName1": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "characterName2": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "utterance": {
        "feature": {
            "text": {
                "dtype": "string",
                "id": null,
                "_type": "Value"
            },
            "LineID": {
                "dtype": "string",
                "id": null,
                "_type": "Value"
            }
        },
        "length": -1,
        "id": null,
        "_type": "Sequence"
    }
}