Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
import T5ForConditionalGeneration # Replace with the library used for your code generation model
|
| 3 |
|
| 4 |
# Load your code generation model
|
| 5 |
model_path = "Cegil/code_generation" # e.g., a model checkpoint or saved weights
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from transformers import T5ForConditionalGeneration # Replace with the library used for your code generation model
|
| 3 |
|
| 4 |
# Load your code generation model
|
| 5 |
model_path = "Cegil/code_generation" # e.g., a model checkpoint or saved weights
|