skala 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
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.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
skala-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: skala
3
+ Version: 1.0.0
4
+ Summary: Skala Exchange Correlation Functional
5
+ Project-URL: repository, https://github.com/microsoft/skala
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Development Status :: 5 - Production/Stable
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: microsoft-skala==1.0.0
12
+ Dynamic: license-file
13
+
14
+ # Skala: Accurate and scalable exchange-correlation with deep learning
15
+
16
+ [![Documentation](https://img.shields.io/badge/docs-microsoft.github.io%2Fskala-blue?logo=read-the-docs&logoColor=white)](https://microsoft.github.io/skala)
17
+ [![Tests](https://img.shields.io/github/actions/workflow/status/microsoft/skala/test.yml?branch=main&logo=github&label=build)](https://github.com/microsoft/skala/actions/workflows/test.yml)
18
+ [![PyPI](https://img.shields.io/pypi/v/skala?logo=pypi&logoColor=white)](https://pypi.org/project/skala/)
19
+ [![Paper](https://img.shields.io/badge/arXiv-2506.14665-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2506.14665)
20
+
21
+ Skala is a neural network-based exchange-correlation functional for density functional theory (DFT), developed by Microsoft Research AI for Science. It leverages deep learning to predict exchange-correlation energies from electron density features, achieving chemical accuracy for atomization energies and strong performance on broad thermochemistry and kinetics benchmarks, all at a computational cost similar to semi-local DFT.
22
+
23
+ Trained on a large, diverse dataset—including coupled cluster atomization energies and public benchmarks—Skala uses scalable message passing and local layers to learn both local and non-local effects. The model has about 276,000 parameters and matches the accuracy of leading hybrid functionals.
24
+
25
+ Learn more about Skala in our [ArXiv paper](https://arxiv.org/abs/2506.14665).
26
+
27
+ ## What's in here
28
+
29
+ This repository contains two main components:
30
+
31
+ 1. The Python package `skala`, which is also distributed [on PyPI](https://pypi.org/project/skala/) and contains a Pytorch implementation of the Skala model, its hookups to quantum chemistry packages [PySCF](https://pyscf.org/) and [ASE](https://ase-lib.org/), and an independent client library for the Skala model served [in Azure AI Foundry](https://ai.azure.com/catalog/models/Skala).
32
+ 2. A development version of the CPU/GPU C++ library for XC functionals [GauXC](https://github.com/wavefunction91/GauXC) with an add-on supporting Pytorch-based functionals like Skala. GauXC is part of the stack that serves Skala in Azure AI Foundry and can be used to integrate Skala into other third-party DFT codes.
33
+
34
+ All information below relates to the Python package, the development version of GauXC including its license and other information can be found in [`third_party/gauxc`](https://github.com/microsoft/skala/tree/main/third_party/gauxc).
35
+
36
+ ## Getting started
37
+
38
+ Install using Pip:
39
+
40
+ ```bash
41
+ pip install torch --index-url https://download.pytorch.org/whl/cpu # unless you already have GPU Pytorch for something else
42
+ pip install skala
43
+ ```
44
+
45
+ Run an SCF calculation with Skala for a hydrogen molecule:
46
+
47
+ ```python
48
+ from pyscf import gto
49
+ from skala.pyscf import SkalaKS
50
+
51
+ mol = gto.M(
52
+ atom="""H 0 0 0; H 0 0 1.4""",
53
+ basis="def2-tzvp",
54
+ )
55
+ ks = SkalaKS(mol, xc="skala")
56
+ ks.kernel()
57
+ ```
58
+
59
+ Go to [microsoft.github.io/skala](https://microsoft.github.io/skala) for a more detailed installation guide and further examples of how to use Skala functional with PySCF and ASE and in [Azure Foundry](https://ai.azure.com/catalog/models/Skala).
60
+
61
+ ## Project information
62
+
63
+ See the following files for more information about contributing, reporting issues, and the code of conduct:
64
+
65
+ - [`CONTRIBUTING.md`](CONTRIBUTING.md)
66
+ - [`LICENSE.txt`](LICENSE.txt)
67
+ - [`SECURITY.md`](SECURITY.md)
68
+
69
+ ## Trademarks
70
+
71
+ This project may contain trademarks or logos for projects, products, or services.
72
+ Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
73
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
74
+ Any use of third-party trademarks or logos are subject to those third-party's policies.
skala-1.0.0/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # Skala: Accurate and scalable exchange-correlation with deep learning
2
+
3
+ [![Documentation](https://img.shields.io/badge/docs-microsoft.github.io%2Fskala-blue?logo=read-the-docs&logoColor=white)](https://microsoft.github.io/skala)
4
+ [![Tests](https://img.shields.io/github/actions/workflow/status/microsoft/skala/test.yml?branch=main&logo=github&label=build)](https://github.com/microsoft/skala/actions/workflows/test.yml)
5
+ [![PyPI](https://img.shields.io/pypi/v/skala?logo=pypi&logoColor=white)](https://pypi.org/project/skala/)
6
+ [![Paper](https://img.shields.io/badge/arXiv-2506.14665-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2506.14665)
7
+
8
+ Skala is a neural network-based exchange-correlation functional for density functional theory (DFT), developed by Microsoft Research AI for Science. It leverages deep learning to predict exchange-correlation energies from electron density features, achieving chemical accuracy for atomization energies and strong performance on broad thermochemistry and kinetics benchmarks, all at a computational cost similar to semi-local DFT.
9
+
10
+ Trained on a large, diverse dataset—including coupled cluster atomization energies and public benchmarks—Skala uses scalable message passing and local layers to learn both local and non-local effects. The model has about 276,000 parameters and matches the accuracy of leading hybrid functionals.
11
+
12
+ Learn more about Skala in our [ArXiv paper](https://arxiv.org/abs/2506.14665).
13
+
14
+ ## What's in here
15
+
16
+ This repository contains two main components:
17
+
18
+ 1. The Python package `skala`, which is also distributed [on PyPI](https://pypi.org/project/skala/) and contains a Pytorch implementation of the Skala model, its hookups to quantum chemistry packages [PySCF](https://pyscf.org/) and [ASE](https://ase-lib.org/), and an independent client library for the Skala model served [in Azure AI Foundry](https://ai.azure.com/catalog/models/Skala).
19
+ 2. A development version of the CPU/GPU C++ library for XC functionals [GauXC](https://github.com/wavefunction91/GauXC) with an add-on supporting Pytorch-based functionals like Skala. GauXC is part of the stack that serves Skala in Azure AI Foundry and can be used to integrate Skala into other third-party DFT codes.
20
+
21
+ All information below relates to the Python package, the development version of GauXC including its license and other information can be found in [`third_party/gauxc`](https://github.com/microsoft/skala/tree/main/third_party/gauxc).
22
+
23
+ ## Getting started
24
+
25
+ Install using Pip:
26
+
27
+ ```bash
28
+ pip install torch --index-url https://download.pytorch.org/whl/cpu # unless you already have GPU Pytorch for something else
29
+ pip install skala
30
+ ```
31
+
32
+ Run an SCF calculation with Skala for a hydrogen molecule:
33
+
34
+ ```python
35
+ from pyscf import gto
36
+ from skala.pyscf import SkalaKS
37
+
38
+ mol = gto.M(
39
+ atom="""H 0 0 0; H 0 0 1.4""",
40
+ basis="def2-tzvp",
41
+ )
42
+ ks = SkalaKS(mol, xc="skala")
43
+ ks.kernel()
44
+ ```
45
+
46
+ Go to [microsoft.github.io/skala](https://microsoft.github.io/skala) for a more detailed installation guide and further examples of how to use Skala functional with PySCF and ASE and in [Azure Foundry](https://ai.azure.com/catalog/models/Skala).
47
+
48
+ ## Project information
49
+
50
+ See the following files for more information about contributing, reporting issues, and the code of conduct:
51
+
52
+ - [`CONTRIBUTING.md`](CONTRIBUTING.md)
53
+ - [`LICENSE.txt`](LICENSE.txt)
54
+ - [`SECURITY.md`](SECURITY.md)
55
+
56
+ ## Trademarks
57
+
58
+ This project may contain trademarks or logos for projects, products, or services.
59
+ Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
60
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
61
+ Any use of third-party trademarks or logos are subject to those third-party's policies.
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "skala"
7
+ version = "1.0.0"
8
+ description = "Skala Exchange Correlation Functional"
9
+ authors = []
10
+ license-files = ["LICENSE.txt"]
11
+ readme = "README.md"
12
+ keywords = []
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "Development Status :: 5 - Production/Stable",
16
+ ]
17
+ requires-python = ">=3.10"
18
+ dependencies = [
19
+ "microsoft-skala==1.0.0",
20
+ ]
21
+ urls.repository = "https://github.com/microsoft/skala"
skala-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from skala import *
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: skala
3
+ Version: 1.0.0
4
+ Summary: Skala Exchange Correlation Functional
5
+ Project-URL: repository, https://github.com/microsoft/skala
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Development Status :: 5 - Production/Stable
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: microsoft-skala==1.0.0
12
+ Dynamic: license-file
13
+
14
+ # Skala: Accurate and scalable exchange-correlation with deep learning
15
+
16
+ [![Documentation](https://img.shields.io/badge/docs-microsoft.github.io%2Fskala-blue?logo=read-the-docs&logoColor=white)](https://microsoft.github.io/skala)
17
+ [![Tests](https://img.shields.io/github/actions/workflow/status/microsoft/skala/test.yml?branch=main&logo=github&label=build)](https://github.com/microsoft/skala/actions/workflows/test.yml)
18
+ [![PyPI](https://img.shields.io/pypi/v/skala?logo=pypi&logoColor=white)](https://pypi.org/project/skala/)
19
+ [![Paper](https://img.shields.io/badge/arXiv-2506.14665-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2506.14665)
20
+
21
+ Skala is a neural network-based exchange-correlation functional for density functional theory (DFT), developed by Microsoft Research AI for Science. It leverages deep learning to predict exchange-correlation energies from electron density features, achieving chemical accuracy for atomization energies and strong performance on broad thermochemistry and kinetics benchmarks, all at a computational cost similar to semi-local DFT.
22
+
23
+ Trained on a large, diverse dataset—including coupled cluster atomization energies and public benchmarks—Skala uses scalable message passing and local layers to learn both local and non-local effects. The model has about 276,000 parameters and matches the accuracy of leading hybrid functionals.
24
+
25
+ Learn more about Skala in our [ArXiv paper](https://arxiv.org/abs/2506.14665).
26
+
27
+ ## What's in here
28
+
29
+ This repository contains two main components:
30
+
31
+ 1. The Python package `skala`, which is also distributed [on PyPI](https://pypi.org/project/skala/) and contains a Pytorch implementation of the Skala model, its hookups to quantum chemistry packages [PySCF](https://pyscf.org/) and [ASE](https://ase-lib.org/), and an independent client library for the Skala model served [in Azure AI Foundry](https://ai.azure.com/catalog/models/Skala).
32
+ 2. A development version of the CPU/GPU C++ library for XC functionals [GauXC](https://github.com/wavefunction91/GauXC) with an add-on supporting Pytorch-based functionals like Skala. GauXC is part of the stack that serves Skala in Azure AI Foundry and can be used to integrate Skala into other third-party DFT codes.
33
+
34
+ All information below relates to the Python package, the development version of GauXC including its license and other information can be found in [`third_party/gauxc`](https://github.com/microsoft/skala/tree/main/third_party/gauxc).
35
+
36
+ ## Getting started
37
+
38
+ Install using Pip:
39
+
40
+ ```bash
41
+ pip install torch --index-url https://download.pytorch.org/whl/cpu # unless you already have GPU Pytorch for something else
42
+ pip install skala
43
+ ```
44
+
45
+ Run an SCF calculation with Skala for a hydrogen molecule:
46
+
47
+ ```python
48
+ from pyscf import gto
49
+ from skala.pyscf import SkalaKS
50
+
51
+ mol = gto.M(
52
+ atom="""H 0 0 0; H 0 0 1.4""",
53
+ basis="def2-tzvp",
54
+ )
55
+ ks = SkalaKS(mol, xc="skala")
56
+ ks.kernel()
57
+ ```
58
+
59
+ Go to [microsoft.github.io/skala](https://microsoft.github.io/skala) for a more detailed installation guide and further examples of how to use Skala functional with PySCF and ASE and in [Azure Foundry](https://ai.azure.com/catalog/models/Skala).
60
+
61
+ ## Project information
62
+
63
+ See the following files for more information about contributing, reporting issues, and the code of conduct:
64
+
65
+ - [`CONTRIBUTING.md`](CONTRIBUTING.md)
66
+ - [`LICENSE.txt`](LICENSE.txt)
67
+ - [`SECURITY.md`](SECURITY.md)
68
+
69
+ ## Trademarks
70
+
71
+ This project may contain trademarks or logos for projects, products, or services.
72
+ Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
73
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
74
+ Any use of third-party trademarks or logos are subject to those third-party's policies.
@@ -0,0 +1,9 @@
1
+ LICENSE.txt
2
+ README.md
3
+ pyproject.toml
4
+ src/microsoft_skala/__init__.py
5
+ src/skala.egg-info/PKG-INFO
6
+ src/skala.egg-info/SOURCES.txt
7
+ src/skala.egg-info/dependency_links.txt
8
+ src/skala.egg-info/requires.txt
9
+ src/skala.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ microsoft-skala==1.0.0
@@ -0,0 +1 @@
1
+ microsoft_skala