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
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.88.tar.gz
(15.6 kB
view details)
Built Distribution
pymlutil-0.0.88-py3-none-any.whl
(21.9 kB
view details)
File details
Details for the file pymlutil-0.0.88.tar.gz
.
File metadata
- Download URL: pymlutil-0.0.88.tar.gz
- Upload date:
- Size: 15.6 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 | f0418d10d86f6127a0ab82327201bebc15e892358ec5927bbad2b2d6c53c970e |
|
MD5 | d9ff48cade4283e27a81b3f16fd4c243 |
|
BLAKE2b-256 | 500e9a60412ed333c0cfaff69f9b9111e35691efcef9b90a9a5f8c30d36d2ac1 |
File details
Details for the file pymlutil-0.0.88-py3-none-any.whl
.
File metadata
- Download URL: pymlutil-0.0.88-py3-none-any.whl
- Upload date:
- Size: 21.9 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 | f2aa4d077ad436538bede99e0d0e5ac39196a5a36e4e443803f7eed746d0f79a |
|
MD5 | eb6302fe6121624fcf1bbbbf2f7a1f4f |
|
BLAKE2b-256 | 37b0cc8067da893cc803b860a410226818f2073dca4fcd4cbdd2d0ecf1f5151d |