An open API service indexing awesome lists of open source software.

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.

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.