yoniif commited on
Commit
8ad376a
·
verified ·
1 Parent(s): ac9c1ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  from sentence_transformers import SentenceTransformer, util
4
 
5
  # ✅ Load the CSV you uploaded into the Space
6
- df = pd.read_csv("top_100_influencers_combined_sample.csv")
7
  df.fillna("", inplace=True)
8
 
9
  df["profile_text"] = df["Name"] + " - " + df["Platform"] + " - " + df["Niche"] + " - " + df["Country"]
 
3
  from sentence_transformers import SentenceTransformer, util
4
 
5
  # ✅ Load the CSV you uploaded into the Space
6
+ df = pd.read_csv("top_100_influencers_combined.csv")
7
  df.fillna("", inplace=True)
8
 
9
  df["profile_text"] = df["Name"] + " - " + df["Platform"] + " - " + df["Niche"] + " - " + df["Country"]