librarian-bot commited on
Commit
012a8aa
·
verified ·
1 Parent(s): ff5fd8a

Librarian Bot: Add language metadata for dataset

Browse files

This pull request aims to enrich the metadata of your dataset by adding language metadata to `YAML` block of your dataset card `README.md`.

How did we find this information?

- The librarian-bot downloaded a sample of rows from your dataset using the [dataset-server](https://huggingface.co/docs/datasets-server/) library
- The librarian-bot used a language detection model to predict the likely language of your dataset. This was done on columns likely to contain text data.
- Predictions for rows are aggregated by language and a filter is applied to remove languages which are very infrequently predicted
- A confidence threshold is applied to remove languages which are not confidently predicted

The following languages were detected with the following mean probabilities:

- English (en): 99.00%


If this PR is merged, the language metadata will be added to your dataset card. This will allow users to filter datasets by language on the [Hub](https://huggingface.co/datasets).
If the language metadata is incorrect, please feel free to close this PR.

To merge this PR, you can use the merge button below the PR:
![Screenshot 2024-02-06 at 15.27.46.png](https://cdn-uploads.huggingface.co/production/uploads/63d3e0e8ff1384ce6c5dd17d/1PRE3CoDpg_wfThC6U1w0.png)

This PR comes courtesy of [Librarian Bot](https://huggingface.co/librarian-bots). If you have any feedback, queries, or need assistance, please don't hesitate to reach out to

@davanstrien
.

Files changed (1) hide show
  1. README.md +16 -14
README.md CHANGED
@@ -1,4 +1,6 @@
1
  ---
 
 
2
  license: apache-2.0
3
  dataset_info:
4
  - config_name: all
@@ -18,53 +20,53 @@ configs:
18
  - config_name: all
19
  data_files:
20
  - split: test
21
- path: "all/geneturing.csv"
22
  - config_name: gene_alias
23
  data_files:
24
  - split: test
25
- path: "gene_alias/test_*"
26
  - config_name: gene_disease_association
27
  data_files:
28
  - split: test
29
- path: "gene_disease_association/test_*"
30
  - config_name: gene_location
31
  data_files:
32
  - split: test
33
- path: "gene_location/test_*"
34
  - config_name: gene_name_conversion
35
  data_files:
36
  - split: test
37
- path: "gene_name_conversion/test_*"
38
  - config_name: gene_name_extraction
39
  data_files:
40
  - split: test
41
- path: "gene_name_extraction/test_*"
42
  - config_name: gene_ontology
43
  data_files:
44
  - split: test
45
- path: "gene_ontology/test_*"
46
  - config_name: gene_SNP_association
47
  data_files:
48
  - split: test
49
- path: "gene_SNP_association/test_*"
50
  - config_name: human_genome_DNA_aligment
51
  data_files:
52
  - split: test
53
- path: "human_genome_DNA_aligment/test_*"
54
  - config_name: multi-species_DNA_aligment
55
  data_files:
56
  - split: test
57
- path: "multi-species_DNA_aligment/test_*"
58
  - config_name: protein-coding_genes
59
  data_files:
60
  - split: test
61
- path: "protein-coding_genes/test_*"
62
  - config_name: SNP_location
63
  data_files:
64
  - split: test
65
- path: "SNP_location/test_*"
66
  - config_name: TF_regulation
67
  data_files:
68
  - split: test
69
- path: "TF_regulation/test_*"
70
- ---
 
1
  ---
2
+ language:
3
+ - en
4
  license: apache-2.0
5
  dataset_info:
6
  - config_name: all
 
20
  - config_name: all
21
  data_files:
22
  - split: test
23
+ path: all/geneturing.csv
24
  - config_name: gene_alias
25
  data_files:
26
  - split: test
27
+ path: gene_alias/test_*
28
  - config_name: gene_disease_association
29
  data_files:
30
  - split: test
31
+ path: gene_disease_association/test_*
32
  - config_name: gene_location
33
  data_files:
34
  - split: test
35
+ path: gene_location/test_*
36
  - config_name: gene_name_conversion
37
  data_files:
38
  - split: test
39
+ path: gene_name_conversion/test_*
40
  - config_name: gene_name_extraction
41
  data_files:
42
  - split: test
43
+ path: gene_name_extraction/test_*
44
  - config_name: gene_ontology
45
  data_files:
46
  - split: test
47
+ path: gene_ontology/test_*
48
  - config_name: gene_SNP_association
49
  data_files:
50
  - split: test
51
+ path: gene_SNP_association/test_*
52
  - config_name: human_genome_DNA_aligment
53
  data_files:
54
  - split: test
55
+ path: human_genome_DNA_aligment/test_*
56
  - config_name: multi-species_DNA_aligment
57
  data_files:
58
  - split: test
59
+ path: multi-species_DNA_aligment/test_*
60
  - config_name: protein-coding_genes
61
  data_files:
62
  - split: test
63
+ path: protein-coding_genes/test_*
64
  - config_name: SNP_location
65
  data_files:
66
  - split: test
67
+ path: SNP_location/test_*
68
  - config_name: TF_regulation
69
  data_files:
70
  - split: test
71
+ path: TF_regulation/test_*
72
+ ---