Open
Conversation
Member
|
@lasztoth thank you for adding this!
Would be great to get this in the next release! |
Thank you so much @ikreymer for reviewing this PR :) I will get started on these as soon as possible. Kind regards, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduction
In this fork, we introduce a few refinements to the default Browsertrix QA workflow:
These algorithms are: linear (first come first serve), regex (define a regular expression to perform QA only on URLs that match it), and random (define a probability for each page to be QA'd).
New CLI arguments
We provide the following new CLI arguments for the crawler:
qaMaxUrls: the maximum number of pages to perform QA on,qaPolicy: can be one oflinear,regexorrandom,qaRegex: ifqaPolicyisregex, then you can define your regular expression here,qaProbability: ifqaPolicyisrandom, you can define your per-page QA probability here. This is a floating-point number between 0 and 1.QA Policy:
linearIn this QA mode, the first
qaMaxUrlspages in thepages.jsonlfile(s) will be scanned. Example:QA Policy:
regexIn this QA mode, only the pages that match the regular expression in
qaRegexwill be scanned. Example:This will match all english Wikipedia articles that start with
R.QA policy:
randomIn this QA mode, pages will be scanned with a probability equal to
qaProbability. This is a floating-point number between0and1. Example:This policy allows to get a good overall impression of a harvest by scanning a random sample of it.
Maximum number of pages to scan
In every case mentioned above, the number of pages that will be queued for scanning will be at most
qaMaxUrls.