STNM-NLPhoenix commited on
Commit
975149e
·
verified ·
1 Parent(s): de975ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - tr
5
+ ---
6
+ # Turkish ABSA Dataset
7
+
8
+ This repository contains a dataset created for training and evaluating an Aspect-Based Sentiment Analysis (ABSA) model in the Turkish language. The dataset includes sentences with various entities and sentiments.
9
+
10
+ ## About the Dataset
11
+
12
+ The dataset consists of sentences taken from customer feedback and includes tags related to the entities and sentiments mentioned in these sentences. Each review indicates which entity it is related to and the sentiment towards that entity.
13
+
14
+ ### Columns
15
+
16
+ - `text`: Sentence taken from customer feedback.
17
+ - `entity`: The service or product mentioned in the sentence.
18
+ - `sentiment`: The sentiment expressed towards the entity (positive, negative, neutral).
19
+
20
+ ## Usage
21
+
22
+ You can use this dataset to train and evaluate ABSA models in the Turkish language. Follow the steps below to work with this dataset on the Hugging Face platform.
23
+
24
+ ### Loading
25
+
26
+ To load the dataset from the Hugging Face platform:
27
+
28
+ ```python
29
+ from datasets import load_dataset
30
+
31
+ dataset = load_dataset("STNM-NLPhoenix/turkish-absa")