crowbarmassage commited on
Commit
cf13029
1 Parent(s): 8a2c395

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -70,6 +70,8 @@ def synthesise(text):
70
 
71
  # Load your dataset from Hugging Face
72
  embeddings_dataset = load_dataset("crowbarmassage/MAEmbed")
 
 
73
 
74
  # Extract the embedding (assuming it's in a column named 'embedding')
75
  # Note: Adjust the index [0] if your embedding is at a different position in the dataset.
 
70
 
71
  # Load your dataset from Hugging Face
72
  embeddings_dataset = load_dataset("crowbarmassage/MAEmbed")
73
+ print(embeddings_dataset.features)
74
+ print(embeddings_dataset[0])
75
 
76
  # Extract the embedding (assuming it's in a column named 'embedding')
77
  # Note: Adjust the index [0] if your embedding is at a different position in the dataset.