spaul25 commited on
Commit
af867d6
·
verified ·
1 Parent(s): 9dc9ae4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -0
README.md CHANGED
@@ -24,7 +24,14 @@ Dataset Catalog:
24
  - [x] [Dominance Lexicons](https://huggingface.co/datasets/spaul25/Chronoberg/tree/main/Lexicons)
25
  - [x] [Arousal Lexicons](https://huggingface.co/datasets/spaul25/Chronoberg/tree/main/Lexicons)
26
 
 
 
27
 
 
 
 
 
 
28
 
29
  **Pretrained Checkpoints** :
30
  To construct VAD lexicons on your own, we have also made available the pretrained Word2vec models on the entire dataset and the time-interval-specific slices (50 year intervals) of the dataset.
 
24
  - [x] [Dominance Lexicons](https://huggingface.co/datasets/spaul25/Chronoberg/tree/main/Lexicons)
25
  - [x] [Arousal Lexicons](https://huggingface.co/datasets/spaul25/Chronoberg/tree/main/Lexicons)
26
 
27
+ ``` Load Dataset
28
+ from dataset import load_dataset
29
 
30
+ dataset_raw = load_dataset("spaul25/Chronoberg", data_files="dataset/Chronoberg_raw.jsonl") ## Raw
31
+ dataset_preprocessed = load_dataset("spaul25/Chronoberg", data_files="dataset/Chronoberg_preprocessed.jsonl") ## Pre-processed
32
+ dataset_annotated = load_dataset("spaul25/Chronoberg", data_files="dataset/Chronoberg_annotated.jsonl") ## Annotated
33
+
34
+ ```
35
 
36
  **Pretrained Checkpoints** :
37
  To construct VAD lexicons on your own, we have also made available the pretrained Word2vec models on the entire dataset and the time-interval-specific slices (50 year intervals) of the dataset.