Skip to content

Commit

Permalink
HISEL - Version 0.3.0 with feature-selection interface (#33)
Browse files Browse the repository at this point in the history
* HISEL - Version 0.3.0 with feature-selection interface

* Remove --with test flag from github workflow
  • Loading branch information
claudio-tw authored May 22, 2023
1 parent 963a39c commit 0c4201a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
python3 -m pip install poetry
python3 -m pip install pytest
poetry lock
poetry install --with test
poetry install
- name: Run hisel tests
run: |
Expand Down
Binary file removed dist/hisel-0.1.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/hisel-0.2.0-py3-none-any.whl
Binary file not shown.
Binary file added dist/hisel-0.3.0-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion hisel/feature_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class SearchParameters(Parameters):
class HSICLassoParameters(Parameters):
mi_threshold: float = .0001
hsic_threshold: float = .01
batch_size = 5000
batch_size: int = 5000
minibatch_size: int = 200
number_of_epochs: int = 4
use_preselection: bool = True
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hisel"
version = "0.2.1"
version = "0.3.0"
description = ""
authors = ["claudio <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0c4201a

Please sign in to comment.