Skip to content

Commit

Permalink
pump version
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Almeida committed Mar 16, 2022
1 parent c453e3e commit e261c11
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 17 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ A powerful tensorflow toolkit for creating/training complex deep learning models

This toolkit is currently under development and aims to focus on biomedical tasks, although it can also also be used in other domains.

### Installation

```
pip install polus
```

### Documentation

Still in work, but some of it can be already consulted here: https://bioinformatics-ua.github.io/polus/
Expand Down
6 changes: 5 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Version 0.1.9: (master)
Version 0.2.0: (master)



Version 0.1.9:

Refactor of the validation callback, adding more deafults mode of operation

Expand Down
30 changes: 15 additions & 15 deletions polus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@
'''

__version__="0.1.8"
__version__="0.1.9"

# add main lib sub packages
import polus.callbacks
import polus.core
import polus.data
import polus.layers
import polus.losses
import polus.metrics
import polus.models
import polus.schedulers
import polus.training
import polus.utils
import polus.hpo
import polus.ir
import polus.ner
import polus.experimental
#import polus.callbacks
#import polus.core
#import polus.data
#import polus.layers
#import polus.losses
#import polus.metrics
#import polus.models
#import polus.schedulers
#import polus.training
#import polus.utils#
#import polus.hpo
#import polus.ir
#import polus.ner
#import polus.experimental
2 changes: 1 addition & 1 deletion polus_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ pip install -r requirements.txt

python setup.py bdist_wheel

pip install dist/polus-0.1.8-py3-none-any.whl
pip install dist/polus-0.1.9-py3-none-any.whl
cd -

0 comments on commit e261c11

Please sign in to comment.