michaeldalverson/CrysTens

why we need to calculate reference_avg and ref_angle?

szy120320 opened this issue · 8 comments

微信图片_20230701194218

hi, I want to know why we need to compare abs(crys_tens[num, 7, 0] - ref_avg)/ref_avg with ref_percent. Can you give me a reason?
And I use your diffusion model to generate some crystal strucuture(I use myself dataset), but it always has weird length and large cell_volume. What'smore, it's space_group is "P 1" rather than predicted space_group. Thank you.
11

And I want to know about what the ref_percent does. why we need to set the ref_percent.

could you tell me why all generated crystal structure's _symmetry_space_group_name_H-M equal to "P 1"? In addition, I found that in your post processing, lattice was constructed first, and then Structure class was used to construct the structure, but the input parameters did not use the predicted space group. All the generated cif files have _symmetry_space_group_name_H-M equal to "P1". So here are some question I'd like to ask you. Thank you. @michaeldalverson

微信图片_20230701194218

hi, I want to know why we need to compare abs(crys_tens[num, 7, 0] - ref_avg)/ref_avg with ref_percent. Can you give me a reason? And I use your diffusion model to generate some crystal strucuture(I use myself dataset), but it always has weird length and large cell_volume. What'smore, it's space_group is "P 1" rather than predicted space_group. Thank you. 11

I found that in your post-processing, the conversion of tensors did not use the pre-processing method. I found that the two tensors obtained by using your post-processing method and the method of converting tensors in the pre-processing are not the same, so I found the problem.
QQ图片20230703232632

I still can't solve this problem, the symmetry of the crystal structure that I generate is always P1, and I want to know how to generate a crystal structure that has symmetry. I have tried to debug these parameters, including ref_percent, ref_coord_percent, num_coord_clusters, and num_atom_clusters. Can you answer my question? Thank you! @michaeldalverson

Hello @szy120320,

The abs(crys_tens[num, 7, 0] - ref_avg)/ref_avg >= ref_percent line is used to determine when to stop collecting atoms from the CrysTens structure. By default, ref_percent is set to 0.2, so when a given column has a space group number that differs by more than 20% from the average, it uses that as an indication that there are no more atoms to place. For example, if we have a CrysTens with the following space group number predictions in row 7, (200, 202, 201, 198, 10, 5, 0, 0, 0), we should stop after 198 and take the average of the first four numbers. A lower ref_percent would be a stricter parameter and a higher ref_percent would allow for more variability.

As far as the large cell volume, I am unsure of why that is occurring. How long are you training the diffusion model?

As of now, we do not construct the CIF using the space group number because unless the atoms are perfectly aligned with the expected space group, there can be a lot of overlap and repetition. I can add an option for the construction of CIFs using the space group. However, even with the inclusion of space group, I believe the CIF is still reported to have a space group of P1 which is an artifact of PyMatGen. I can however, look into changing that.

Thank you for you reply. Now, the only problem I have is that the space group of the crystal structure I generated is P1, so it doesn't behave symmetrically very well. The atomic fractional coordinates in the crystals that I generate are actually very difficult to get symmetric, right? I want to use your model to generate some desired crystal structure. Of course, I believe this is a challenge problem for me. In general, I really appreciate your detailed reply.

Hello, why am I using your data set to train your model, but the symmetry of the crystal structures I produce is P1? How do I generate a crystal whose symmetry is not P1? @michaeldalverson