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

Remove ase and dataprovider #108

Merged
merged 2 commits into from
Mar 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"""
from __future__ import absolute_import

from . import data
from . import models
from . import aglaia
from . import math
Expand All @@ -42,6 +41,7 @@
from . import representations
from . import qmlearn
from . import utils
from .utils.compound import Compound

__author__ = "Anders S. Christensen"
__copyright__ = "Copyright 2016"
Expand Down
2 changes: 1 addition & 1 deletion qml/aglaia/aglaia.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from qml.representations import generate_acsf
from qml.aglaia.graceful_killer import _GracefulKiller

from qml.data import Compound
from qml import Compound
from qml import representations as qml_rep

import tensorflow
Expand Down
25 changes: 0 additions & 25 deletions qml/data/__init__.py

This file was deleted.

46 changes: 0 additions & 46 deletions qml/data/dataprovider.py

This file was deleted.

42 changes: 0 additions & 42 deletions qml/data/xyzdataprovider.py

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
numpy>=1.13
scipy
scikit-learn
ase
six
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ def setup_qml():
name="qml",
packages=[
'qml',
'qml.data',
'qml.aglaia',
'qml.arad',
'qml.fchl',
Expand Down
2 changes: 1 addition & 1 deletion test/test_arad.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_arad():
for xyz_file in sorted(data.keys())[:10]:

# Initialize the qml.data.Compound() objects
mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)

# Associate a property (heat of formation) with the object
mol.properties = data[xyz_file]
Expand Down
2 changes: 1 addition & 1 deletion test/test_compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import os

from qml.data import Compound
from qml import Compound
import numpy as np

def compare_lists(a, b):
Expand Down
11 changes: 5 additions & 6 deletions test/test_energy_krr_atomic_cmat.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import numpy as np

import qml
import qml.data

from qml.kernels import laplacian_kernel
from qml.math import cho_solve
Expand Down Expand Up @@ -65,14 +64,14 @@ def test_krr_gaussian_local_cmat():
# Parse file containing PBE0/def2-TZVP heats of formation and xyz filenames
data = get_energies(test_dir + "/data/hof_qm7.txt")

# Generate a list of qml.data.Compound() objects"
# Generate a list of qml.Compound() objects"
mols = []


for xyz_file in sorted(data.keys())[:1000]:

# Initialize the qml.data.Compound() objects
mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
# Initialize the qml.Compound() objects
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)

# Associate a property (heat of formation) with the object
mol.properties = data[xyz_file]
Expand Down Expand Up @@ -152,8 +151,8 @@ def test_krr_laplacian_local_cmat():

for xyz_file in sorted(data.keys())[:1000]:

# Initialize the qml.data.Compound() objects
mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
# Initialize the qml.Compound() objects
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)

# Associate a property (heat of formation) with the object
mol.properties = data[xyz_file]
Expand Down
5 changes: 2 additions & 3 deletions test/test_energy_krr_bob.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import numpy as np

import qml
import qml.data

from qml.kernels import laplacian_kernel
from qml.math import cho_solve
Expand Down Expand Up @@ -65,8 +64,8 @@ def test_krr_bob():

for xyz_file in sorted(data.keys())[:1000]:

# Initialize the qml.data.Compound() objects
mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
# Initialize the qml.Compound() objects
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)

# Associate a property (heat of formation) with the object
mol.properties = data[xyz_file]
Expand Down
5 changes: 2 additions & 3 deletions test/test_energy_krr_cmat.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import numpy as np

import qml
import qml.data

from qml.kernels import laplacian_kernel
from qml.math import cho_solve
Expand Down Expand Up @@ -65,8 +64,8 @@ def test_krr_cmat():

for xyz_file in sorted(data.keys())[:1000]:

# Initialize the qml.data.Compound() objects
mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
# Initialize the qml.Compound() objects
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)

# Associate a property (heat of formation) with the object
mol.properties = data[xyz_file]
Expand Down
2 changes: 1 addition & 1 deletion test/test_fchl_scalar.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from scipy.special import binom
from scipy.special import factorial

from qml.data import Compound
from qml import Compound

from qml.math import cho_solve

Expand Down
4 changes: 2 additions & 2 deletions test/test_kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_kpca():
# Parse file containing PBE0/def2-TZVP heats of formation and xyz filenam
data = get_energies(test_dir + "/data/hof_qm7.txt")

# Generate a list of qml.data.Compound() objects
# Generate a list of qml.Compound() objects
mols = []

keys = sorted(data.keys())
Expand All @@ -273,7 +273,7 @@ def test_kpca():

for xyz_file in keys[:n_mols]:

mol = qml.data.Compound(xyz=test_dir + "/qm7/" + xyz_file)
mol = qml.Compound(xyz=test_dir + "/qm7/" + xyz_file)
mol.properties = data[xyz_file]
mol.generate_bob()
mols.append(mol)
Expand Down
2 changes: 1 addition & 1 deletion test/test_representations.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_representations():

mols = []
for xyz_file in files:
mol = qml.data.Compound(xyz=path + "/" + xyz_file)
mol = qml.Compound(xyz=path + "/" + xyz_file)
mols.append(mol)

size = max(mol.nuclear_charges.size for mol in mols) + 1
Expand Down
4 changes: 2 additions & 2 deletions test/test_slatm.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_slatm_global_representation():
mols = []
for xyz_file in files:

mol = qml.data.Compound(xyz=path + "/" + xyz_file)
mol = qml.Compound(xyz=path + "/" + xyz_file)
mols.append(mol)

mbtypes = get_slatm_mbtypes(np.array([mol.nuclear_charges for mol in mols]))
Expand Down Expand Up @@ -79,7 +79,7 @@ def test_slatm_local_representation():
mols = []
for xyz_file in files:

mol = qml.data.Compound(xyz=path + "/" + xyz_file)
mol = qml.Compound(xyz=path + "/" + xyz_file)
mols.append(mol)

mbtypes = get_slatm_mbtypes(np.array([mol.nuclear_charges for mol in mols]))
Expand Down
2 changes: 1 addition & 1 deletion test/test_symm_funct.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def test_acsf():

mols = []
for xyz_file in files:
mol = qml.data.Compound(xyz=path + "/" + xyz_file)
mol = qml.Compound(xyz=path + "/" + xyz_file)
mols.append(mol)

elements = set()
Expand Down