HARK
HARK copied to clipboard
Heterogenous Agents Resources & toolKit
I think that one of the main advantages of the `Parameters` class that @alanlujan91 has created is that, with its `__get_item__` method, we can do away with a lot of...
We should only expose publicly the `seed` variable, which internally sets the RNG. The user should never have to create or pass an RNG object, and should never have to...
AgentTypeMonteCarloSimulation current has some hard-coded logic about mortality and birth. https://github.com/econ-ark/HARK/blob/master/HARK/simulation/monte_carlo.py#L350-L394 One of the recent language research outcomes (RLRO) was a proposal for how mortality/birth/aging information can be encoded as...
Trying to solve SequentialPortfolioConsumerType with the following parameters changed from the default: ``` CRRA=6.0, DiscFac=0.9, RiskyAvg=1.08, RiskyStd=0.20, PermShkStd=[0.1], PermGroFac=[0.00], UnempPrb=0.01 ``` ``` agent = SequentialPortfolioConsumerType(**agent_parameters) agent.solve() ``` Results in this...
Let 'new python model format' (NPMF) be the emerging Python API exemplified [here](https://github.com/econ-ark/HARK/tree/master/HARK/models) and used in the generic Monte Carlo simulator. Let 'recent language research outcomes' (RLRO) be the rough...
I am a big fan of what we have managed to do with the tools that represent and manipulate discrete distributions. The `distr_of_func` and `expect` functions are intuitive, expressive and...
for consumption and durables Please ensure your pull request adheres to the following guidelines: - [ ] Tests for new functionality/models or Tests to reproduce the bug-fix in code. -...
- Capitalize ARK in Econ-ARK in two instances in the beginning of the page - We planned on recommending either PyCharm or VSCode as part of our new installation guide...
## Quick Start Guide ### Installing HARK #### Installing HARK with pip - The code on activating the `virtualenv` does not apply to Windows, so it might be better simply...
We now have several PRs that address parts of the HARK 1.0 refactoring. It's gotten to the point where further progress is blocked because we don't have the model information...