forked from cimm-kzn/CIMtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,894 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,9 @@ | |
|
||
|
||
def tanimoto_kernel(x, y): | ||
""" | ||
""" | ||
x_dot = np.dot(x, y.T) | ||
|
||
x2 = (x**2).sum(axis=1) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CIMtools\.datasets package | ||
========================== | ||
|
||
.. automodule:: CIMtools.datasets | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
.. mdinclude:: ../README.md | ||
|
||
CIMtools package | ||
================ | ||
|
||
.. automodule:: CIMtools | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
.. include:: ../README.rst | ||
|
||
Subpackages | ||
----------- | ||
=========== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:maxdepth: 2 | ||
|
||
applicability_domain | ||
model_selection | ||
metrics | ||
datasets | ||
preprocessing | ||
standardize | ||
|
||
Tutorial | ||
-------- | ||
======== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:maxdepth: 1 | ||
|
||
tutorial/metric_constants | ||
tutorial/applicability_domain.ipynb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CIMtools\.metrics package | ||
========================= | ||
|
||
.. automodule:: CIMtools.metrics | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CIMtools\.model_selection package | ||
================================= | ||
|
||
.. automodule:: CIMtools.model_selection | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CIMtools\.preprocessing package | ||
=============================== | ||
|
||
.. automodule:: CIMtools.preprocessing | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CIMtools\.preprocessing.standardize package | ||
=========================================== | ||
|
||
.. automodule:: CIMtools.preprocessing.standardize | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: |
Oops, something went wrong.