Skip to content

Commit

Permalink
add columns
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelduranfrigola committed Jan 5, 2025
1 parent fab711b commit 2bf1e93
Show file tree
Hide file tree
Showing 5 changed files with 410 additions and 414 deletions.
2 changes: 1 addition & 1 deletion model/framework/code/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def my_model(smiles_list):
# write output in a .csv file
with open(output_file, "w") as f:
writer = csv.writer(f)
writer.writerow(["emb-{0}".format(i) for i in range(400)]) # header
writer.writerow(["dimension_{0}".format(str(i).zfill(3)) for i in range(400)]) # header
for o in outputs:
writer.writerow(list(o))

Expand Down
Loading

0 comments on commit 2bf1e93

Please sign in to comment.