Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.

Commit 8f16e47

Browse files
committed
high level interface merge
1 parent 6774268 commit 8f16e47

32 files changed

+4401
-246
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6+
# pytest
7+
.pytest_cache/
8+
69
# C extensions
710
*.so
811

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,17 @@ QML is a Python2/3-compatible toolkit for representation learning of properties
55

66
#### Current list of contributors:
77
* Anders S. Christensen (University of Basel)
8+
* Lars A. Bratholm (University of Bristol)
9+
* Silvia Amabilino (University of Bristol)
810
* Felix A. Faber (University of Basel)
911
* Bing Huang (University of Basel)
10-
* Lars A. Bratholm (University of Copenhagen)
11-
* Alexandre Tkatchenko (University of Luxembourg)
12-
* Klaus-Robert Müller (Technische Universität Berlin/Korea University)
1312
* O. Anatole von Lilienfeld (University of Basel)
1413

1514
## 1) Citing QML:
1615

1716
Until the preprint is available from arXiv, please cite this GitHub repository as:
1817

19-
AS Christensen, LA Bratholm, FA Faber, B Huang, A Tkatchenko, KR Müller, OA von Lilienfeld (2017) "QML: A Python Toolkit for Quantum Machine Learning" https://github.com/qmlcode/qml
18+
AS Christensen, LA Bratholm, S Amabilino, FA Faber, B Huang, OA von Lilienfeld (2018) "QML: A Python Toolkit for Quantum Machine Learning" https://github.com/qmlcode/qml
2019

2120

2221
## 2) Get help:

README.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ Current list of contributors:
1010
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1111

1212
- Anders S. Christensen (University of Basel)
13+
- Lars A. Bratholm (University of Bristol)
14+
- Silvia Amabilino (University of Bristol)
1315
- Felix A. Faber (University of Basel)
1416
- Bing Huang (University of Basel)
15-
- Lars A. Bratholm (University of Copenhagen)
16-
- Alexandre Tkatchenko (University of Luxembourg)
17-
- Klaus-Robert Müller (Technische Universität Berlin/Korea University)
1817
- O. Anatole von Lilienfeld (University of Basel)
1918

2019
1) Citing QML:
@@ -25,7 +24,7 @@ repository as:
2524

2625
::
2726

28-
AS Christensen, LA Bratholm, FA Faber, B Huang, A Tkatchenko, KR Müller, OA von Lilienfeld (2017) "QML: A Python Toolkit for Quantum Machine Learning" https://github.com/qmlcode/qml
27+
AS Christensen, LA Bratholm, S Amabilino, FA Faber, B Huang, OA von Lilienfeld (2018) "QML: A Python Toolkit for Quantum Machine Learning" https://github.com/qmlcode/qml
2928

3029
2) Get help:
3130
------------

qml/__init__.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,16 @@
2626
===============
2727
2828
Provides
29-
1. Compound-class
30-
2. representations
31-
3. kernels
32-
4. math
33-
5. distance
29+
1. representations
30+
2. kernels
31+
3. math
3432
"""
3533
from __future__ import absolute_import
3634

37-
from .compound import Compound
35+
from . import data
36+
from . import ml
37+
from . import models
38+
from . import aglaia
3839

3940
__author__ = "Anders S. Christensen"
4041
__copyright__ = "Copyright 2016"

qml/aglaia/__init__.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# MIT License
2+
#
3+
# Copyright (c) 2017 Silvia Amabilino, Lars Andersen Bratholm
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.
22+
23+
24+
"""
25+
Aglaia main module
26+
===============
27+
28+
Provides
29+
1. NN class
30+
2. wrappers
31+
"""

0 commit comments

Comments
 (0)