code-explainer / README.md
SandeepU's picture
Upload 2 files
d7c3b25 verified
|
Raw
History Blame Contribute Delete
405 Bytes
# Code Explainer 🧠
This project uses the `bigcode/starcoder` model to explain Python code in plain English.
## How to Run
```bash
pip install -r requirements.txt
streamlit run app/main.py
```
## Example
Input:
```python
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
```
Output:
> This function calculates the nth Fibonacci number using recursion...