How to use honeypot in your project
Setting up Honeypot
To set up Honeypot, from the project "Settings" page, click on Quality management and then toggle "Honeypot".


To get best results, set up Honeypot before labelers start working on a project.
Setting assets as Honeypot
- From the UI, in Explore view, click on the Honeypot button (next to the Review button).


Be careful when reviewing assets that are used as honeypot. Clicking the Review button changes the current honeypot setting for the asset.
- From the API:
- Update the
isHoneypot
property of an asset, using theupdate_properties_in_assets
Python SDK function:
kili.update_properties_in_assets(assets_ids=['id-1', 'id-2'], is_honeypot_array=[True, True])
- Use the
append_to_labels
function to activate theREVIEW
label for the asset.
Updated 9 days ago
Did this page help you?