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
May I ask do we have a non-averaged version of ace descriptor?
Because the averaged structural descriptor may loose some information:
descriptors = []
config_types = []
for atoms in dataset
descriptor = zeros(length(basis))
for i in 1:length(atoms)
descriptor += site_energy(basis, atoms, i)
end
descriptor /= length(atoms)
push!(descriptors, descriptor)
push!(config_types, atoms.data["config_type"].data)
end
Thank you!!
The text was updated successfully, but these errors were encountered:
May I ask do we have a non-averaged version of ace descriptor?
Because the averaged structural descriptor may loose some information:
descriptors = []
config_types = []
for atoms in dataset
descriptor = zeros(length(basis))
for i in 1:length(atoms)
descriptor += site_energy(basis, atoms, i)
end
descriptor /= length(atoms)
push!(descriptors, descriptor)
push!(config_types, atoms.data["config_type"].data)
end
Thank you!!
The text was updated successfully, but these errors were encountered: