Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yell/python-utils
:recycle: A collection of reusable code for python projects
https://github.com/yell/python-utils
infrastructure machine-learning machinelearning pytorch tensorflow utilities utility-library utils utils-library
Last synced: 16 days ago
JSON representation
:recycle: A collection of reusable code for python projects
- Host: GitHub
- URL: https://github.com/yell/python-utils
- Owner: yell
- License: mit
- Created: 2018-11-27T15:15:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-26T17:06:14.000Z (almost 5 years ago)
- Last Synced: 2024-10-30T02:37:48.946Z (2 months ago)
- Topics: infrastructure, machine-learning, machinelearning, pytorch, tensorflow, utilities, utility-library, utils, utils-library
- Language: Python
- Homepage:
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-utils
This repository contains:
* [`TensorFlowModel`](utils/tf_model/tf_model.py) (class encapsulating basic TF infrastructure for executing computation, saving/restoring, and visualization)
* [TensorFlow utils](utils/tf_utils/)
* [PyTorch utils](utils/torch_utils/)
* [other python utils](utils/)## How to install
```bash
git clone https://github.com/monsta-hd/utils.git
cd utils
pip install -r requirements.txt
```
After installation, tests can be run with:
```bash
make test
```