Commit
·
39e6a9c
1
Parent(s):
0a9afa8
Update app.py
Browse files
app.py
CHANGED
|
@@ -68,7 +68,7 @@ def preprocess(text):
|
|
| 68 |
# Convert to lowercase
|
| 69 |
cleaned_text = cleaned_text.lower()
|
| 70 |
|
| 71 |
-
cleaned_text = get_google_description(cleaned_text)
|
| 72 |
|
| 73 |
return cleaned_text
|
| 74 |
|
|
@@ -104,7 +104,7 @@ gui = gr.Interface(title=title,
|
|
| 104 |
fn=zero_shot,
|
| 105 |
inputs=[input1, input2],
|
| 106 |
outputs=[output],
|
| 107 |
-
|
| 108 |
)
|
| 109 |
|
| 110 |
#display the interface
|
|
|
|
| 68 |
# Convert to lowercase
|
| 69 |
cleaned_text = cleaned_text.lower()
|
| 70 |
|
| 71 |
+
# cleaned_text = get_google_description(cleaned_text)
|
| 72 |
|
| 73 |
return cleaned_text
|
| 74 |
|
|
|
|
| 104 |
fn=zero_shot,
|
| 105 |
inputs=[input1, input2],
|
| 106 |
outputs=[output],
|
| 107 |
+
examples=transactions_and_tags
|
| 108 |
)
|
| 109 |
|
| 110 |
#display the interface
|