-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
130 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,6 @@ errors | |
results | ||
d2v* | ||
!d2v*.py | ||
.venv/ | ||
.venv/ | ||
dist/ | ||
wsmf.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,9 @@ export PYTHONPATH=`pwd` | |
### Loading data | ||
``` | ||
python bin/load_data.py | ||
``` | ||
|
||
### Release | ||
``` | ||
python -m build | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 0 additions & 135 deletions
135
bin/metatrain_preparation/select_hp_for_portfolio_half_random.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**.parquet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[ | ||
"Amazon_employee_access", | ||
"DRSongsLyrics", | ||
"StackOverflow-polarity", | ||
"StackOverflow-polarity-test", | ||
"SyskillWebert-Bands", | ||
"SyskillWebert-BioMedical", | ||
"SyskillWebert-Sheep", | ||
"Traffic_violations", | ||
"breastTumor", | ||
"credit-g", | ||
"kick", | ||
"lymph", | ||
"okcupid-stem", | ||
"online_shoppers", | ||
"primary-tumor", | ||
"usp05-ft" | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["wsmf"] | ||
|
||
[project] | ||
name = "wsmf" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Antoni Zajko", email="antoni.zajko.1@gmail.com" } | ||
] | ||
description = "Package with encoder-based approaches to warm-starting Bayesian Hyperparameter Optimization." | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
dependencies = [ | ||
"dataset2vec>=1.0.0", | ||
"openml>=0.14.2", | ||
"loguru>=0.7.2", | ||
"optuna>=3.6.1", | ||
"xgboost>=2.0.3", | ||
"scikit-learn>=1.4.2", | ||
"pytest>=8.2.1", | ||
"pymfe>=0.4.3", | ||
"seaborn>=0.13.2", | ||
"tensorboard>=2.17.0", | ||
"numpy>=1.26.4", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/azoz01/wsmf" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,6 @@ numpy==1.26.4 | |
isort==5.13.2 | ||
black==24.8.0 | ||
flake8==7.1.0 | ||
mypy==1.11.1 | ||
mypy==1.11.1 | ||
twine==5.0.0 | ||
build==1.2.1 |
Oops, something went wrong.