Active learning in one line
Keep a model
| Concept | Formal core | Intuition for the next query |
|---|---|---|
| Decision-centric | “If I were given the label of |
| from typing import Optional | |
| import numpy as np | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| import warnings | |
| import statsmodels.formula.api as smf | |
| from statsmodels.tools.sm_exceptions import ( | |
| ConvergenceWarning, |
| import numpy as np | |
| import pandas as pd | |
| import cvxpy as cp | |
| from typing import Sequence, Union | |
| def entropy_balance_ipaw( | |
| df: pd.DataFrame, | |
| *, |
| """ | |
| This example demonstrates that fitting a weighted linear mixed-effects model using lmer(weights = …) | |
| is algebraically equivalent to pre-multiplying the outcome and all predictors (including intercepts) | |
| by the square root of the weights and fitting an unweighted model on the transformed data. | |
| The test validates that this "pre-weight and refit" strategy yields identical fitted values and | |
| is especially useful when packages like clubSandwich prohibit prior weights in robust variance estimation. | |
| Includes realistic longitudinal synthetic data with fixed and random effects, dropout, and continuous covariates. | |
| """ | |
| from typing import List |
Active learning in one line
Keep a model
| Concept | Formal core | Intuition for the next query |
|---|---|---|
| Decision-centric | “If I were given the label of |
| import matplotlib.pyplot as plt | |
| import networkx as nx | |
| from causallearn.utils.KCI.KCI import KCI_CInd, KCI_UInd | |
| from npeet_plus import mi, mi_pvalue | |
| from tqdm import tqdm | |
| from src.causal_discovery.static_causal_discovery import ( | |
| run_causal_discovery, | |
| visualize_causal_graph, | |
| ) |
| #!/usr/bin/env python3 | |
| """ | |
| textrepo — dump a repository into a single text file, optimized for LLM input. | |
| Features | |
| - Always prints a folder tree of the discovered files (after ignores). | |
| - Emits a per-file section for every *text-eligible* file (even if skipped/truncated). | |
| - Respects .gitignore by default (disable with --no-gitignore). | |
| - Supports extra ignore patterns and an additional ignore file (gitignore-ish). | |
| - Detects and omits binary / non-text files from the per-file sections |
| from concurrent.futures import ProcessPoolExecutor | |
| import numpy as np | |
| from scipy.signal import convolve2d | |
| from tqdm import tqdm | |
| nsims = int(1e6) | |
| nevents = int(1e5) | |
| tailast() { | |
| # Get the directory from the argument or use the current directory as default | |
| local dir="${1:-.}" | |
| # Find the most recently modified file in the directory without descending into subdirectories | |
| local latest_file=$(find "$dir" -maxdepth 1 -type f -exec stat --format='%Y %n' {} \; | sort -n | tail -1 | awk '{print $2}') | |
| # Check if a file was found | |
| if [[ -z "$latest_file" ]]; then | |
| echo "No files found in $dir" |
| import math | |
| import torch.optim as optim | |
| import torch | |
| from torch import nn | |
| class MineWrapper(nn.Module): | |
| def __init__(self, stat_model, moving_average_rate=0.1, unbiased=False): | |
| super(MineWrapper, self).__init__() |
| class DistributedIdentity: | |
| """ | |
| Singleton class to hold distributed identity information. | |
| Handles SLURM, torchrun, and local runs. | |
| Looks for the following environment variables: | |
| - RANK | |
| - WORLD_SIZE | |
| - LOCAL_RANK |