|
| 1 | +\section{Reweighting Procedure} |
| 2 | + |
| 3 | +Our reweighting process optimizes household weights to match administrative targets while determining the relative value of original CPS records versus PUF-derived synthetic records. |
| 4 | + |
| 5 | +\subsection{Loss Matrix Construction} |
| 6 | + |
| 7 | +We construct a matrix of targets including: |
| 8 | + |
| 9 | +\subsubsection{IRS Statistics of Income Targets} |
| 10 | +For each AGI bracket and filing status combination: |
| 11 | +\begin{itemize} |
| 12 | + \item Adjusted gross income totals |
| 13 | + \item Employment income |
| 14 | + \item Business income/losses |
| 15 | + \item Capital gains totals and distributions |
| 16 | + \item Dividend income (qualified and ordinary) |
| 17 | + \item Partnership and S-corporation income/losses |
| 18 | + \item Pension and IRA distributions |
| 19 | + \item Social Security benefits |
| 20 | + \item Interest income |
| 21 | +\end{itemize} |
| 22 | + |
| 23 | +\subsubsection{Census Population Targets} |
| 24 | +Single-year age population projections from age 0 to 85+, ensuring demographic representativeness. |
| 25 | + |
| 26 | +\subsubsection{Program Totals} |
| 27 | +Annual administrative totals from: |
| 28 | +\begin{itemize} |
| 29 | + \item IRS: Income tax revenue, EITC claims and amounts by number of children |
| 30 | + \item Social Security Administration: Benefit payments |
| 31 | + \item USDA: SNAP participation and benefits |
| 32 | + \item DOL: Unemployment compensation |
| 33 | +\end{itemize} |
| 34 | + |
| 35 | +\subsection{Optimization Approach} |
| 36 | + |
| 37 | +We minimize the relative error across all targets using gradient descent with dropout regularization: |
| 38 | + |
| 39 | +\begin{enumerate} |
| 40 | + \item Initialize with original CPS weights |
| 41 | + \item At each iteration: |
| 42 | + \begin{itemize} |
| 43 | + \item Randomly zero out 5\% of weights (dropout) |
| 44 | + \item Compute relative errors between weighted sums and targets |
| 45 | + \item Update weights using Adam optimizer |
| 46 | + \end{itemize} |
| 47 | + \item Continue until convergence or 5,000 iterations |
| 48 | +\end{enumerate} |
| 49 | + |
| 50 | +The core optimization uses PyTorch to minimize: |
| 51 | + |
| 52 | +\[ |
| 53 | +L(w) = \text{mean}\left(\left(\frac{w^T M + 1}{t + 1} - 1\right)^2\right) |
| 54 | +\] |
| 55 | + |
| 56 | +where: |
| 57 | +\begin{itemize} |
| 58 | + \item $w$ are the log-transformed weights |
| 59 | + \item $M$ is the loss matrix of household characteristics |
| 60 | + \item $t$ are the administrative targets |
| 61 | +\end{itemize} |
| 62 | + |
| 63 | +\subsection{Implementation Details} |
| 64 | + |
| 65 | +From `enhanced_cps.py`: |
| 66 | +\begin{itemize} |
| 67 | + \item Learning rate: 0.1 |
| 68 | + \item Dropout rate: 5\% |
| 69 | + \item Optimizer: Adam |
| 70 | + \item Maximum iterations: 5,000 |
| 71 | +\end{itemize} |
| 72 | + |
| 73 | +% TODO: Add specific convergence metrics and typical runtime statistics |
| 74 | + |
| 75 | +\subsection{Balance Between CPS and PUF Records} |
| 76 | + |
| 77 | +The reweighting procedure naturally determines the mix of original CPS and PUF-derived records by: |
| 78 | +\begin{itemize} |
| 79 | + \item Starting with equal initial weights |
| 80 | + \item Allowing the optimization to up-weight records that better match targets |
| 81 | + \item Implicitly favoring PUF-derived records for tax variables |
| 82 | + \item Maintaining CPS records' strength in demographic representation |
| 83 | +\end{itemize} |
| 84 | + |
| 85 | +% TODO: Add statistics on typical final weight distributions between CPS and PUF records |
0 commit comments