Python Machine Learning Utilities
Project description
pymlutil
Python Machine Learning utilities:
functions
GaussianBasis
Computes a unit height gaussian bell curve function
$ GaussianBasis(x, zero, sigma) = e^{-\frac{(x-zero)^2}{2*sigma^2}} $ \
- x : function input
- zero : location of the peak center
- sigma: curve with or standard deviation
def GaussianBasis(x, zero=0.0, sigma=0.33)
Example:
x = np.arange(-2.0, 2.0, 0.01)
y = GaussianBasis(torch.tensor(x))
plt.plot(x, y)
plt.show()
imutial
jsonutil
metrics
s3
torch_util
version
workflow
Packaging Python Projects How to Publish an Open-Source Python Package to PyPI
-
Install twine:
pip3 install twine
-
Build whl:
py setup.py sdist bdist_wheel
-
Upload package to pipy
twine upload dist/*
-
Load package into project
pip3 install --upgrade pymlutil
-
Include pymlutil into project
from pymlutil import *
Notes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pymlutil-0.0.76.tar.gz
(14.7 kB
view details)
Built Distribution
pymlutil-0.0.76-py3-none-any.whl
(20.6 kB
view details)
File details
Details for the file pymlutil-0.0.76.tar.gz
.
File metadata
- Download URL: pymlutil-0.0.76.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.62.2 importlib-metadata/4.8.2 keyring/18.0.1 rfc3986/2.0.0 colorama/0.4.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a0844af2ce8a1560c5c1cfb3192bf750614f632792b51569687de102e21fdd0 |
|
MD5 | 58280b55819b4e73f07c0f8772786327 |
|
BLAKE2b-256 | 62c33931d683809cee8218e95810d0c8a78292e64287118eb1c8d499eb3de93d |
File details
Details for the file pymlutil-0.0.76-py3-none-any.whl
.
File metadata
- Download URL: pymlutil-0.0.76-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.62.2 importlib-metadata/4.8.2 keyring/18.0.1 rfc3986/2.0.0 colorama/0.4.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06fe956e942cb68e846b36d2a11d7fcc48d99fd2f3a184b1c387a30f058bde21 |
|
MD5 | 297f1517c9c47ac800850affde92c2d3 |
|
BLAKE2b-256 | 580175b472d0e5fb9d5ef6f204b282fd27bf5e68b6b7a007b7189d1b78c24b48 |