A library for computing samplings in arbitrary dimensions
Project description
A Python library for generating space-filling sample sets of low to moderate dimensional data from domains including:
Euclidean space
Grassmannian atlas
Surface of an n-Sphere
A Collection of Space-filling Sampling Designs for Arbitrary Dimensions. The API is structured such that the top level packages represent the shape of the domain you are interested in:
ball - The n-dimensional solid unit ball
directional - The space of unit length directions in n-dimensional space. You can also consider this a sampling of the boundary of the n-dimensional unit ball.
hypercube - The n-dimensional solid unit hypercube \(x \\in [0,1]^n\).
subspace - Sampling a n-1-dimensional subspace orthogonal to a unit vector or sampling the Grassmanian Atlas of projections from a dimension n to a lower dimension m.
shape - a collection of (n-1)-manifold and non-manifold shapes embedded in an n dimensional space. For now these must all be sampled using a uniform distribution.
Within each module is a list of ways to fill the space of the samples. Note, that not all of the methods listed below are applicable to the modules listed above. They include:
Uniform - a random, uniform distribution of points (available for ball, directional, hypercube, subspace, and shape)
Normal - a Gaussian distribution of points (available for hypercube)
Multimodal - a mixture of Gaussian distributions of points (available for hypercube)
CVT - an approximate centroidal Voronoi tessellation of the points constrained to the given space (available for hypercube and directional)
LHS - a Latin hypercube sampling design of points constrained to the space (available for hypercube)
The python CVT code is adapted from a C++ implementation provided by Carlos Correa. The Grassmannian sampler is adapted from code from Shusen Liu.
Installation
A preliminary version is available on PyPI:
pip install samply
Otherwise, you can download the repository for the most cutting edge additions:
git clone https://github.com/maljovec/samply.git cd samply python setup.py [build|develop|install]
Usage
You can use the library from python such as the examples below:
import samply direction_samples = samply.directional.uniform(10000, 2) ball_samples = samply.ball.uniform(10000, 2) scvt_samples = samply.directional.cvt(10000, 2) cvt_samples = samply.hypercube.cvt(10000, 2) projection_samples = samply.subspace.grassmannian(10000, 3, 2)
The *samples variables will be NxD matrices where N is the number of samples requested and D is the dimensionality of the sampler or the requested dimensionality.
Testing
The test suite can be run through the setup script:
python setup.py test
Example
To test drive a subset of the different samplers in action, check out this little web app hosted on the Google Cloud Platform which is using samply under the covers. Note, the CVT is still rather inefficient for larger sample sizes.
What’s Next
- Forthcoming:
Improved documentation
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
Built Distribution
File details
Details for the file samply-0.1.2.tar.gz
.
File metadata
- Download URL: samply-0.1.2.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 912d51eea11f308434e91f53fa72a9048ac8f8596a7c5c06b0ce3569504f3229 |
|
MD5 | 1afb4a3dd357231b1ddd7b2fc372bbf7 |
|
BLAKE2b-256 | 34c38278eb2f17ff3363b37839c59be6dd0af7737dae2a5291aabfe238d6ac85 |
File details
Details for the file samply-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: samply-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c305e690880e71b88cb600f9fdc8914c26008de0647c732161a676ea9e8532cb |
|
MD5 | 825edfb4ec0efdf0d4f8f3c96dc8ff98 |
|
BLAKE2b-256 | 417752f30e54e9e6768d92d23b8d849bb1b739bc641dc999cd6f26af7372bd4d |