jrg-123 commited on
Commit
7a4bdf2
1 Parent(s): 541b5eb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -16,4 +16,51 @@ configs:
16
  data_files:
17
  - split: test
18
  path: data/test-*
 
 
 
 
 
 
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: test
18
  path: data/test-*
19
+ license: mit
20
+ task_categories:
21
+ - text-generation
22
+ language:
23
+ - en
24
+ tags:
25
+ - finance
26
+ - financial sentiment
27
+ size_categories:
28
+ - n<1K
29
  ---
30
+ Here's a README for your HuggingFace dataset designed for identifying the financial sentiment of event transcript segments:
31
+
32
+ ---
33
+
34
+ # Financial Sentiment Analysis Dataset
35
+
36
+ ## Description
37
+
38
+ This dataset focuses on the sentiment analysis of earnings call transcript segments. It provides pre-segmented extracts from earnings calls, transcribed by Aiera, paired with sentiment labels. Each segment in the `transcript` column is annotated with a sentiment label (`sentiment`), which can be "positive", "negative", or "neutral". This dataset is intended for training and evaluating models on their ability to discern the underlying sentiment in financial communications.
39
+
40
+ ## Dataset Structure
41
+
42
+ ### Columns
43
+
44
+ - `transcript`: A segment of the earnings call transcript.
45
+ - `sentiment`: The sentiment label for the transcript segment, with possible values being "positive", "negative", or "neutral".
46
+
47
+ ### Data Format
48
+
49
+ The dataset is structured in a tabular format, with each row representing a unique segment of an earnings call transcript alongside its corresponding sentiment label.
50
+
51
+ ## Use Cases
52
+
53
+ This dataset is particularly suited for applications such as:
54
+ - Training machine learning models to perform sentiment analysis specifically in financial contexts.
55
+ - Developing algorithms to assist financial analysts and investors by providing quick sentiment assessments of earnings calls.
56
+ - Enhancing natural language processing systems used in finance for better understanding of market mood and company performance.
57
+
58
+ ## Accessing the Dataset
59
+
60
+ To access this dataset, you can load it using the HuggingFace Datasets library with the following Python code:
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ dataset = load_dataset("Aiera/aiera-transcript-sentiment")
66
+ ```