Skip to content

Commit cb370b8

Browse files
authored
Add regression test data (#7)
1 parent d60ab91 commit cb370b8

File tree

5 files changed

+89
-5
lines changed

5 files changed

+89
-5
lines changed

.envs/testenv.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ dependencies:
3030
- pydata-sphinx-theme>=0.3.0
3131
- pip:
3232
- -e ../
33+
- git+https://github.com/opensourceeconomics/lcm.git@simulation

README.md

+31-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,37 @@
1-
# Developer Repository: Life Cycle Models
1+
# LCM Development Repository
22

33
[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
44
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/OpenSourceEconomics/lcm-dev/main.svg)](https://results.pre-commit.ci/latest/github/OpenSourceEconomics/lcm-dev/main)
55
[![image](https://codecov.io/gh/OpenSourceEconomics/lcm-dev/branch/main/graph/badge.svg)](https://codecov.io/gh/OpenSourceEconomics/lcm-dev)
66

77
This repository aims to facilitate the development of the package
8-
[lcm](https://github.com/OpenSourceEconomics/lcm). We do so by trying to increase the
9-
reproducibility of insights that led to changes in `lcm` and by providing developer
10-
documentation, designed to explain the inner workings of the `lcm` code base.
8+
[lcm](https://github.com/OpenSourceEconomics/lcm). In particular, here we
9+
10+
- Generate data that is used in the testing process of `lcm`
11+
- Publish the developer documentation, which is designed to explain the inner workings
12+
of the `lcm` code base
13+
- Create graphical comparisons between `lcm` and analytical solutions
14+
15+
## Getting Started
16+
17+
Get started by installing the conda environment. The conda environment will contain a
18+
local installation of `lcm`. Therefore, we require the following directory structure:
19+
20+
```console
21+
parent_folder
22+
|-lcm-dev
23+
|-lcm
24+
```
25+
26+
Then you can install the environment using
27+
28+
```console
29+
cd /path/to/lcm-dev
30+
mamba env create
31+
```
32+
33+
and generate all data and figures by running
34+
35+
```console
36+
pytask
37+
```

codecov.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ coverage:
1515
target: 10%
1616
ignore:
1717
- setup.py
18-
- tests/**/*
18+
- '**/__init__.py'
19+
- '**/task_*.py'
20+
- tests

environment.yml

+1
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ dependencies:
3232
- pytest-xdist
3333
- pip:
3434
- -e .
35+
- -e ../lcm

src/lcm_dev/task_regression_test.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
"""Save LCM solution and simulation output for regression testing.
2+
3+
This task needs to run again when the example model `PHELPS_DEATON` changes.
4+
5+
"""
6+
import json
7+
8+
import jax.numpy as jnp
9+
import pytask
10+
from lcm.entry_point import get_lcm_function
11+
from lcm.example_models import PHELPS_DEATON
12+
from pybaum import tree_map
13+
14+
from lcm_dev.config import BLD
15+
16+
17+
@pytask.mark.produces(BLD.joinpath("regression_tests", "solution_and_simulation.json"))
18+
def task_save_lcm_output(produces):
19+
model = {**PHELPS_DEATON, "n_periods": 5}
20+
21+
solve_model, _ = get_lcm_function(model=model, targets="solve")
22+
simulate_model, _ = get_lcm_function(model=model, targets="simulate")
23+
24+
params = {
25+
"beta": 1.0,
26+
"utility": {"delta": 1.0},
27+
"next_wealth": {
28+
"interest_rate": 0.05,
29+
"wage": 1.0,
30+
},
31+
}
32+
33+
solution = solve_model(params)
34+
35+
simulation = simulate_model(
36+
params,
37+
vf_arr_list=solution,
38+
initial_states={
39+
"wealth": jnp.array([1.0, 20, 40, 70]),
40+
},
41+
)
42+
43+
# Convert output to JSON serializable format
44+
solution = [sol.tolist() for sol in solution]
45+
simulation = tree_map(lambda x: x.tolist(), simulation)
46+
47+
out = {
48+
"solution": solution,
49+
"simulation": simulation,
50+
}
51+
52+
with produces.open("w") as file:
53+
file.write(json.dumps(out, indent=4))

0 commit comments

Comments
 (0)