georghess / neurad-studio

[CVPR2024] NeuRAD: Neural Rendering for Autonomous Driving
https://research.zenseact.com/publications/neurad/
Apache License 2.0
346 stars 24 forks source link

How to adjust the start frame and end frame #38

Closed sonnefred closed 4 months ago

sonnefred commented 4 months ago

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.

JulienStanguennec-Leddartech commented 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

image

sonnefred commented 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

image

OK, thank you, I will have a try.