You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2021. It is now read-only.
Currently, we can only use (images, labels) pair to feed a model. It is not flexible for a complicated model.
Sometimes, we may face cases like (images, labels_1, labels_2..). We have to take it into account.
The text was updated successfully, but these errors were encountered:
yd8534976
changed the title
Support multiple labels in networks
[WIP] Support multiple labels in networks
Nov 18, 2019
yd8534976
changed the title
[WIP] Support multiple labels in networks
Support multiple labels in networks
Nov 20, 2019
To support this feature, we have to modify blueoil/networks/base.py, blueoil/cmd/train.py, blueoil/datasets/dataset_iterator.py. But if we modify theses files directly, we would also have to change hundreds of files like #618 . If so, the PR will be too large to be reviewed. So we could add new files like blueoil/networks/base_multi.py, blueoil/cmd/train_multi.py, blueoil/datasets/dataset_iterator_multi.py instead of modifying them directly. If so, lines of code can be controlled and the PRs will be reviewable.
Currently, we can only use
(images, labels)
pair to feed a model. It is not flexible for a complicated model.Sometimes, we may face cases like
(images, labels_1, labels_2..)
. We have to take it into account.The text was updated successfully, but these errors were encountered: