Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Merge 7257293 into fb2e2c2
Browse files Browse the repository at this point in the history
  • Loading branch information
CunliangGeng committed Aug 26, 2019
2 parents fb2e2c2 + 7257293 commit d7634f2
Show file tree
Hide file tree
Showing 58 changed files with 4,924 additions and 3,932 deletions.
11 changes: 4 additions & 7 deletions deeprank/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
# h5py complains since the last numpy update ...
# the warning is
#/home/nico/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
# /home/nico/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
# from ._conv import register_converters as _register_converters
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)

# generate the data
from .generate import *

# tools
from .tools import *

warnings.simplefilter(action='ignore', category=FutureWarning)


# deep learning
# import torch fals on Travis
#from .learn import *


Loading

0 comments on commit d7634f2

Please sign in to comment.