Duplicate Widget

Pierre, thanks for the feedback! Let me answer your questions one by one:

  1. You need to create your databunch using no_split() like this:

    db = (ImageItemList.from_folder(path)
    .no_split()
    .label_from_folder()
    .databunch())

If you do it like this, all your dataset will be considered when running the widget.

  1. You don’t need to end it. It recreates the csv every time you click on next batch. Just stop when you are done.

  2. That’s fine, but you should run from_similars loading from the previous csv. This way the csv created when running from_similars will include the changes made using the first widget and the second widget.

  3. There is no way yet to display the labels (I didn’t think it was useful since you have from_toplosses to change labels). However now that you mention it, I understand that it might be useful. I am a bit tight on time but if I find some time I’ll include it. You are welcome to submit a PR if you want to do it yourself too.

5 Likes