hemangjoshi37a commited on
Commit
6e5157a
1 Parent(s): 83d3250

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -28
README.md CHANGED
@@ -1,25 +1,21 @@
1
- ---
2
- language:
3
- - en
4
 
5
- ---
6
- # AutoTrain Dataset for project: stocks-ner-2000-sample-test
7
 
8
  ## Dataset Description
9
 
10
- This dataset has been automatically processed by AutoTrain for project stocks-ner-2000-sample-test.
11
-
12
- ### Languages
13
-
14
- The BCP-47 code for the dataset's language is en.
15
 
16
  ## Dataset Structure
17
 
18
- ### Data Instances
 
 
 
19
 
20
- A sample from this dataset looks as follows:
21
 
22
- ```json
23
  [
24
  {
25
  "tokens": [
@@ -67,23 +63,11 @@ A sample from this dataset looks as follows:
67
  }
68
  ]
69
  ```
 
 
70
 
71
- ### Dataset Fields
72
-
73
- The dataset has the following fields (also called "features"):
74
 
75
- ```json
76
- {
77
- "tokens": "Sequence(feature=Value(dtype='string', id=None), length=-1, id=None)",
78
- "tags": "Sequence(feature=ClassLabel(num_classes=12, names=['NANA', 'btst', 'delivery', 'enter', 'entry_momentum', 'exit', 'exit2', 'exit3', 'intraday', 'sl', 'symbol', 'touched'], id=None), length=-1, id=None)"
79
- }
80
- ```
81
 
82
- ### Dataset Splits
83
 
84
- This dataset is split into a train and validation split. The split sizes are as follow:
85
 
86
- | Split name | Num samples |
87
- | ------------ | ------------------- |
88
- | train | 1261 |
89
- | valid | 480 |
 
1
+ # Stocks NER 2000 Sample Test Dataset for Named Entity Recognition
 
 
2
 
3
+ This dataset has been automatically processed by AutoTrain for the project stocks-ner-2000-sample-test, and is perfect for training models for Named Entity Recognition (NER) in the stock market domain.
 
4
 
5
  ## Dataset Description
6
 
7
+ The dataset includes 2000 samples of stock market related text, with each sample consisting of a sequence of tokens and their corresponding named entity tags. The language of the dataset is English (BCP-47 code: 'en').
 
 
 
 
8
 
9
  ## Dataset Structure
10
 
11
+ The dataset is structured as a list of data instances, where each instance includes the following fields:
12
+
13
+ - **tokens**: a sequence of strings representing the text in the sample.
14
+ - **tags**: a sequence of integers representing the named entity tags for each token in the sample. There are a total of 12 named entities in the dataset, including 'NANA', 'btst', 'delivery', 'enter', 'entry_momentum', 'exit', 'exit2', 'exit3', 'intraday', 'sl', 'symbol', and 'touched'.
15
 
16
+ Each sample in the dataset looks like this:
17
 
18
+ ```
19
  [
20
  {
21
  "tokens": [
 
63
  }
64
  ]
65
  ```
66
+ ## Dataset Splits
67
+ The dataset is split into a train and validation split, with 1261 samples in the train split and 480 samples in the validation split.
68
 
69
+ This dataset is designed to train models for Named Entity Recognition in the stock market domain and can be used for natural language processing (NLP) research and development. Download this dataset now and take the first step towards building your own state-of-the-art NER model for stock market text.
 
 
70
 
 
 
 
 
 
 
71
 
 
72
 
 
73