Skip to content

under-the-hood: count still-labeled posts, not cleared ones, in the report - #105

Open
Pitchfork-and-Torch wants to merge 1 commit into
xai-org:mainfrom
Pitchfork-and-Torch:cursor/uth-net-carried-upstream-f4fa
Open

under-the-hood: count still-labeled posts, not cleared ones, in the report#105
Pitchfork-and-Torch wants to merge 1 commit into
xai-org:mainfrom
Pitchfork-and-Torch:cursor/uth-net-carried-upstream-f4fa

Conversation

@Pitchfork-and-Torch

Copy link
Copy Markdown

Problem

The daily Under the Hood post-label job writes carried (posts that received the label in the observation window) and removed (how many of those were later taken off or expired). The monthly aggregate keeps both. The public report summed only carried and published that as posts / percentageOfPosts.

A post that was labeled and later cleared still counted. The label copy next to that number is present tense ("Post hidden from recommendations to non-followers"). Readers were told more of their posts were still limited than still carried the label.

removed is computed, written to daily parquet, copied into the monthly aggregate, and was then ignored by the only user-facing reader.

Change

sumCarried now reports max(0, carried - removed) per day. Missing removed is treated as 0. Daily and monthly writers are unchanged; existing month rows already have both fields.

Why it matters

Under the Hood is the public account of which labels limited a person's posts. Overstating the still-labeled count makes reach look more restricted than the stored data says, and it hides that a label expired or was taken off.

Fork PR: Pitchfork-and-Torch#9

…eport

Daily post-label rows store carried (posts that received the label in
the observation window) and removed (how many of those were later taken
off or expired). The monthly aggregate keeps both. The public Under the
Hood report summed only carried, so a post that was labeled and then
cleared still counted toward posts and percentageOfPosts.

The label copy is present tense ("Post hidden from recommendations to
non-followers"). Subtract removed, floored at zero, so the report shows
posts that still carry the label.

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Jon Bailey <Pitchfork-and-Torch@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants