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"
    }
}