You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Thanks for your awesome work! I was wondering if you could provide more details regarding the data construction with the materials project API. Specifically,
Which keys were queried to generate the features (Appendix Table 2)?
a. Are group & period number included in the API or did you use other methods?
b. Which keys in materialsproject held electronegativity, valence electrons (nsites?), etc.?
What IDs are saved in atom_init? Do these IDs have to match with information in the CIF files?
Cheers!
The text was updated successfully, but these errors were encountered:
Thank you for your question. First, the features are for elements, not for crystals. In atom_init, the keys are atomic number of the element, and the values are the initialization vectors for each element.
To generate these features, I used a package called mendeleev. For example, to get the group number for H, you can simply do,
from mendeleev import element
element('H').group_id
Hello,
Thanks for your awesome work! I was wondering if you could provide more details regarding the data construction with the materials project API. Specifically,
Which keys were queried to generate the features (Appendix Table 2)?
a. Are group & period number included in the API or did you use other methods?
b. Which keys in materialsproject held electronegativity, valence electrons (nsites?), etc.?
What IDs are saved in atom_init? Do these IDs have to match with information in the CIF files?
Cheers!
The text was updated successfully, but these errors were encountered: