Gopala Krishna
commited on
Commit
·
38da4ee
1
Parent(s):
228cd20
Renamed excel
Browse files- .vs/IBCFProductRecommendations/FileContentIndex/4fd1475c-3367-4410-b2d1-2b97be4ecb26.vsidx +0 -0
- .vs/IBCFProductRecommendations/FileContentIndex/6419b548-2144-45d6-a127-85a7c3ec238e.vsidx +0 -0
- .vs/IBCFProductRecommendations/FileContentIndex/{5428136c-47fb-4f8a-8669-cac57b5f065d.vsidx → 6cb5c1ea-2437-4ad5-bba3-7d62d6694185.vsidx} +0 -0
- .vs/IBCFProductRecommendations/v17/.wsuo +0 -0
- .vs/VSWorkspaceState.json +1 -1
- .vs/slnx.sqlite +0 -0
- Online_Retail.xlsx → IBCF_Online_Retail.xlsx +0 -0
- app.py +1 -1
.vs/IBCFProductRecommendations/FileContentIndex/4fd1475c-3367-4410-b2d1-2b97be4ecb26.vsidx
DELETED
Binary file (219 Bytes)
|
|
.vs/IBCFProductRecommendations/FileContentIndex/6419b548-2144-45d6-a127-85a7c3ec238e.vsidx
ADDED
Binary file (224 Bytes). View file
|
|
.vs/IBCFProductRecommendations/FileContentIndex/{5428136c-47fb-4f8a-8669-cac57b5f065d.vsidx → 6cb5c1ea-2437-4ad5-bba3-7d62d6694185.vsidx}
RENAMED
File without changes
|
.vs/IBCFProductRecommendations/v17/.wsuo
CHANGED
Binary files a/.vs/IBCFProductRecommendations/v17/.wsuo and b/.vs/IBCFProductRecommendations/v17/.wsuo differ
|
|
.vs/VSWorkspaceState.json
CHANGED
@@ -2,6 +2,6 @@
|
|
2 |
"ExpandedNodes": [
|
3 |
""
|
4 |
],
|
5 |
-
"SelectedNode": "\\
|
6 |
"PreviewInSolutionExplorer": false
|
7 |
}
|
|
|
2 |
"ExpandedNodes": [
|
3 |
""
|
4 |
],
|
5 |
+
"SelectedNode": "\\app.py",
|
6 |
"PreviewInSolutionExplorer": false
|
7 |
}
|
.vs/slnx.sqlite
CHANGED
Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ
|
|
Online_Retail.xlsx → IBCF_Online_Retail.xlsx
RENAMED
File without changes
|
app.py
CHANGED
@@ -5,7 +5,7 @@ import gradio as gr
|
|
5 |
def find_similar_items(stock_code):
|
6 |
try:
|
7 |
# Read data source Excel file.
|
8 |
-
df1 = pd.read_excel('
|
9 |
except FileNotFoundError:
|
10 |
return "Error: Excel file not found."
|
11 |
|
|
|
5 |
def find_similar_items(stock_code):
|
6 |
try:
|
7 |
# Read data source Excel file.
|
8 |
+
df1 = pd.read_excel('IBCF_Online_Retail.xlsx')
|
9 |
except FileNotFoundError:
|
10 |
return "Error: Excel file not found."
|
11 |
|