Skip to content

Commit

Permalink
Typo in help string
Browse files Browse the repository at this point in the history
  • Loading branch information
SurgeArrester committed Mar 2, 2021
1 parent 638dbbe commit bd12899
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ElM2D/ElM2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def PCA(self, n_components=5):

(n,n) = self.dm.shape

if self.verbose: print(f"Constructing {n_components}x{n_components} Gram matrix")
if self.verbose: print(f"Constructing {n}x{n_components} Gram matrix")
E = (-0.5 * self.dm**2)

# Use this matrix to get column and row means
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'ElM2D',
packages = ['ElM2D'],
version = '0.2.4',
version = '0.2.5',
license='GPL3',
description = 'A high performance mapping class to embed large datasets of ionic compositions with respect to the ElMD metric.',
author = 'Cameron Hagreaves',
author_email = 'cameron.h@rgreaves.me.uk',
url = 'https://github.com/lrcfmd/ElM2D/',
download_url = 'https://github.com/lrcfmd/ElM2D/archive/0.2.4.tar.gz',
download_url = 'https://github.com/lrcfmd/ElM2D/archive/0.2.5.tar.gz',
keywords = ['ChemInformatics', 'Materials Science', 'Machine Learning', 'Materials Representation'],
install_requires=[
'cython',
Expand Down

0 comments on commit bd12899

Please sign in to comment.