Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Dataset of single lines of Python code taken from the [CodeSearchNet](https://github.com/github/CodeSearchNet) dataset.
|
| 2 |
+
|
| 3 |
+
Context
|
| 4 |
+
|
| 5 |
+
This dataset allows checking the validity of Variational-Autoencoder latent spaces by testing what percentage of random/intermediate latent points can be greedily decoded into valid Python code.
|
| 6 |
+
|
| 7 |
+
Content
|
| 8 |
+
|
| 9 |
+
Each row has a parsable line of source code.
|
| 10 |
+
{'text': '{python source code line}'}
|
| 11 |
+
|
| 12 |
+
Most lines are < 100 characters while all are under 125 characters.
|
| 13 |
+
|
| 14 |
+
Contains 2.6 million lines.
|
| 15 |
+
|
| 16 |
+
All code is in parsable into a python3 ast.
|