Closed sonnefred closed 4 months ago
I think the following fields from the dataparser could help you out:
dataset_start_fraction: float = 0.0
"""At what fraction of the dataset to start."""
dataset_end_fraction: float = 1.0
"""At what fraction of the dataset to end."""
See in .vscode/launch.json file for example: https://github.com/georghess/neurad-studio/blob/main/.vscode/launch.json#L73
I think the following fields from the dataparser could help you out:
dataset_start_fraction: float = 0.0 """At what fraction of the dataset to start.""" dataset_end_fraction: float = 1.0 """At what fraction of the dataset to end."""
See in .vscode/launch.json file for example: https://github.com/georghess/neurad-studio/blob/main/.vscode/launch.json#L73
OK, thank you, I will have a try.
Hi, I want to train a model just using part of images of a sequence. Where can I set the start frame and end frame easily? Thanks.