Skip to content

Commit

Permalink
Merge pull request #27 from hammerlab/no-more-autoencoder
Browse files Browse the repository at this point in the history
No more autoencoder
  • Loading branch information
iskandr committed Feb 13, 2017
2 parents c81ebe5 + a55810b commit 542eec6
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 335 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ install:
- conda install -c cvxgrp scs=1.2.6
- pip install pypandoc
- pip install -r requirements.txt
# install the latest Theano
- pip install git+git://github.com/Theano/Theano.git --upgrade --no-deps
- pip install .
- pip install coveralls
- export PACKAGE_DIR=`pwd`
Expand Down
2 changes: 0 additions & 2 deletions fancyimpute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from .nuclear_norm_minimization import NuclearNormMinimization
from .bayesian_ridge_regression import BayesianRidgeRegression
from .mice import MICE
from .auto_encoder import AutoEncoder
from .matrix_factorization import MatrixFactorization
from .iterative_svd import IterativeSVD
from .simple_fill import SimpleFill
Expand All @@ -18,7 +17,6 @@
"NuclearNormMinimization",
"BayesianRidgeRegression",
"MICE",
"AutoEncoder",
"MatrixFactorization",
"IterativeSVD",
"SimpleFill",
Expand Down
196 changes: 0 additions & 196 deletions fancyimpute/auto_encoder.py

This file was deleted.

95 changes: 0 additions & 95 deletions fancyimpute/neuralnet_helpers.py

This file was deleted.

4 changes: 2 additions & 2 deletions fancyimpute/similarity_weighted_averaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ def complete_dict(
def complete(self, X):
if self.verbose:
print(
"[SimilarityWeightedAveraging] Creating dictionary from matrix with shape %s" % (
X.shape,))
("[SimilarityWeightedAveraging] Creating dictionary from matrix "
" with shape %s") % (X.shape,))
missing_mask = np.isnan(X)
observed_mask = ~missing_mask
sparse_dict = matrix_to_nested_dictionary(
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
six
keras
downhill
climate
cvxpy
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
if __name__ == '__main__':
setup(
name='fancyimpute',
version="0.1.0",
version="0.2.0",
description="Matrix completion and feature imputation algorithms",
author="Alex Rubinsteyn, Sergey Feldman",
author_email="alex {dot} rubinsteyn {at} gmail {dot} com",
Expand All @@ -59,8 +59,6 @@
# used by NuclearNormMinimization
'cvxpy',
'scikit-learn>=0.17.1',
# used by AutoEncoder
'keras',
# used by MatrixFactorization
'downhill',
'climate',
Expand Down
34 changes: 0 additions & 34 deletions test/test_auto_encoder.py

This file was deleted.

0 comments on commit 542eec6

Please sign in to comment.