Skip to content

Commit

Permalink
first implementation of the normalization min_max and z_score
Browse files Browse the repository at this point in the history
  • Loading branch information
qnater committed Sep 18, 2024
1 parent d7ee39c commit 23e168b
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 19 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pytest_10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pytest - ImputeGAP - 10

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
lfs: true

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install mypy
pip install pytest
- name: Run pytest
run: python -m pytest ./tests/
28 changes: 28 additions & 0 deletions .github/workflows/pytest_12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pytest - ImputeGAP - 10

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
lfs: true

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install mypy
pip install pytest
- name: Run pytest
run: python -m pytest ./tests/
25 changes: 6 additions & 19 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 23e168b

Please sign in to comment.