Update README.md
Browse files
README.md
CHANGED
|
@@ -12,13 +12,6 @@ GPyT is a GPT2 model trained from scratch (not fine tuned) on Python code from G
|
|
| 12 |
|
| 13 |
Newlines are replaced by `<N>`
|
| 14 |
|
| 15 |
-
Considerations:
|
| 16 |
-
|
| 17 |
-
1. This model is intended for educational and research use only. Do not trust model outputs.
|
| 18 |
-
2. Model is highly likely to regurgitate code almost exactly as it saw it. It's up to you to determine licensing if you intend to actually use the generated code.
|
| 19 |
-
3. All Python code was blindly pulled from github. This means included code is both Python 2 and 3, among other more subtle differences, such as tabs being 2 spaces in some cases and 4 in others...and more non-homologous things.
|
| 20 |
-
4. Along with the above, this means the code generated could wind up doing or suggesting just about anything. Run the generated code at own risk...it could be *anything*
|
| 21 |
-
|
| 22 |
|
| 23 |
Input to the model is code, up to the context length of 1024, with newlines replaced by `<N>`
|
| 24 |
|
|
@@ -42,5 +35,12 @@ This should give you something like:
|
|
| 42 |
|
| 43 |
...which is what the model is expecting as input.
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
|
|
|
|
| 12 |
|
| 13 |
Newlines are replaced by `<N>`
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
Input to the model is code, up to the context length of 1024, with newlines replaced by `<N>`
|
| 17 |
|
|
|
|
| 35 |
|
| 36 |
...which is what the model is expecting as input.
|
| 37 |
|
| 38 |
+
Considerations:
|
| 39 |
+
|
| 40 |
+
1. This model is intended for educational and research use only. Do not trust model outputs.
|
| 41 |
+
2. Model is highly likely to regurgitate code almost exactly as it saw it. It's up to you to determine licensing if you intend to actually use the generated code.
|
| 42 |
+
3. All Python code was blindly pulled from github. This means included code is both Python 2 and 3, among other more subtle differences, such as tabs being 2 spaces in some cases and 4 in others...and more non-homologous things.
|
| 43 |
+
4. Along with the above, this means the code generated could wind up doing or suggesting just about anything. Run the generated code at own risk...it could be *anything*
|
| 44 |
+
|
| 45 |
|
| 46 |
|