Skip to main content

implementation of scheduling function utils

Project description

Scheduler Utils

Implements some scheduling functions to decay or ramp values across timestamps.

Install with: pip install scheduling_utils

To initialize and use for example a cosine scheduler, do the following:

from schedulers import CosineScheduler

start_step = 0
stop_step = 10

start_value = 5
stop_value = 20

scheduler = CosineScheduler(start_step, stop_step, start_value, stop_value)

# get values corresponding to step
for step in range(10):
    value = scheduler.step(step)

Available Schedulers at current version:

  • Linear linear-ramp linear-decay
  • Cosine cosine-ramp cosine-decay
  • LinearCosine linear-cosine

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scheduling_utils-0.1.2.tar.gz (80.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page