You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Endogenous Macrodynamics in Algorithmic Recourse
3
+
subtitle: Research Paper
4
+
---
5
+
6
+
```@meta
7
+
CurrentModule = ConformalPrediction
8
+
```
9
+
10
+
This part of the documentation is specific to the research paper "Endogenous Macrodynamics in Algorithmic Recourse". To allow for reproducibility of the results at the time of publication, there is a specific package environment linked to this part of the documentation that **will not be updated**. It can be activated as follows:
11
+
12
+
```{julia}
13
+
using Pkg; Pkg.activate("docs/src/paper")
14
+
```
15
+
16
+
17
+
The status of this package environment is shown below:
Copy file name to clipboardExpand all lines: docs/src/paper/proof_of_concept.qmd
+47-59Lines changed: 47 additions & 59 deletions
Original file line number
Diff line number
Diff line change
@@ -4,27 +4,38 @@ jupyter: julia-1.7
4
4
---
5
5
6
6
```{julia}
7
-
using Pkg; Pkg.activate("dev")
8
-
```
7
+
#| echo: false
9
8
9
+
# Environment:
10
+
using Pkg; Pkg.activate("docs/src/paper")
10
11
11
-
In this notebook we will use toy data to see how endogenous domain shifts and the resulting model shifts can have implications on the validity and cost of algorithmic recourse.
12
+
# Deps:
13
+
using CounterfactualExplanations
14
+
using Flux
15
+
using LaplaceRedux
16
+
using MLJBase
17
+
using Plots
18
+
using Random
12
19
13
-
```{julia}
14
-
include("dev/utils.jl")
15
-
using AlgorithmicRecourseDynamics
16
-
using CounterfactualExplanations, Flux, Plots, PlotThemes, Random, LaplaceRedux, LinearAlgebra
20
+
# Setup
21
+
Random.seed!(1234)
17
22
theme(:wong)
18
-
output_path = output_dir("poc")
19
-
www_path = www_dir("poc")
23
+
include("docs/src/utils.jl") # some helper functions
24
+
output_path = output_dir("poc") # output directory for artifacts
25
+
www_path = www_dir("poc") # output directory for images
20
26
```
21
27
28
+
To start with, we will look at a proof-of-concept that demonstrates the main observation underlying that paper is framed around. In particular, we will use synthetic data to see how endogenous domain shifts and the resulting model shifts can have implications on the validity and cost of algorithmic recourse.
0 commit comments