diff --git a/README.md b/README.md index ac2a07e..459e94b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -MBARJournalClub -=============== +MSMBuilder3 Design and Python API +================================= + +You can view the slides here: http://rawgit.com/kyleabeauchamp/MSMBuilderTalk/master/index.html diff --git a/notebook/Benchmark.html b/notebook/Benchmark.html deleted file mode 100644 index 3c926ad..0000000 --- a/notebook/Benchmark.html +++ /dev/null @@ -1,1777 +0,0 @@ - - -
- - -from pymbar.mbar_solvers import logsumexp
-import numpy as np
-
n, m = (10000, 2000)
-x = np.random.normal(size=(n, m))
-
%time L = logsumexp(x, axis=1, use_numexpr=False)
-
%time L = logsumexp(x, axis=1, use_numexpr=True)
-