Skip to content

Commit a717ee7

Browse files
committed
MACE_LR for both with and without pbc
1 parent 7dd8277 commit a717ee7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+13445
-512
lines changed

mace/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

mace/.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
build/
8+
*.egg-info/
9+
10+
# pytest
11+
.pytest_cache/
12+
13+
# mypy
14+
.mypy_cache/
15+
16+
# IDE
17+
.idea/
18+
.vscode/
19+
*.txt
20+
*.log

mace/.mypy.ini

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[mypy]
2+
# Platform configuration
3+
python_version = 3.8
4+
5+
# Untyped definitions and calls
6+
check_untyped_defs = True
7+
8+
[mypy-mace.tools.torch_geometric.*]
9+
ignore_errors = True
10+
11+
[mypy-mace.tools.scatter]
12+
ignore_errors = True
13+
14+
[mypy-setuptools.*]
15+
ignore_missing_imports = True
16+
17+
[mypy-e3nn.*]
18+
ignore_missing_imports = True
19+
20+
[mypy-scipy.*]
21+
ignore_missing_imports = True
22+
23+
[mypy-ase.*]
24+
ignore_missing_imports = True
25+
26+
[mypy-prettytable.*]
27+
ignore_missing_imports = True
28+
29+
[mypy-torch_ema.*]
30+
ignore_missing_imports = True
31+
32+
[mypy-matplotlib.*]
33+
ignore_missing_imports = True
34+
35+
[mypy-pandas.*]
36+
ignore_missing_imports = True
37+
38+
[mypy-opt_einsum.*]
39+
ignore_missing_imports = True

mace/LICENSE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
MIT License
2+
3+
Copyright (c) 2022 ACEsuit/mace
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.

mace/MACE_developer.ipynb

Lines changed: 67 additions & 512 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)