A Python library for ergodicity economics and time-average analysis.
Project description
Ergodicity Library
Overview
The Ergodicity Library is a Python-based open-source library focused on the study of stochastic processes, ergodicity, and time-average behaviors. Initially inspired by the work of Ole Peters and Alexander Adamou in Ergodicity Economics, the library extends far beyond economics and can be applied in fields such as biology, physics, finance, and more. It provides tools for simulating and analyzing stochastic processes, with a particular focus on processes with heavy tails, and enables research on non-ergodic dynamics.
Key Features
- Stochastic Process Simulation: Includes a wide variety of stochastic processes, including Brownian motion, Lévy processes, and fractional Brownian motion.
- Ergodicity Research: Tools for studying ergodicity and time-average behavior of stochastic processes.
- Artificial Agents: Evolutionary algorithms and machine learning models for training agents to make decisions under uncertainty.
- Heavy-Tailed Processes: Special focus on processes with heavy-tailed distributions, such as Lévy alpha-stable processes.
- Symbolic Computations: Powerful tools for solving stochastic differential equations (SDEs) both numerically and symbolically.
- Parallel Processing: Support for multiprocessing to handle large-scale simulations efficiently.
- Visualization: Dynamic visualization of stochastic processes, with support for 3D interactive graphs.
Installation
To install the Ergodicity Library, you can clone the repository from GitHub:
git clone https://github.com/Kendiukhov/ergodicity_library.git
cd ergodicity-library
pip install -r requirements.txt
Or you just install it directly from PyPI:
pip install ergodicity-library
The library relies on widely used Python libraries like numpy
, matplotlib
, scipy
, tensorflow
, and keras
.
For some features (mostly related to video generation), you need to install ffmpeg.
On MacOS, firstly install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then install ffmpeg:
brew install ffmpeg
On Ubuntu, install ffmpeg with:
sudo apt-get install ffmpeg
Fedora:
sudo dnf install ffmpeg
Arch Linux:
sudo pacman -S ffmpeg
On Windows, download the ffmpeg executable from the official website and add it to your PATH.
The library will still work without ffmpeg, but some visualization features will be disabled.
Getting Started
Programming Prerequisites
- Basic knowledge of Python
- Familiarity with scientific libraries:
NumPy
,SymPy
,Matplotlib
- Optional:
TensorFlow
andKeras
for machine learning components
Academic Prerequisites
A basic understanding of the following topics is recommended:
- Probability theory and stochastic processes
- Ito calculus and stochastic differential equations (SDEs)
- Statistical estimation and fitting
Example
Here is a simple example to get started with simulating a Brownian motion process:
from ergodicity.process.basic import BrownianMotion
# Create a Brownian motion process
bm = BrownianMotion()
# Simulate the process
realization = bm.simulate(t=10, timestep=0.1 num_instance=1000, plot=True)
Documentation
Extensive documentation, examples, and tutorials are available at the Ergodicity Library website: https://ergodicitylibrary.com.
The documentation is also available on GitHub: https://kendiukhov.github.io/ergodicity_library.
The Pypi page for the library can be found here: https://pypi.org/project/ergodicity/.
Structure
The library is structured into three main modules:
-
Processes: Provides the core stochastic processes such as Brownian motion, Poisson processes, Lévy processes, and custom-defined processes.
- Submodules:
basic.py
: Core stochastic processes.multiplicative.py
: Processes with multiplicative dynamics.with_memory.py
: Stochastic processes with memory.increments.py
: Defines various stochastic differentials.lib.py
: Additional less common processes.constructor.py
: Allows creating new processes without programming.custom_classes.py
: Facilitates creating new process classes.default_values.py
: Contains default process parameters.definitions.py
: Core of the library, containing abstract classes and methods.discrete.py
: Handles discrete stochastic processes.
- Submodules:
-
Tools: Functions for computation, analysis, and symbolic/numerical solutions for stochastic processes.
- Submodules:
compute.py
: Functions for calculating parameters of stochastic processes.evaluate.py
: Evaluates time-series data.fit.py
: Fits data to various distributions.solve.py
: Symbolic solutions for stochastic analysis problems.multiprocessing.py
: Supports multi-core computations.automate.py
: Automates research calls for comparative results.preasymptotics.py
: Analyzes pre-asymptotic behavior of processes.research.py
: Automated research pipelines.partial_sde.py
: Numerical simulations of partial stochastic differential equations.helper.py
: Auxiliary functions for different parts of the tools module.
- Submodules:
-
Agents: Tools to create and train artificial agents using evolutionary algorithms and machine learning models.
- Submodules:
agents.py
: Initializes artificial agents and elementary algorithms for training.agent_pool.py
: Manages ensembles of interacting agents.evaluation.py
: Tool for analyzing agent behavior and utility functions.evolutionary_nn.py
: Implements evolutionary training for agent neural networks.sml.py
: Standard machine learning algorithms for training agents.portfolio.py
: Simulates portfolios of stochastic processes.probability_weighting.py
: Implements probability weighting functions for decision making.
- Submodules:
Additionally, the library contains the following components:
developer_tools
: Tools for developers working on the library.gui
: Placeholder for future graphical user interface implementation.integrations
: Placeholder for integration with other languages and domain-specific libraries.cases.py
: Practical cases demonstrating the library’s functionality.configurations.py
: Global parameters for the library’s behavior.custom_warnings.py
: Custom warnings designed to help users with library-specific issues.
Example Projects
Here are a few example projects you can explore with the Ergodicity Library:
- Simulating Financial Models: Apply the library’s tools to simulate and analyze geometric Brownian motion and other stochastic processes in financial markets.
- Biological Population Dynamics: Use stochastic population models to simulate growth patterns in ecosystems and analyze stability using ergodic theory.
- Training Artificial Agents: Implement machine learning agents that optimize their decision-making strategies under stochastic environments using evolutionary algorithms.
Contributions
The library is in active development, and contributions are welcome. Here’s how you can help:
- Bug Reports & Feedback: If you encounter any bugs or have suggestions for improvements, feel free to report them on the GitHub issues page.
- New Features & Modules: You can help by developing new features, improving existing ones, or expanding the library into new scientific domains like finance, biology, or physics.
- Testing: If you are using the library for your own research, we would greatly appreciate your feedback and testing of its features.
To contribute, fork the repository and submit a pull request with your changes.
Roadmap
Future releases of the Ergodicity Library will include:
- Graphical User Interface (GUI): To enable easier interaction with the library without requiring deep programming knowledge.
- Expanded Machine Learning Support: Improved agent training models with integration of reinforcement learning and other neural network architectures.
- Performance Enhancements: Integration with C and Wolfram languages to optimize large-scale stochastic process simulations.
- New Domain-Specific Modules: Modules for domain-specific analysis in biology, finance, and physics.
License
The Ergodicity Library is open-source and licensed under the MIT License. See the LICENSE
file for more details.
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
Built Distribution
File details
Details for the file ergodicity-0.3.16.tar.gz
.
File metadata
- Download URL: ergodicity-0.3.16.tar.gz
- Upload date:
- Size: 214.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1443c6a042163bee69e4ab69645cc8e595dc5925b03f766a54f3bc1e88101db0 |
|
MD5 | ebeb5211085c58f9c042e1132cad6072 |
|
BLAKE2b-256 | 36dda206eef91846e7b803148f9ed4cc403fb5e9a5a8d92d1937813f4a98824c |
File details
Details for the file ergodicity-0.3.16-py3-none-any.whl
.
File metadata
- Download URL: ergodicity-0.3.16-py3-none-any.whl
- Upload date:
- Size: 226.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45b58c8733bfed72fe8f9f6c259e4ec99964bad18c72fe33f670b417b189041a |
|
MD5 | b920a19e8d1ad9696f5e8524a6b085a3 |
|
BLAKE2b-256 | bb6bbe1fe2e3719027c94de4f726848171fecf681c488a7c1e469810cd54b816 |