Luca Bonfiglioli

Results 12 comments of Luca Bonfiglioli

Replace `positions_to_colors` in `bake_texture.py` line 137 with the following code: ```python def positions_to_colors(model, scene_code, positions_texture, texture_resolution): positions = torch.tensor( positions_texture.reshape(-1, 4)[:, :-1], device=scene_code.device ) with torch.no_grad(): queried_grid = model.renderer.query_triplane( model.decoder,...