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].
  • ใบอนุญาต : Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License
  • เวอร์ชั่น : 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].
  • ใบอนุญาต : Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License
  • เวอร์ชั่น : 1.1.0
  • แยก :
แยก ตัวอย่าง
'train' 3471
  • คุณสมบัติ :
{
    "word": {
        "dtype": "string",
        "id": null,
        "_type": "Value"
    },
    "sentiment-score": {
        "dtype": "float32",
        "id": null,
        "_type": "Value"
    }
}