https://github.com/xalpharax/tensorflowtools
Functions and snippets for deep learning in tensorflow, but most can be applied in pytorch too.
https://github.com/xalpharax/tensorflowtools
deep-learning python tensorflow
Last synced: 2 months ago
JSON representation
Functions and snippets for deep learning in tensorflow, but most can be applied in pytorch too.
- Host: GitHub
- URL: https://github.com/xalpharax/tensorflowtools
- Owner: xAlpharax
- License: mit
- Created: 2019-11-15T20:49:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T13:45:52.000Z (over 5 years ago)
- Last Synced: 2025-04-02T23:31:56.043Z (over 1 year ago)
- Topics: deep-learning, python, tensorflow
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TensorFlowTools
Tools that enable the use of shortcuts while experimenting and implementing ML Research Papers in code, but also useful to mess around. Just code I want to save and use later on, nothing too crazy.
## Installation
```bash
#cloning the repo
git clone https://github.com/xAlpharax/TensorFlowTools
#install dependencies
pip3 install -qq -r requirements.txt
```
## Usage
```python
import tensormanipulation
print(tensormanipulation.normalization([1,2,3,4,5,6,7,8,9]))
# [0.0, 0.125, 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1.0]
```
## Contributing
In case someone would like this, pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.