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
- cmd(command, check=True, timeout=None): execute subprocess.call prining the execution time and results
metrics
s3
python3 -clone
### torch_util
### version
### workflow
[Packaging Python Projects](https://www.freecodecamp.org/news/build-your-first-python-package/)
[How to Publish an Open-Source Python Package to PyPI](https://realpython.com/pypi-publish-python-package/)
- Install twine:
```cmd
pip3 install twine
```
- Build whl:
```cmd
py setup.py sdist bdist_wheel
```
- Upload package to pipy
```cmd
twine upload dist/*
```
[pymlutil](https://pypi.org/project/pymlutil)
- Load package into project
```cmd
pip3 install --upgrade pymlutil
```
- Include pymlutil into project
```cmd
from pymlutil import *
Notes
Packaging and Distributing Python Projects Package Discovery
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.1.9.tar.gz
(18.1 kB
view details)
Built Distribution
pymlutil-0.1.9-py3-none-any.whl
(25.6 kB
view details)
File details
Details for the file pymlutil-0.1.9.tar.gz
.
File metadata
- Download URL: pymlutil-0.1.9.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.56.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c5bb214f0e5c6f7babbbcaaa16ef5c2c742cf12b0e3fcc18fac8add86158994 |
|
MD5 | 1cd47eed0dc32863d86a426c67bf925b |
|
BLAKE2b-256 | 6578a5c23cd44572679b4a39190a3ca020981e377e68a96759acb3a2283b85f7 |
File details
Details for the file pymlutil-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: pymlutil-0.1.9-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.56.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7feea3a38c616f10d02be83cfe7abf9f77580c9e8020ff0ecc2970600fd6990b |
|
MD5 | 7ff4f517f7f948dda4cd01599e10fbbf |
|
BLAKE2b-256 | 604e9d3d46acf9520c630d8787e8d009dc60149ec129c71f3b2e8538cfb0cdcb |