Metadata-Version: 2.1
Name: flow-utils
Version: 0.0.1
Summary: deeplearning utils based on OneFlow
Home-page: https://github.com/rentainhe/oneflow-utils.git
Author: Ren Tianhe
Author-email: 596106517@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# oneflow-utils
Deeplearning Utils base on OneFlow

## Pre-requisites
```bash
$ pip install oneflow-utils==0.0.1
```

## Contents
### 1. Cosine / Linear LR Schedule with Warmup
- Source Code: [Cosine LR](https://github.com/rentainhe/oneflow-utils/blob/main/schedulers/cosine_lr.py) / [Linear LR](https://github.com/rentainhe/oneflow-utils/blob/main/schedulers/linear_lr.py)

- Usage
```python
from oneflow-utils import WarmupLinearSchedule, WarmupCosineSchedule
```

