Skip to content

Commit

Permalink
Merge pull request #3 from kundajelab/kat-dev
Browse files Browse the repository at this point in the history
modifying theano_backend to not crash on cpu
  • Loading branch information
AvantiShri committed Jun 11, 2018
2 parents 8ab353d + c06229b commit 55e6386
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
**/*.h5
**/*.ipynb_checkpoints
**/*.bin
**/*.tree
**/*.tree_*
**/*.weights
**/*DS_Store
3 changes: 1 addition & 2 deletions modisco.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
Metadata-Version: 1.1
Name: modisco
Version: 0.2
Version: 0.2.1
Summary: TF MOtif Discovery from Importance SCOres
Home-page: NA
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Download-URL: NA
Description-Content-Type: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN
3 changes: 2 additions & 1 deletion modisco/backend/theano_backend.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from __future__ import division, print_function
import theano
from theano import tensor as T
#import theano.tensor.signal.pool #autoimported if on GPU
from theano.tensor import signal
from theano.tensor.signal import pool
import numpy as np
import sys

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
description='TF MOtif Discovery from Importance SCOres',
url='NA',
download_url='NA',
version='0.2',
version='0.2.1',
packages=['modisco', 'modisco.cluster','modisco.backend',
'modisco.visualization', 'modisco.affinitymat',
'modisco.tfmodisco_workflow'],
Expand Down

0 comments on commit 55e6386

Please sign in to comment.