Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
json
Sub-tasks:
language-modeling
Languages:
code
Size:
100K - 1M
License:
File size: 2,305 Bytes
8dc00d5 f7957a4 50eba76 f7957a4 50eba76 f7957a4 d5328f2 f184516 d5328f2 0d525ec d5328f2 ceedaec d5328f2 3459a90 d5328f2 3459a90 d5328f2 2e8c1da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
---
annotations_creators: []
language:
- code
license:
- mit
pretty_name: github-code
size_categories:
- unknown
source_datasets: []
task_categories:
- text-generation
task_ids:
- language-modeling
---
# Dataset Card for AI-HDLCoder
## Dataset Description
The GitHub Code dataset consists of 256K code files from GitHub in VHDL programming language with extensions totaling in 1.94 GB of data. The dataset was created from the public GitHub dataset on Google BiqQuery at Anhalt University of Applied Sciences.
## Considerations for Using the Data
The dataset is created for research purposes and consists of source code from a wide range of repositories. As such they can potentially include harmful or biased code as well as sensitive information like passwords or usernames.
### Languages
```python
{
"VHDL": [".vhdl",".vhd" ]
}
```
## Dataset Structure
### Data Instances
```python
[
[
{
"name": "repo_name",
"mode": "NULLABLE",
"type": "STRING",
"description": null,
"fields": []
},
{
"name": "path",
"mode": "NULLABLE",
"type": "STRING",
"description": null,
"fields": []
},
{
"name": "copies",
"mode": "NULLABLE",
"type": "INTEGER",
"description": null,
"fields": []
},
{
"name": "size",
"mode": "NULLABLE",
"type": "INTEGER",
"description": null,
"fields": []
},
{
"name": "content",
"mode": "NULLABLE",
"type": "STRING",
"description": null,
"fields": []
},
{
"name": "license",
"mode": "NULLABLE",
"type": "STRING",
"description": null,
"fields": []
}
]
]
```
### Data Fields
|Field|Type|Description|
|---|---|---|
|code|string|content of source file|
|repo_name|string|name of the GitHub repository|
|path|string|path of file in GitHub repository|
|language|string|programming language as inferred by extension|
|license|string|license of GitHub repository|
|size|int|size of source file in bytes|
### Data Splits
The dataset contains a train split only
### Licensing Information
```python
[
'agpl-3.0',
'artistic-2.0',
'mpl-2.0',
'cc0-1.0',
'mit',
'gpl-2.0',
'gpl-3.0',
'lgpl-3.0',
'apache-2.0',
'bsd-3-clause'
]
```
### v1.0
- Initial release of dataset
- The query was executed on 21.07.2023, 00:02:38 UTC+2
|