senti_ws

참고자료:

게시물 태그 지정

TFDS에 이 데이터세트를 로드하려면 다음 명령어를 사용하세요.

ds = tfds.load('huggingface:senti_ws/pos-tagging')
  • 설명 :
SentimentWortschatz, or SentiWS for short, is a publicly available German-language resource for sentiment analysis, and pos-tagging. The POS tags are ["NN", "VVINF", "ADJX", "ADV"] -> ["noun", "verb", "adjective", "adverb"], and positive and negative polarity bearing words are weighted within the interval of [-1, 1].
  • 라이센스 : 크리에이티브 커먼즈 저작자표시-비영리-동일조건변경허락 3.0 포팅되지 않은 라이센스
  • 버전 : 1.1.0
  • 분할 :
나뉘다
'train' 3471
  • 특징 :
{
    "word": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "pos-tag": {
        "num_classes": 4,
        "names": [
            "NN",
            "VVINF",
            "ADJX",
            "ADV"
        ],
        "names_file": null,
        "id": null,
        "_type": "ClassLabel"
    }
}

감정 점수

TFDS에 이 데이터세트를 로드하려면 다음 명령어를 사용하세요.

ds = tfds.load('huggingface:senti_ws/sentiment-scoring')
  • 설명 :
SentimentWortschatz, or SentiWS for short, is a publicly available German-language resource for sentiment analysis, and pos-tagging. The POS tags are ["NN", "VVINF", "ADJX", "ADV"] -> ["noun", "verb", "adjective", "adverb"], and positive and negative polarity bearing words are weighted within the interval of [-1, 1].
  • 라이센스 : 크리에이티브 커먼즈 저작자표시-비영리-동일조건변경허락 3.0 포팅되지 않은 라이센스
  • 버전 : 1.1.0
  • 분할 :
나뉘다
'train' 3471
  • 특징 :
{
    "word": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "sentiment-score": {
        "dtype": "float32",
        "id": null,
        "_type": "Value"
    }
}