Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ description = "This is a space to convert Python code into english text explaini
|
|
7 |
a code generation model for Python finetuned on [github-jupyter-code-to-text](https://huggingface.co/datasets/codeparrot/github-jupyter-code-to-text) a dataset of Python code followed by a docstring explaining it, the data was originally extracted from Jupyter notebooks."
|
8 |
|
9 |
EXAMPLE_1 = "def bubblesort(elements):\n n = len(arr)\n# loop through elements\n swapped = False\n for n in range(len(elements)-1, 0, -1):\n for i in range(n):\n if elements[i] > elements[i + 1]:\n swapped = True\n elements[i], elements[i + 1] = elements[i + 1], elements[i]\n if not swapped:\n return"
|
10 |
-
EXAMPLE_2 = "from sklearn
|
11 |
|
12 |
example = [
|
13 |
[EXAMPLE_1, 60, 0.6, 42],
|
|
|
7 |
a code generation model for Python finetuned on [github-jupyter-code-to-text](https://huggingface.co/datasets/codeparrot/github-jupyter-code-to-text) a dataset of Python code followed by a docstring explaining it, the data was originally extracted from Jupyter notebooks."
|
8 |
|
9 |
EXAMPLE_1 = "def bubblesort(elements):\n n = len(arr)\n# loop through elements\n swapped = False\n for n in range(len(elements)-1, 0, -1):\n for i in range(n):\n if elements[i] > elements[i + 1]:\n swapped = True\n elements[i], elements[i + 1] = elements[i + 1], elements[i]\n if not swapped:\n return"
|
10 |
+
EXAMPLE_2 = "from sklearn import model_selection\nX_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, test_size=0.2)"
|
11 |
|
12 |
example = [
|
13 |
[EXAMPLE_1, 60, 0.6, 42],
|