Value Scheduler based on Progress
Project description
line-chain

Value Scheduler based on Progress.
Installation
Need Python 3.6+.
pip install line-chain
Usage
import line_chain
line_chain = line_chain.factory(config=[
{
'mode': 'linear',
'ratio': 0.01,
'start': 0.2,
'target': 0.8
}, {
'mode': 'cosine',
'ratio': 1.0,
'target': 0.0
}
])
print(line_chain)
#> LineChain (
#> 1.0%, linear from 0.2 to 0.8,
#> 100.0%, cosine from 0.8 to 0.0,
#> )
# plot it!
import numpy as np
import pylab as pl
x = np.linspace(0, 1, 1000)
y = np.vectorize(line_chain.at)(x)
pl.plot(x, y)
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
line-chain-0.0.3.tar.gz
(4.2 kB
view details)
File details
Details for the file line-chain-0.0.3.tar.gz
.
File metadata
- Download URL: line-chain-0.0.3.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
447563d1dcb33a89558b93b804c4c7dead0cf689c382e3b7b1b3849693456e9a
|
|
MD5 |
81ec87f2d58674346ba59144ad115846
|
|
BLAKE2b-256 |
a1b08b9acee174736df7aea33468ec4e90e19ecd98e1c5dce202ef63b65f2842
|