Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented block HSIC lasso #9

Merged
merged 12 commits into from
Jul 18, 2018
6 changes: 0 additions & 6 deletions .eggs/README.txt

This file was deleted.

Binary file removed .eggs/pytest_runner-4.2-py2.7.egg
Binary file not shown.
39 changes: 31 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

# Created by https://www.gitignore.io/api/python

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand All @@ -6,6 +10,23 @@ __pycache__/
# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
Expand All @@ -23,6 +44,7 @@ htmlcov/
.coverage
.coverage.*
.cache
.pytest_cache/
nosetests.xml
coverage.xml
*.cover
Expand All @@ -32,10 +54,6 @@ coverage.xml
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache
Expand All @@ -56,18 +74,19 @@ target/
.python-version

# celery beat schedule file
celerybeat-schedule
celerybeat-schedule.*

# SageMath parsed files
*.sage.py

# dotenv
# Environments
.env

# virtualenv
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
Expand All @@ -81,3 +100,7 @@ ENV/

# mypy
.mypy_cache/


# End of https://www.gitignore.io/api/python

12 changes: 0 additions & 12 deletions build/lib.linux-x86_64-2.7/pyHSICLasso/__init__.py

This file was deleted.

245 changes: 0 additions & 245 deletions build/lib.linux-x86_64-2.7/pyHSICLasso/api.py

This file was deleted.

Loading