Skip to content

Commit

Permalink
Resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewcoole committed Oct 11, 2024
2 parents 2e99516 + 7d89512 commit 4e11bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def main():
with open("data/eidc_metadata.json") as input, open("data/prepared_data.json", "w") as output:
data = json.load(input)
for dataset in data["datasets"]:
dataset["desc_embedding"] = create_embedding(dataset["desc"]).tolist()
dataset["desc_emb"] = create_embedding(dataset["desc"]).tolist()
json.dump(data, output)


Expand Down

0 comments on commit 4e11bd5

Please sign in to comment.