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.12.tar.gz
(22.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pymlutil-0.1.12-py3-none-any.whl
(25.7 kB
view details)
File details
Details for the file pymlutil-0.1.12.tar.gz.
File metadata
- Download URL: pymlutil-0.1.12.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.26.0 setuptools/59.5.0 requests-toolbelt/0.8.0 tqdm/4.56.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f03c950cf022edde0dfff8788a2a8f499f618454806b237533d54daa383f6767
|
|
| MD5 |
cbd4404e73daa9d1304cdeda627d62c9
|
|
| BLAKE2b-256 |
6c7619cdde3dc5e3d4439ad423463abe6fcd576b5e5412a65f7c3ba395edac1a
|
File details
Details for the file pymlutil-0.1.12-py3-none-any.whl.
File metadata
- Download URL: pymlutil-0.1.12-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.26.0 setuptools/59.5.0 requests-toolbelt/0.8.0 tqdm/4.56.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b334b4fcc076baa93db0bac9a254c0fdf6b3c00526ed2218231f764e164399ba
|
|
| MD5 |
2a5ebd695e16cf6de2cb4a6dfbd5ba67
|
|
| BLAKE2b-256 |
7074d38a67faff989b2c45e3324202c17d9da3b9953cbe4d4c3c846c5921831d
|