Skip to content

Commit

Permalink
Save atomic_numbers as integer list
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWarford committed Jan 26, 2025
1 parent df2d16b commit e157d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mace/cli/preprocess_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def run(args: argparse.Namespace):
"avg_num_neighbors": avg_num_neighbors,
"mean": mean,
"std": std,
"atomic_numbers": str(z_table.zs),
"atomic_numbers": str([int(z) for z in z_table.zs]),
"r_max": args.r_max,
}

Expand Down

0 comments on commit e157d3a

Please sign in to comment.