loubnabnl HF staff commited on
Commit
301c370
·
1 Parent(s): 042623c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,8 +3,8 @@ from transformers import AutoTokenizer, AutoModelForCausalLM, set_seed, pipeline
3
 
4
 
5
  title = "🎅 Santa Explains Code"
6
- description = "This space converts Python code into English text that explains its function using [SantaCoder-Code-To-Text](https://huggingface.co/bigcode/santacoder-code-to-text),
7
- a code generation model that has been fine-tuned on the [github-jupyter-code-to-text](https://huggingface.co/datasets/codeparrot/github-jupyter-code-to-text) dataset.
8
  This dataset includes Python code accompanied by docstrings that explain it. The data was sourced from Jupyter notebooks."
9
 
10
  EXAMPLE_1 = "def sort_function(arr):\n n = len(arr)\n \n # Traverse through all array elements\n for i in range(n):\n \n # Last i elements are already in place\n for j in range(0, n-i-1):\n \n # traverse the array from 0 to n-i-1\n # Swap if the element found is greater\n # than the next element\n if arr[j] > arr[j+1]:\n arr[j], arr[j+1] = arr[j+1], arr[j]"
 
3
 
4
 
5
  title = "🎅 Santa Explains Code"
6
+ description = "This space converts Python code into English text that explains its function using [SantaCoder-Code-To-Text](https://huggingface.co/bigcode/santacoder-code-to-text),\
7
+ a code generation model that has been fine-tuned on the [github-jupyter-code-to-text](https://huggingface.co/datasets/codeparrot/github-jupyter-code-to-text) dataset.\
8
  This dataset includes Python code accompanied by docstrings that explain it. The data was sourced from Jupyter notebooks."
9
 
10
  EXAMPLE_1 = "def sort_function(arr):\n n = len(arr)\n \n # Traverse through all array elements\n for i in range(n):\n \n # Last i elements are already in place\n for j in range(0, n-i-1):\n \n # traverse the array from 0 to n-i-1\n # Swap if the element found is greater\n # than the next element\n if arr[j] > arr[j+1]:\n arr[j], arr[j+1] = arr[j+1], arr[j]"