Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ title = "Python to Text Converter [WIP]"
|
|
6 |
description = "This is a space to convert Python code into english text explaining what it does using [codeparrot-small-code-to-text](https://huggingface.co/codeparrot/codeparrot-small-code-to-text),\
|
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 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.linear_model import LogisticRegression\n\nX_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, test_size=0.2)\n# Fit the model on training set\nmodel = LogisticRegression()\nmodel.fit(X_train, Y_train)"
|
11 |
|
12 |
example = [
|
13 |
[EXAMPLE_1, 60, 0.6, 42],
|
|
|
6 |
description = "This is a space to convert Python code into english text explaining what it does using [codeparrot-small-code-to-text](https://huggingface.co/codeparrot/codeparrot-small-code-to-text),\
|
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.linear_model import LogisticRegression\n\n#split the dataset\nX_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, test_size=0.2)\n# Fit the model on training set\nmodel = LogisticRegression()\nmodel.fit(X_train, Y_train)"
|
11 |
|
12 |
example = [
|
13 |
[EXAMPLE_1, 60, 0.6, 42],
|