Update app.py
Browse files
app.py
CHANGED
|
@@ -37,7 +37,6 @@ df = pd.DataFrame(dataset)
|
|
| 37 |
print(df.iloc[[1]])
|
| 38 |
|
| 39 |
df['embeddings'] = df['text'].apply(lambda x: embedding_model.encode(x))
|
| 40 |
-
print(embeddings)
|
| 41 |
print(df.iloc[[1]])
|
| 42 |
dataset = Dataset.from_pandas(df)
|
| 43 |
print(dataset[1])
|
|
|
|
| 37 |
print(df.iloc[[1]])
|
| 38 |
|
| 39 |
df['embeddings'] = df['text'].apply(lambda x: embedding_model.encode(x))
|
|
|
|
| 40 |
print(df.iloc[[1]])
|
| 41 |
dataset = Dataset.from_pandas(df)
|
| 42 |
print(dataset[1])
|