सन्दर्भ:
पोस्ट-टैगिंग
इस डेटासेट को 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"
}
}