SriRamanaYash commited on
Commit
fe2740b
·
verified ·
1 Parent(s): e691e23

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +2 -24
README.md CHANGED
@@ -16,27 +16,6 @@ tags:
16
  - embeddings
17
  - spiritual-texts
18
  pretty_name: AtmicMLM
19
- configs:
20
- - config_name: default
21
- data_files:
22
- - split: validation
23
- path: data/validation-*
24
- dataset_info:
25
- features:
26
- - name: collection
27
- dtype: string
28
- - name: lang
29
- dtype: string
30
- - name: source
31
- dtype: string
32
- - name: text
33
- dtype: string
34
- splits:
35
- - name: validation
36
- num_bytes: 769
37
- num_examples: 3
38
- download_size: 3581
39
- dataset_size: 769
40
  ---
41
 
42
  # AtmicMLM
@@ -53,14 +32,13 @@ Trained model: [SriRamanaAtmic/AtmicEmbeddingv1](https://huggingface.co/SriRaman
53
 
54
  ## Schema
55
 
56
- All splits share a unified schema (missing fields are `null`):
57
- `collection`, `lang`, `source`, `text`
58
 
59
  ## Usage
60
 
61
  ```python
62
  from datasets import load_dataset
63
-
64
  ds = load_dataset("SriRamanaAtmic/AtmicMLM")
65
  print(ds["train"][0])
66
  ```
 
16
  - embeddings
17
  - spiritual-texts
18
  pretty_name: AtmicMLM
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ---
20
 
21
  # AtmicMLM
 
32
 
33
  ## Schema
34
 
35
+ All columns are `string` type. Columns not applicable to a split are filled with `"Unknown"`.
36
+ Columns: `collection`, `lang`, `source`, `text`
37
 
38
  ## Usage
39
 
40
  ```python
41
  from datasets import load_dataset
 
42
  ds = load_dataset("SriRamanaAtmic/AtmicMLM")
43
  print(ds["train"][0])
44
  ```