Gopala Krishna commited on
Commit
692c469
·
1 Parent(s): e1f6818

changed theme

Browse files
.vs/UBCFProductRecommendations/FileContentIndex/3d2d6251-3187-4dd7-b788-001dd23bb9a5.vsidx DELETED
Binary file (4.95 kB)
 
.vs/UBCFProductRecommendations/FileContentIndex/3d585038-a282-41ab-8256-c20ffe14e2e5.vsidx DELETED
Binary file (12.4 kB)
 
.vs/UBCFProductRecommendations/FileContentIndex/6e7c45bd-f156-4a79-a657-f8308b331298.vsidx DELETED
Binary file (537 Bytes)
 
.vs/UBCFProductRecommendations/FileContentIndex/73cb6a8f-d249-466b-bc7b-76f8098d5660.vsidx ADDED
Binary file (3.32 kB). View file
 
.vs/UBCFProductRecommendations/FileContentIndex/c3aa39ba-89f8-4970-a24f-fff79ecea051.vsidx DELETED
Binary file (224 Bytes)
 
.vs/UBCFProductRecommendations/FileContentIndex/dbeb7950-4914-4682-af65-6466aad885c6.vsidx ADDED
Binary file (347 Bytes). View file
 
.vs/UBCFProductRecommendations/FileContentIndex/e1b67197-e14f-4704-9406-66b446ce40e5.vsidx ADDED
Binary file (9.44 kB). View file
 
.vs/UBCFProductRecommendations/v17/.wsuo CHANGED
Binary files a/.vs/UBCFProductRecommendations/v17/.wsuo and b/.vs/UBCFProductRecommendations/v17/.wsuo differ
 
.vs/slnx.sqlite CHANGED
Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ
 
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 💩
4
  colorFrom: green
5
  colorTo: red
6
  sdk: gradio
7
- sdk_version: 3.20.1
8
  app_file: app.py
9
  pinned: false
10
  ---
 
4
  colorFrom: green
5
  colorTo: red
6
  sdk: gradio
7
+ sdk_version: 3.22.1
8
  app_file: app.py
9
  pinned: false
10
  ---
app.py CHANGED
@@ -61,10 +61,11 @@ def recommend_items(customer_id_1, customer_id_2):
61
  iface = gr.Interface(
62
  fn=recommend_items,
63
  inputs=[
64
- gr.inputs.Number(label="Customer ID 1",default=12702),
65
- gr.inputs.Number(label="Customer ID 2",default=14608),
66
  ],
67
  outputs=gr.outputs.Dataframe(label="Recommended Items for Customer 2",type="pandas"),
 
68
  allow_flagging=False
69
  )
70
  iface.launch()
 
61
  iface = gr.Interface(
62
  fn=recommend_items,
63
  inputs=[
64
+ gr.inputs.Number(label="Customer ID 1"),
65
+ gr.inputs.Number(label="Customer ID 2"),
66
  ],
67
  outputs=gr.outputs.Dataframe(label="Recommended Items for Customer 2",type="pandas"),
68
+ theme=gr.themes.Default(primary_hue="slate"),
69
  allow_flagging=False
70
  )
71
  iface.launch()