Hello.
When I set export_format="gs_ply" in the inference parameters, the model automatically creates gs_video files as well, even though I only want the Gaussian Splatting PLY output.
prediction = model.inference(
image=image_paths,
export_dir="./output",
export_format="gs_ply", # Only want GS PLY
infer_gs=True,
export_kwargs={"gs_ply": {"gs_views_interval": 1}}
)
Despite only specifying gs_ply, the code still generates a gs_video folder with MP4 files. This behavior is unexpected and wastes disk space and processing time when only the PLY file is needed.
Is there a way to disable automatic gs_video generation when using gs_ply? The documentation suggests export_kwargs should control this, but it doesn't seem to work.

Hello.
When I set
export_format="gs_ply"in the inference parameters, the model automatically creates gs_video files as well, even though I only want the Gaussian Splatting PLY output.Despite only specifying
gs_ply, the code still generates ags_videofolder with MP4 files. This behavior is unexpected and wastes disk space and processing time when only the PLY file is needed.Is there a way to disable automatic
gs_videogeneration when usinggs_ply? The documentation suggestsexport_kwargsshould control this, but it doesn't seem to work.