Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jwa7 committed Dec 13, 2024
1 parent 3089df2 commit 5ea4728
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import ase.io # noqa: E402, F811


MAX_ANGULAR = 2
SPHEX_HYPERS_SMALL = {
"cutoff": {
"radius": 2.5,
Expand All @@ -27,7 +26,7 @@
},
"basis": {
"type": "TensorProduct",
"max_angular": MAX_ANGULAR,
"max_angular": 2,
"radial": {"type": "Gto", "max_radial": 1},
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
from featomic.torch.clebsch_gordan import EquivariantPowerSpectrum


MAX_ANGULAR = 2
SPHEX_HYPERS_SMALL = {
"cutoff": {
"radius": 2.5,
"radius": 5.5,
"smoothing": {"type": "ShiftedCosine", "width": 0.5},
},
"density": {
Expand All @@ -18,10 +17,8 @@
},
"basis": {
"type": "TensorProduct",
# use a small basis to make the tests faster
# FIXME: setting max_angular=1 breaks the tests
"max_angular": MAX_ANGULAR,
"radial": {"type": "Gto", "max_radial": 1},
"max_angular": 6,
"radial": {"type": "Gto", "max_radial": 4},
},
}

Expand Down

0 comments on commit 5ea4728

Please sign in to comment.