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.68.tar.gz
(14.2 kB
view details)
Built Distribution
pymlutil-0.0.68-py3-none-any.whl
(19.6 kB
view details)
File details
Details for the file pymlutil-0.0.68.tar.gz
.
File metadata
- Download URL: pymlutil-0.0.68.tar.gz
- Upload date:
- Size: 14.2 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 | 2567d22c89e405ca9cd218a7313fdc6570020455c2b76c17d84d503ea82cc5d7 |
|
MD5 | beeb4cd8b8cb5dc97ee40fcfb1e5414b |
|
BLAKE2b-256 | f28a9c82f9269317576298377b12cb183deb5946fd30408ddd02acfa4c007485 |
File details
Details for the file pymlutil-0.0.68-py3-none-any.whl
.
File metadata
- Download URL: pymlutil-0.0.68-py3-none-any.whl
- Upload date:
- Size: 19.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 | 5c1416b79acaf9f1ff6508744e32746d1de02955db1c39b7c2391dc158499a8f |
|
MD5 | cd3bb9ea34e2cd2822b904b6004f4b67 |
|
BLAKE2b-256 | 067e406d1292cf582e3c4939198ae0dd220df9e757574018237d71d8029614a9 |