How to Bulk Move Data Rows to 'In Review' Status

I have 4,000 data rows with pre-labels, but I want to move all of them from “To Label” to ‘In Review’. Essentially, I want to ‘submit’ all of them without having to click the ‘Submit’ button 4,000 times.
Is there an easy way to do this using the Python SDK or even with Labelbox in a web browser?

Hey @seankim ,

We don’t have a programmatic way to auto submit when there is/are prediction.
I would use in your case an auto-clicker I made a few test and this could help you, it will likely take some time but you can leave it running.
The assumption I made here is, all your assets have predictions (so no skip need to be executed).

  1. I used : https://chromewebstore.google.com/detail/auto-clicker-autofill/iapifmceeokikomajpccajhjpacjmibe
  2. Take the URL from the editor, it should be like : https://editor.labelbox.com/?project=clyn24qkz00nf07115q8x5lx5&iframe=false&theme=Light
  3. Use the css class (it’s simpler) This is generated dynamically so might be different on your end, get this from the dev console.
  4. Configure the auto clicker

    To make sure there is a loop use the Batch option (2)

    To allow loading put a value on the R-interval as well as Init Wait
    Repeat can be finite, or infinite (-2).

This are just advices I am not endorsing any third parties here.
Hope this helps.

Many thanks,
PT