-
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
1 parent
990ab70
commit 9122bc5
Showing
8 changed files
with
21 additions
and
29 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
from polyexpkde.ksum import h_Gauss_to_K | ||
from polyexpkde.ksum import kernel_density | ||
from polyexpkde.ksum import kernel_eval | ||
from polyexpkde.polyexp_kde import PolyExpKernelDensity |
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 |
---|---|---|
|
@@ -7,8 +7,8 @@ def readme(): | |
|
||
|
||
configuration = { | ||
"name": "fastkde", | ||
"version": "0.1.1", | ||
"name": "polyexpkde", | ||
"version": "0.1.2", | ||
"description": "Fast KDE with polynomial-exponential kernel", | ||
"long_description": readme(), | ||
"classifiers": [ | ||
|
@@ -29,12 +29,12 @@ def readme(): | |
"Programming Language :: Python :: 3.8", | ||
], | ||
"keywords": "KDE, kernel density estimation", | ||
"url": "http://github.com/calvinmccarter/fastkde", | ||
"url": "http://github.com/calvinmccarter/polyexpkde", | ||
"author": "Calvin McCarter", | ||
"author_email": "[email protected]", | ||
"maintainer": "Calvin McCarter", | ||
"maintainer_email": "[email protected]", | ||
"packages": ["fastkde"], | ||
"packages": ["polyexpkde"], | ||
"install_requires": [ | ||
"numba >= 0.48", | ||
"numpy", | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
def test_import_packages(): | ||
"""Test that importing our package works.""" | ||
import fastkde | ||
from fastkde import PolyExpKernelDensity | ||
from fastkde import kernel_density | ||
import polyexpkde | ||
from polyexpkde import PolyExpKernelDensity | ||
from polyexpkde import kernel_density |