Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add relaion2b dataset opt-out results #3059

Merged
merged 2 commits into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions services/api/src/api/routes/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ class OptInOutUrlsCountResponse(TypedDict):

# TODO: remove once full scan is implemented for spawning urls scan
HARD_CODED_OPT_IN_OUT_URLS = {
"laion/laion2B-en": OptInOutUrlsCountResponse(
"laion/relaion2B-en-research-safe": OptInOutUrlsCountResponse(
urls_columns=["URL"],
num_opt_in_urls=5,
num_opt_out_urls=42785281,
num_urls=2322161807,
num_scanned_rows=0, # It is unknown but leaving with 0 for now since UI validates non null
num_opt_in_urls=16,
num_opt_out_urls=43913814,
num_urls=2097653553,
num_scanned_rows=2097693557,
has_urls_columns=True,
full_scan=True,
),
Expand Down
Loading