Skip to content

Commit d7e292b

Browse files
authored
Merge pull request #11 from maxmekiska/development
added batch_size, tensor board support for evaluation and ci updates
2 parents 5893d40 + 4686948 commit d7e292b

22 files changed

+453
-1443
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
- name: Install tox and any other packages
2020
run: pip install tox
2121
- name: Run tox
22-
run: tox -e py
22+
run: tox -e py

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ share/python-wheels/
2222
*.egg
2323
.tox
2424
env/
25-
.coverage
25+
.coverage

.pre-commit-config.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.5.0
4+
hooks:
5+
- id: check-yaml
6+
- id: detect-private-key
7+
- id: end-of-file-fixer
8+
- id: trailing-whitespace

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ activation function type
8989
- removed encoder-decoder architectures
9090
- improved layer configuration via dictionary input
9191
- split data argument into target and feature numpy arrays
92-
92+
9393
### 2.0.1
9494

95-
- fix: removed dead pandas imports
95+
- fix: removed dead pandas imports
9696
- chore: added tensorflow as base requirement
97-
97+
9898
### 2.1.0
9999

100100
- feat!: removed data preparation out of predictor class, sub_seq, steps_past, steps_future need now to be defined in each model method
@@ -107,4 +107,12 @@ activation function type
107107
- chore!: removed python 3.8 support to accomodate tensorflow and keras dependiencies
108108
- chore: increased major to 3.0.0 to align with keras major
109109
- feat: added evaluate_model method to test model performance on test data
110-
- refactor!: removed validation split from `fit_model`. Control validation and test split via evaluation_split and validation_split paramters in class variables
110+
- refactor!: removed validation split from `fit_model`. Control validation and test split via evaluation_split and validation_split paramters in class variables
111+
112+
### 3.1.0
113+
114+
- feat: added optional `batch_size` paramter to `fit_model`
115+
- feat: added Tensor Board to `evaluate_model`
116+
- refactor!: train, test, validation split default change
117+
- chore: added pre-commit checks
118+
- refactor: added, improved typing

0 commit comments

Comments
 (0)