Structure, sample, and savor hyperparameter searches
Project description
pyrameter
pyrameter
is a library for designing hierarchical parameter searches with
continuous and discrete domains, and then search those spaces.
Installation
pip install pyrameter
Dependencies
numpy
scipy
scikit-learn
pymongo
dill
six
A Short Example
import math
import pyrameter
# Minimize the sin function
def objective(params):
return math.sin(params['x'])
# Uniformly sample values over [0, pi]
space = {
'x': pyrameter.uniform(0, math.pi),
}
# Set up the search with an experiment key, the domains to search, and
# random search to generate values.
opt = pyrameter.FMin('sin_exp', space, 'random')
# Try 1000 values of x and store the result.
for i in range(1000):
trial = opt.generate()
trial.objective = objective(trial.hyperparameters)
# Print the x that minimized sin
print(opt.optimum)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyrameter-0.3.4.tar.gz
(33.3 kB
view hashes)
Built Distribution
pyrameter-0.3.4-py3-none-any.whl
(49.9 kB
view hashes)
Close
Hashes for pyrameter-0.3.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db479123124b1c27f0d005efab7c369e693959fc115ee56c1ebe58aca6df5211 |
|
MD5 | 668cb0c3cd3bef651a1b281caaf05849 |
|
BLAKE2b-256 | 5168464b86d5ea26fe453f4dee9a6b45293b5818a1b379ef16d88c4e0d661e92 |