File size: 1,627 Bytes
796ee1c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# aspect-based-sentiment-analysis-uzbek.yaml
name: uzabsa
description: UZABSA dataset for sentiment analysis in Uzbek
homepage: https://drive.google.com/uc?export=download&id=12J5C6knWWPebLsjdZt0zCU4GKzDO5kGa
license: "unknown" # Please specify an appropriate license if known
version: "1.0.0"
citation: "unknown" # If there's a paper or source, cite it here
post_processed:
features:
- name: sentence_id
type: string
description: The unique ID of the sentence.
- name: text
type: string
description: The actual sentence or text.
- name: aspect_terms
type: sequence
description: List of aspect terms present in the sentence.
item:
type: mapping
properties:
- name: term
type: string
description: The aspect term.
- name: polarity
type: string
description: Polarity of the aspect term.
- name: from
type: int32
description: Start index of the aspect term in the sentence.
- name: to
type: int32
description: End index of the aspect term in the sentence.
- name: aspect_categories
type: sequence
description: List of aspect categories present in the sentence.
item:
type: mapping
properties:
- name: category
type: string
description: The aspect category.
- name: polarity
type: string
description: Polarity of the aspect category.
splits:
- name: train
path: aspect-based-sentiment-analysis-uzbek.jsonl
|