FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
hyperopt/pyproject.toml at master · hyperopt/hyperopt · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
hyperopt
/
hyperopt
Public
Notifications
You must be signed in to change notification settings
Fork
1.1k
Star
7.6k
Code
Issues
6
Pull requests
3
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
hyperopt
/
pyproject.toml
Copy path
More file actions
More file actions
Latest commit
History
History
History
106 lines (96 loc) · 2.82 KB
Breadcrumbs
hyperopt
/
pyproject.toml
Copy path
File metadata and controls
106 lines (96 loc) · 2.82 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[
build-system
]
requires
= [
"
hatchling
"
,
"
hatch-vcs
"
]
build-backend
=
"
hatchling.build
"
[
project
]
license
=
"
BSD-3-Clause
"
name
=
"
hyperopt
"
dynamic
= [
"
version
"
]
description
=
"
Distributed Asynchronous Hyperparameter Optimization
"
readme
=
"
README.md
"
authors
= [{
name
=
"
James Bergstra
"
,
email
=
"
james.bergstra@gmail.com
"
}]
keywords
= [
"
Bayesian optimization
"
,
"
hyperparameter
"
,
"
model selection
"
]
classifiers
= [
"
Development Status :: 3 - Alpha
"
,
"
Intended Audience :: Education
"
,
"
Intended Audience :: Science/Research
"
,
"
Intended Audience :: Developers
"
,
"
Environment :: Console
"
,
"
Operating System :: MacOS :: MacOS X
"
,
"
Operating System :: Microsoft :: Windows
"
,
"
Operating System :: POSIX
"
,
"
Operating System :: Unix
"
,
"
Programming Language :: Python
"
,
"
Programming Language :: Python :: 3
"
,
"
Programming Language :: Python :: 3 :: Only
"
,
"
Programming Language :: Python :: 3.8
"
,
"
Programming Language :: Python :: 3.9
"
,
"
Programming Language :: Python :: 3.10
"
,
"
Programming Language :: Python :: 3.11
"
,
"
Programming Language :: Python :: 3.12
"
,
"
Topic :: Scientific/Engineering
"
,
"
Topic :: Software Development
"
,
]
requires-python
=
"
>=3.10
"
dependencies
= [
"
numpy>=1.17
"
,
"
scipy>=1.5.0
"
,
"
networkx>=2.2
"
,
"
tqdm
"
,
"
cloudpickle
"
,
"
importlib-resources>=1.3; python_version < '3.9'
"
,
]
[
project
.
optional-dependencies
]
SparkTrials
= [
"
pyspark
"
,
"
py4j
"
]
MongoTrials
= [
"
pymongo>=4.0.0
"
]
ATPE
= [
"
lightgbm
"
,
"
scikit-learn
"
]
[
dependency-groups
]
testing
= [
"
pytest
"
,
"
hyperopt[SparkTrials,MongoTrials,ATPE]
"
#
install witl all deps when testing
]
lint
= [
"
mypy
"
,
]
dev
= [
{
include-group
=
"
testing
"
},
{
include-group
=
"
lint
"
},
"
pre-commit
"
,
"
nox
"
,
"
pyyaml
"
,
]
[
project
.
urls
]
Homepage
=
"
https://hyperopt.github.io/hyperopt
"
Source
=
"
https://github.com/hyperopt/hyperopt
"
[
project
.
scripts
]
hyperopt-mongo-worker
=
"
hyperopt.mongoexp:main
"
[
tool
.
hatch
.
version
]
source
=
"
vcs
"
raw-options
= {
version_scheme
=
"
no-guess-dev
"
}
[
tool
.
ruff
]
line-length
=
88
[
tool
.
ruff
.
lint
]
select
= [
"
I
"
,
#
isort
"
UP
"
,
#
pyupgrade
"
F401
"
,
#
unused-imports autoremove
]
ignore
= [
"
UP031
"
,
#
printf-style formatting — large existing codebase, not enforced
]
[
tool
.
ruff
.
lint
.
per-file-ignores
]
#
Re-export modules: imports are intentionally exposed to consumers
"hyperopt/__init__.py"
= [
"
F401
"
]
"hyperopt/hp.py"
= [
"
F401
"
]
"hyperopt/pyll/__init__.py"
= [
"
F401
"
]
[
tool
.
pytest
.
ini_options
]
norecursedirs
= [
"
dist
"
,
"
build
"
,
"
.venv
"
,
"
.nox
"
,
]
markers
= [
"
slow: mark test as slow (scipy internal mark, imported via test_rdists)
"
,
"
xslow: mark test as extremely slow (scipy internal mark, imported via test_rdists)
"
,
"
thread_unsafe: mark test as not thread-safe (scipy internal mark, imported via test_rdists)
"
,
]
Back
|
FazBrowse Home
|
New Git URL