From e6476fe344a5d3748fcaa6ae4c3f4595b485a9f4 Mon Sep 17 00:00:00 2001 From: The jax3d Authors Date: Tue, 3 Mar 2026 14:41:33 -0800 Subject: [PATCH] Code update PiperOrigin-RevId: 878131936 --- jax3d/__init__.py | 2 +- jax3d/math/__init__.py | 2 +- jax3d/math/volume_rendering.py | 2 +- jax3d/math/volume_rendering_test.py | 2 +- jax3d/projects/generative/common/image_utility.py | 2 +- jax3d/projects/generative/nerf/attention.py | 2 +- jax3d/projects/generative/nerf/autoencoder/data.py | 2 +- jax3d/projects/generative/nerf/autoencoder/eval.py | 2 +- jax3d/projects/generative/nerf/autoencoder/loss.py | 2 +- jax3d/projects/generative/nerf/autoencoder/models.py | 2 +- jax3d/projects/generative/nerf/autoencoder/trainer.py | 2 +- jax3d/projects/generative/nerf/camera.py | 2 +- jax3d/projects/generative/nerf/configs.py | 2 +- jax3d/projects/generative/nerf/glo_nerf/eval.py | 2 +- jax3d/projects/generative/nerf/glo_nerf/loss.py | 2 +- jax3d/projects/generative/nerf/glo_nerf/models.py | 2 +- jax3d/projects/generative/nerf/glo_nerf/trainer.py | 2 +- jax3d/projects/generative/nerf/gpu_utilization.py | 2 +- jax3d/projects/generative/nerf/lightfield/eval.py | 2 +- jax3d/projects/generative/nerf/lightfield/loss.py | 2 +- jax3d/projects/generative/nerf/lightfield/models.py | 2 +- jax3d/projects/generative/nerf/lightfield/trainer.py | 2 +- jax3d/projects/generative/nerf/losses.py | 2 +- jax3d/projects/generative/nerf/metrics.py | 2 +- jax3d/projects/generative/nerf/nerf.py | 2 +- jax3d/projects/generative/nerf/positional_encoding.py | 2 +- jax3d/projects/generative/nerf/run_trainer.py | 2 +- jax3d/projects/generative/nerf/trainer.py | 2 +- jax3d/projects/generative/nerf/trainer_test.py | 2 +- jax3d/projects/generative/nerf/transforms.py | 2 +- jax3d/projects/generative/nerf/transforms_test.py | 2 +- jax3d/projects/generative/nerf/visualization.py | 2 +- jax3d/projects/mobilenerf/stage1.py | 2 +- jax3d/projects/mobilenerf/stage2.py | 2 +- jax3d/projects/mobilenerf/stage3.py | 2 +- jax3d/projects/mobilenerf/stage3_with_box.py | 2 +- jax3d/projects/nesf/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/dataset.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/dataset_test.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/dataset_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/dataset_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/klevr.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/klevr_test.py | 2 +- jax3d/projects/nesf/nerfstatic/datasets/scene_understanding.py | 2 +- .../nesf/nerfstatic/datasets/scene_understanding_test.py | 2 +- jax3d/projects/nesf/nerfstatic/eval.py | 2 +- jax3d/projects/nesf/nerfstatic/eval_lib.py | 2 +- jax3d/projects/nesf/nerfstatic/eval_semantic_lib.py | 2 +- jax3d/projects/nesf/nerfstatic/integration_test/import_test.py | 2 +- jax3d/projects/nesf/nerfstatic/losses/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/losses/losses.py | 2 +- jax3d/projects/nesf/nerfstatic/losses/losses_test.py | 2 +- jax3d/projects/nesf/nerfstatic/metrics/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/metrics/metrics.py | 2 +- jax3d/projects/nesf/nerfstatic/metrics/metrics_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/models/grid_interpolator.py | 2 +- jax3d/projects/nesf/nerfstatic/models/grid_interpolator_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/mlp.py | 2 +- jax3d/projects/nesf/nerfstatic/models/mlp_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/model_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/models/model_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/models.py | 2 +- jax3d/projects/nesf/nerfstatic/models/models_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/nerf_renderer.py | 2 +- jax3d/projects/nesf/nerfstatic/models/nerf_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/models/semantic_model.py | 2 +- jax3d/projects/nesf/nerfstatic/models/unet3d.py | 2 +- jax3d/projects/nesf/nerfstatic/models/unet3d_test.py | 2 +- jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp.py | 2 +- jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp_test.py | 2 +- .../nesf/nerfstatic/models/volumetric_semantic_model.py | 2 +- .../nesf/nerfstatic/models/volumetric_semantic_model_test.py | 2 +- jax3d/projects/nesf/nerfstatic/nerf/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/nerf/colormap.py | 2 +- jax3d/projects/nesf/nerfstatic/nerf/utils.py | 2 +- jax3d/projects/nesf/nerfstatic/nerf/utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/serialization/__init__.py | 2 +- jax3d/projects/nesf/nerfstatic/serialization/nerf.py | 2 +- jax3d/projects/nesf/nerfstatic/serialization/nerf_test.py | 2 +- jax3d/projects/nesf/nerfstatic/train.py | 2 +- jax3d/projects/nesf/nerfstatic/train_lib.py | 2 +- jax3d/projects/nesf/nerfstatic/train_semantic_lib.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/blender_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/camera_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/camera_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/config.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/coord_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/coord_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/eval_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/geometry_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/geometry_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/gin_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/gin_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/img_log_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/img_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/img_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/jax_process_zero.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/kubric_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/render_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/semantic_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/stopwatch_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/train_utils.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/train_utils_test.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/types.py | 2 +- jax3d/projects/nesf/nerfstatic/utils/types_test.py | 2 +- jax3d/projects/nesf/utils/__init__.py | 2 +- jax3d/projects/nesf/utils/dataclass_utils.py | 2 +- jax3d/projects/nesf/utils/dataclass_utils_test.py | 2 +- jax3d/projects/nesf/utils/file_utils.py | 2 +- jax3d/projects/nesf/utils/file_utils_test.py | 2 +- jax3d/projects/nesf/utils/geo_utils.py | 2 +- jax3d/projects/nesf/utils/geo_utils_test.py | 2 +- jax3d/projects/nesf/utils/jax_utils.py | 2 +- jax3d/projects/nesf/utils/jax_utils_test.py | 2 +- jax3d/projects/nesf/utils/np_utils.py | 2 +- jax3d/projects/nesf/utils/py_utils.py | 2 +- jax3d/projects/nesf/utils/py_utils_test.py | 2 +- jax3d/projects/nesf/utils/random.py | 2 +- jax3d/projects/nesf/utils/random_test.py | 2 +- jax3d/projects/nesf/utils/shape_utils.py | 2 +- jax3d/projects/nesf/utils/shape_utils_test.py | 2 +- jax3d/projects/nesf/utils/shape_validation.py | 2 +- jax3d/projects/nesf/utils/shape_validation_test.py | 2 +- jax3d/projects/nesf/utils/testing.py | 2 +- jax3d/projects/nesf/utils/tree_utils.py | 2 +- jax3d/projects/nesf/utils/tree_utils_test.py | 2 +- jax3d/projects/nesf/utils/typing.py | 2 +- jax3d/projects/nesf/utils/typing_test.py | 2 +- jax3d/public_api.py | 2 +- jax3d/utils/__init__.py | 2 +- jax3d/utils/chronometer.py | 2 +- jax3d/utils/dataclass_utils.py | 2 +- jax3d/utils/dataclass_utils_test.py | 2 +- jax3d/utils/file_utils.py | 2 +- jax3d/utils/file_utils_test.py | 2 +- jax3d/utils/geo_utils.py | 2 +- jax3d/utils/geo_utils_test.py | 2 +- jax3d/utils/jax_utils.py | 2 +- jax3d/utils/jax_utils_test.py | 2 +- jax3d/utils/plot_segmentation.py | 2 +- jax3d/utils/py_utils.py | 2 +- jax3d/utils/py_utils_test.py | 2 +- jax3d/utils/random.py | 2 +- jax3d/utils/random_test.py | 2 +- jax3d/utils/shape_utils.py | 2 +- jax3d/utils/shape_utils_test.py | 2 +- jax3d/utils/shape_validation.py | 2 +- jax3d/utils/shape_validation_test.py | 2 +- jax3d/utils/testing.py | 2 +- jax3d/utils/tree_utils.py | 2 +- jax3d/utils/tree_utils_test.py | 2 +- jax3d/utils/typing.py | 2 +- setup.py | 2 +- 156 files changed, 156 insertions(+), 156 deletions(-) diff --git a/jax3d/__init__.py b/jax3d/__init__.py index c3e938f..e93df68 100644 --- a/jax3d/__init__.py +++ b/jax3d/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/math/__init__.py b/jax3d/math/__init__.py index 3c14081..38b7e1f 100644 --- a/jax3d/math/__init__.py +++ b/jax3d/math/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/math/volume_rendering.py b/jax3d/math/volume_rendering.py index f8b3fa5..1888a49 100644 --- a/jax3d/math/volume_rendering.py +++ b/jax3d/math/volume_rendering.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/math/volume_rendering_test.py b/jax3d/math/volume_rendering_test.py index e940923..4f3a7cb 100644 --- a/jax3d/math/volume_rendering_test.py +++ b/jax3d/math/volume_rendering_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/common/image_utility.py b/jax3d/projects/generative/common/image_utility.py index 35c65c9..6883d43 100644 --- a/jax3d/projects/generative/common/image_utility.py +++ b/jax3d/projects/generative/common/image_utility.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/attention.py b/jax3d/projects/generative/nerf/attention.py index dc29c9b..f4d0529 100644 --- a/jax3d/projects/generative/nerf/attention.py +++ b/jax3d/projects/generative/nerf/attention.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/autoencoder/data.py b/jax3d/projects/generative/nerf/autoencoder/data.py index bbb07d8..c911cae 100644 --- a/jax3d/projects/generative/nerf/autoencoder/data.py +++ b/jax3d/projects/generative/nerf/autoencoder/data.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/autoencoder/eval.py b/jax3d/projects/generative/nerf/autoencoder/eval.py index ead8641..46adc08 100644 --- a/jax3d/projects/generative/nerf/autoencoder/eval.py +++ b/jax3d/projects/generative/nerf/autoencoder/eval.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/autoencoder/loss.py b/jax3d/projects/generative/nerf/autoencoder/loss.py index 0a3d0d2..d741475 100644 --- a/jax3d/projects/generative/nerf/autoencoder/loss.py +++ b/jax3d/projects/generative/nerf/autoencoder/loss.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/autoencoder/models.py b/jax3d/projects/generative/nerf/autoencoder/models.py index be04201..ff4bdd9 100644 --- a/jax3d/projects/generative/nerf/autoencoder/models.py +++ b/jax3d/projects/generative/nerf/autoencoder/models.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/autoencoder/trainer.py b/jax3d/projects/generative/nerf/autoencoder/trainer.py index 06d83eb..ecb45e2 100644 --- a/jax3d/projects/generative/nerf/autoencoder/trainer.py +++ b/jax3d/projects/generative/nerf/autoencoder/trainer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/camera.py b/jax3d/projects/generative/nerf/camera.py index fb5cc90..d000a6d 100644 --- a/jax3d/projects/generative/nerf/camera.py +++ b/jax3d/projects/generative/nerf/camera.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/configs.py b/jax3d/projects/generative/nerf/configs.py index 5fcc289..12e0268 100644 --- a/jax3d/projects/generative/nerf/configs.py +++ b/jax3d/projects/generative/nerf/configs.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/glo_nerf/eval.py b/jax3d/projects/generative/nerf/glo_nerf/eval.py index 1430ae8..be376e4 100644 --- a/jax3d/projects/generative/nerf/glo_nerf/eval.py +++ b/jax3d/projects/generative/nerf/glo_nerf/eval.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/glo_nerf/loss.py b/jax3d/projects/generative/nerf/glo_nerf/loss.py index df232cb..da16460 100644 --- a/jax3d/projects/generative/nerf/glo_nerf/loss.py +++ b/jax3d/projects/generative/nerf/glo_nerf/loss.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/glo_nerf/models.py b/jax3d/projects/generative/nerf/glo_nerf/models.py index 29e7a9a..d2aac8c 100644 --- a/jax3d/projects/generative/nerf/glo_nerf/models.py +++ b/jax3d/projects/generative/nerf/glo_nerf/models.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/glo_nerf/trainer.py b/jax3d/projects/generative/nerf/glo_nerf/trainer.py index 7a8e729..a788df0 100644 --- a/jax3d/projects/generative/nerf/glo_nerf/trainer.py +++ b/jax3d/projects/generative/nerf/glo_nerf/trainer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/gpu_utilization.py b/jax3d/projects/generative/nerf/gpu_utilization.py index a1e5ea2..0f4939e 100644 --- a/jax3d/projects/generative/nerf/gpu_utilization.py +++ b/jax3d/projects/generative/nerf/gpu_utilization.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/lightfield/eval.py b/jax3d/projects/generative/nerf/lightfield/eval.py index f5d2afa..3477668 100644 --- a/jax3d/projects/generative/nerf/lightfield/eval.py +++ b/jax3d/projects/generative/nerf/lightfield/eval.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/lightfield/loss.py b/jax3d/projects/generative/nerf/lightfield/loss.py index fd08bf1..38b272c 100644 --- a/jax3d/projects/generative/nerf/lightfield/loss.py +++ b/jax3d/projects/generative/nerf/lightfield/loss.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/lightfield/models.py b/jax3d/projects/generative/nerf/lightfield/models.py index 792b362..a030050 100644 --- a/jax3d/projects/generative/nerf/lightfield/models.py +++ b/jax3d/projects/generative/nerf/lightfield/models.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/lightfield/trainer.py b/jax3d/projects/generative/nerf/lightfield/trainer.py index c8e2790..dc36210 100644 --- a/jax3d/projects/generative/nerf/lightfield/trainer.py +++ b/jax3d/projects/generative/nerf/lightfield/trainer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/losses.py b/jax3d/projects/generative/nerf/losses.py index 31d84e9..b066a5f 100644 --- a/jax3d/projects/generative/nerf/losses.py +++ b/jax3d/projects/generative/nerf/losses.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/metrics.py b/jax3d/projects/generative/nerf/metrics.py index 5c9f518..69931ea 100644 --- a/jax3d/projects/generative/nerf/metrics.py +++ b/jax3d/projects/generative/nerf/metrics.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/nerf.py b/jax3d/projects/generative/nerf/nerf.py index 0fcad20..15f665b 100644 --- a/jax3d/projects/generative/nerf/nerf.py +++ b/jax3d/projects/generative/nerf/nerf.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/positional_encoding.py b/jax3d/projects/generative/nerf/positional_encoding.py index 80059b3..f9d9fbe 100644 --- a/jax3d/projects/generative/nerf/positional_encoding.py +++ b/jax3d/projects/generative/nerf/positional_encoding.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/run_trainer.py b/jax3d/projects/generative/nerf/run_trainer.py index c7795ca..f0095a0 100644 --- a/jax3d/projects/generative/nerf/run_trainer.py +++ b/jax3d/projects/generative/nerf/run_trainer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/trainer.py b/jax3d/projects/generative/nerf/trainer.py index e6489f7..520ecb6 100644 --- a/jax3d/projects/generative/nerf/trainer.py +++ b/jax3d/projects/generative/nerf/trainer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/trainer_test.py b/jax3d/projects/generative/nerf/trainer_test.py index 7097aea..cfa432d 100644 --- a/jax3d/projects/generative/nerf/trainer_test.py +++ b/jax3d/projects/generative/nerf/trainer_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/transforms.py b/jax3d/projects/generative/nerf/transforms.py index b38b6c6..7d7c728 100644 --- a/jax3d/projects/generative/nerf/transforms.py +++ b/jax3d/projects/generative/nerf/transforms.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/transforms_test.py b/jax3d/projects/generative/nerf/transforms_test.py index 147c722..8a2ef53 100644 --- a/jax3d/projects/generative/nerf/transforms_test.py +++ b/jax3d/projects/generative/nerf/transforms_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/generative/nerf/visualization.py b/jax3d/projects/generative/nerf/visualization.py index bd78829..1a3c6b6 100644 --- a/jax3d/projects/generative/nerf/visualization.py +++ b/jax3d/projects/generative/nerf/visualization.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/mobilenerf/stage1.py b/jax3d/projects/mobilenerf/stage1.py index a5550dc..8420e43 100644 --- a/jax3d/projects/mobilenerf/stage1.py +++ b/jax3d/projects/mobilenerf/stage1.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/mobilenerf/stage2.py b/jax3d/projects/mobilenerf/stage2.py index 1299d8b..33f8e89 100644 --- a/jax3d/projects/mobilenerf/stage2.py +++ b/jax3d/projects/mobilenerf/stage2.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/mobilenerf/stage3.py b/jax3d/projects/mobilenerf/stage3.py index d31f463..f7381f6 100644 --- a/jax3d/projects/mobilenerf/stage3.py +++ b/jax3d/projects/mobilenerf/stage3.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/mobilenerf/stage3_with_box.py b/jax3d/projects/mobilenerf/stage3_with_box.py index 67c1f3d..8516cd1 100644 --- a/jax3d/projects/mobilenerf/stage3_with_box.py +++ b/jax3d/projects/mobilenerf/stage3_with_box.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/__init__.py b/jax3d/projects/nesf/__init__.py index e90ddea..53726b2 100644 --- a/jax3d/projects/nesf/__init__.py +++ b/jax3d/projects/nesf/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/__init__.py b/jax3d/projects/nesf/nerfstatic/__init__.py index 9d61cc7..a5bad5e 100644 --- a/jax3d/projects/nesf/nerfstatic/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/__init__.py b/jax3d/projects/nesf/nerfstatic/datasets/__init__.py index 524febb..6dd0a52 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/dataset.py b/jax3d/projects/nesf/nerfstatic/datasets/dataset.py index 29f9095..bdb7d37 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/dataset.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/dataset.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/dataset_test.py b/jax3d/projects/nesf/nerfstatic/datasets/dataset_test.py index c667b7a..f14abd9 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/dataset_test.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/dataset_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils.py b/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils.py index 0836adf..96bc389 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils_test.py b/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils_test.py index f299b95..b8355bc 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/dataset_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/klevr.py b/jax3d/projects/nesf/nerfstatic/datasets/klevr.py index 417215a..b467ac0 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/klevr.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/klevr.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/klevr_test.py b/jax3d/projects/nesf/nerfstatic/datasets/klevr_test.py index 8e4b1df..efb4916 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/klevr_test.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/klevr_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding.py b/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding.py index 425f9d4..5f378c5 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding_test.py b/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding_test.py index 6f9ed79..4b51b49 100644 --- a/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding_test.py +++ b/jax3d/projects/nesf/nerfstatic/datasets/scene_understanding_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/eval.py b/jax3d/projects/nesf/nerfstatic/eval.py index d621002..e137b29 100644 --- a/jax3d/projects/nesf/nerfstatic/eval.py +++ b/jax3d/projects/nesf/nerfstatic/eval.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/eval_lib.py b/jax3d/projects/nesf/nerfstatic/eval_lib.py index 79b8fdd..ebd5e4a 100644 --- a/jax3d/projects/nesf/nerfstatic/eval_lib.py +++ b/jax3d/projects/nesf/nerfstatic/eval_lib.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/eval_semantic_lib.py b/jax3d/projects/nesf/nerfstatic/eval_semantic_lib.py index 61145da..62755b8 100644 --- a/jax3d/projects/nesf/nerfstatic/eval_semantic_lib.py +++ b/jax3d/projects/nesf/nerfstatic/eval_semantic_lib.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/integration_test/import_test.py b/jax3d/projects/nesf/nerfstatic/integration_test/import_test.py index ffe2bca..fb5197b 100644 --- a/jax3d/projects/nesf/nerfstatic/integration_test/import_test.py +++ b/jax3d/projects/nesf/nerfstatic/integration_test/import_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/losses/__init__.py b/jax3d/projects/nesf/nerfstatic/losses/__init__.py index 0439838..79805e7 100644 --- a/jax3d/projects/nesf/nerfstatic/losses/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/losses/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/losses/losses.py b/jax3d/projects/nesf/nerfstatic/losses/losses.py index af1539b..04fa73c 100644 --- a/jax3d/projects/nesf/nerfstatic/losses/losses.py +++ b/jax3d/projects/nesf/nerfstatic/losses/losses.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/losses/losses_test.py b/jax3d/projects/nesf/nerfstatic/losses/losses_test.py index a272920..dbf4bfc 100644 --- a/jax3d/projects/nesf/nerfstatic/losses/losses_test.py +++ b/jax3d/projects/nesf/nerfstatic/losses/losses_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/metrics/__init__.py b/jax3d/projects/nesf/nerfstatic/metrics/__init__.py index 918e91f..1ebe3cb 100644 --- a/jax3d/projects/nesf/nerfstatic/metrics/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/metrics/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/metrics/metrics.py b/jax3d/projects/nesf/nerfstatic/metrics/metrics.py index 204fac9..7071b3a 100644 --- a/jax3d/projects/nesf/nerfstatic/metrics/metrics.py +++ b/jax3d/projects/nesf/nerfstatic/metrics/metrics.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/metrics/metrics_test.py b/jax3d/projects/nesf/nerfstatic/metrics/metrics_test.py index fe907e0..08c58a4 100644 --- a/jax3d/projects/nesf/nerfstatic/metrics/metrics_test.py +++ b/jax3d/projects/nesf/nerfstatic/metrics/metrics_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/__init__.py b/jax3d/projects/nesf/nerfstatic/models/__init__.py index 0ff4adc..14b324e 100644 --- a/jax3d/projects/nesf/nerfstatic/models/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/models/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/grid_interpolator.py b/jax3d/projects/nesf/nerfstatic/models/grid_interpolator.py index 1677038..ee33ab3 100644 --- a/jax3d/projects/nesf/nerfstatic/models/grid_interpolator.py +++ b/jax3d/projects/nesf/nerfstatic/models/grid_interpolator.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/grid_interpolator_test.py b/jax3d/projects/nesf/nerfstatic/models/grid_interpolator_test.py index 8eb4b2c..aed4131 100644 --- a/jax3d/projects/nesf/nerfstatic/models/grid_interpolator_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/grid_interpolator_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/mlp.py b/jax3d/projects/nesf/nerfstatic/models/mlp.py index 07a06df..5e6e6d5 100644 --- a/jax3d/projects/nesf/nerfstatic/models/mlp.py +++ b/jax3d/projects/nesf/nerfstatic/models/mlp.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/mlp_test.py b/jax3d/projects/nesf/nerfstatic/models/mlp_test.py index 61c2f73..4bc2f98 100644 --- a/jax3d/projects/nesf/nerfstatic/models/mlp_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/mlp_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/model_utils.py b/jax3d/projects/nesf/nerfstatic/models/model_utils.py index b631f8d..9ca4ad6 100644 --- a/jax3d/projects/nesf/nerfstatic/models/model_utils.py +++ b/jax3d/projects/nesf/nerfstatic/models/model_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/model_utils_test.py b/jax3d/projects/nesf/nerfstatic/models/model_utils_test.py index 3415a13..72af039 100644 --- a/jax3d/projects/nesf/nerfstatic/models/model_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/model_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/models.py b/jax3d/projects/nesf/nerfstatic/models/models.py index 7f386a5..c99f2a4 100644 --- a/jax3d/projects/nesf/nerfstatic/models/models.py +++ b/jax3d/projects/nesf/nerfstatic/models/models.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/models_test.py b/jax3d/projects/nesf/nerfstatic/models/models_test.py index dde4cef..2e5cd6a 100644 --- a/jax3d/projects/nesf/nerfstatic/models/models_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/models_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/nerf_renderer.py b/jax3d/projects/nesf/nerfstatic/models/nerf_renderer.py index 143090b..e46de11 100644 --- a/jax3d/projects/nesf/nerfstatic/models/nerf_renderer.py +++ b/jax3d/projects/nesf/nerfstatic/models/nerf_renderer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/nerf_utils.py b/jax3d/projects/nesf/nerfstatic/models/nerf_utils.py index 221aed9..a96bac1 100644 --- a/jax3d/projects/nesf/nerfstatic/models/nerf_utils.py +++ b/jax3d/projects/nesf/nerfstatic/models/nerf_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/semantic_model.py b/jax3d/projects/nesf/nerfstatic/models/semantic_model.py index bfdd5d8..78c6085 100644 --- a/jax3d/projects/nesf/nerfstatic/models/semantic_model.py +++ b/jax3d/projects/nesf/nerfstatic/models/semantic_model.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/unet3d.py b/jax3d/projects/nesf/nerfstatic/models/unet3d.py index 67b44f1..d5d6227 100644 --- a/jax3d/projects/nesf/nerfstatic/models/unet3d.py +++ b/jax3d/projects/nesf/nerfstatic/models/unet3d.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/unet3d_test.py b/jax3d/projects/nesf/nerfstatic/models/unet3d_test.py index c375884..961eb9b 100644 --- a/jax3d/projects/nesf/nerfstatic/models/unet3d_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/unet3d_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp.py b/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp.py index 2ea7a9a..7357594 100644 --- a/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp.py +++ b/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp_test.py b/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp_test.py index 8731ce4..1756bca 100644 --- a/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/vanilla_nerf_mlp_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model.py b/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model.py index 47a2da1..f43278e 100644 --- a/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model.py +++ b/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model_test.py b/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model_test.py index 858011b..9bd2e05 100644 --- a/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model_test.py +++ b/jax3d/projects/nesf/nerfstatic/models/volumetric_semantic_model_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/nerf/__init__.py b/jax3d/projects/nesf/nerfstatic/nerf/__init__.py index d275c6e..0dcaec4 100644 --- a/jax3d/projects/nesf/nerfstatic/nerf/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/nerf/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/nerf/colormap.py b/jax3d/projects/nesf/nerfstatic/nerf/colormap.py index 61adc90..b14f755 100644 --- a/jax3d/projects/nesf/nerfstatic/nerf/colormap.py +++ b/jax3d/projects/nesf/nerfstatic/nerf/colormap.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/nerf/utils.py b/jax3d/projects/nesf/nerfstatic/nerf/utils.py index b507bb0..1e12e90 100644 --- a/jax3d/projects/nesf/nerfstatic/nerf/utils.py +++ b/jax3d/projects/nesf/nerfstatic/nerf/utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/nerf/utils_test.py b/jax3d/projects/nesf/nerfstatic/nerf/utils_test.py index 06aee20..02c3861 100644 --- a/jax3d/projects/nesf/nerfstatic/nerf/utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/nerf/utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/serialization/__init__.py b/jax3d/projects/nesf/nerfstatic/serialization/__init__.py index d7d619a..b82e6a8 100644 --- a/jax3d/projects/nesf/nerfstatic/serialization/__init__.py +++ b/jax3d/projects/nesf/nerfstatic/serialization/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/serialization/nerf.py b/jax3d/projects/nesf/nerfstatic/serialization/nerf.py index 83c41e6..fe5aa21 100644 --- a/jax3d/projects/nesf/nerfstatic/serialization/nerf.py +++ b/jax3d/projects/nesf/nerfstatic/serialization/nerf.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/serialization/nerf_test.py b/jax3d/projects/nesf/nerfstatic/serialization/nerf_test.py index 0948bd7..8b507a6 100644 --- a/jax3d/projects/nesf/nerfstatic/serialization/nerf_test.py +++ b/jax3d/projects/nesf/nerfstatic/serialization/nerf_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/train.py b/jax3d/projects/nesf/nerfstatic/train.py index 5ddaff7..ba7da5e 100644 --- a/jax3d/projects/nesf/nerfstatic/train.py +++ b/jax3d/projects/nesf/nerfstatic/train.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/train_lib.py b/jax3d/projects/nesf/nerfstatic/train_lib.py index bf9f6ad..07f0bfa 100644 --- a/jax3d/projects/nesf/nerfstatic/train_lib.py +++ b/jax3d/projects/nesf/nerfstatic/train_lib.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/train_semantic_lib.py b/jax3d/projects/nesf/nerfstatic/train_semantic_lib.py index 1cf56f4..e8ca8ab 100644 --- a/jax3d/projects/nesf/nerfstatic/train_semantic_lib.py +++ b/jax3d/projects/nesf/nerfstatic/train_semantic_lib.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/blender_utils.py b/jax3d/projects/nesf/nerfstatic/utils/blender_utils.py index aac6961..659a93d 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/blender_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/blender_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/camera_utils.py b/jax3d/projects/nesf/nerfstatic/utils/camera_utils.py index fbc53ce..0d7f3d2 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/camera_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/camera_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/camera_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/camera_utils_test.py index f67ccbd..6f64cea 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/camera_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/camera_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/config.py b/jax3d/projects/nesf/nerfstatic/utils/config.py index 8e512d2..d053ad8 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/config.py +++ b/jax3d/projects/nesf/nerfstatic/utils/config.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/coord_utils.py b/jax3d/projects/nesf/nerfstatic/utils/coord_utils.py index 7f7d51a..3d18d8b 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/coord_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/coord_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/coord_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/coord_utils_test.py index 0805387..ce98e2d 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/coord_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/coord_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/eval_utils.py b/jax3d/projects/nesf/nerfstatic/utils/eval_utils.py index 1ceaa6a..64a27c8 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/eval_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/eval_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/geometry_utils.py b/jax3d/projects/nesf/nerfstatic/utils/geometry_utils.py index 0e8ecc6..fe3177f 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/geometry_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/geometry_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/geometry_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/geometry_utils_test.py index 8985b4f..3ec985b 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/geometry_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/geometry_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/gin_utils.py b/jax3d/projects/nesf/nerfstatic/utils/gin_utils.py index 9ef455c..ceb337a 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/gin_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/gin_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/gin_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/gin_utils_test.py index 6f5e131..1354b97 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/gin_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/gin_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/img_log_utils.py b/jax3d/projects/nesf/nerfstatic/utils/img_log_utils.py index 61fddfb..6f92b7c 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/img_log_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/img_log_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/img_utils.py b/jax3d/projects/nesf/nerfstatic/utils/img_utils.py index f7fcf1d..8f69af4 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/img_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/img_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/img_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/img_utils_test.py index 3cce5c2..2a075f6 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/img_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/img_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/jax_process_zero.py b/jax3d/projects/nesf/nerfstatic/utils/jax_process_zero.py index f1cbb7c..567e10d 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/jax_process_zero.py +++ b/jax3d/projects/nesf/nerfstatic/utils/jax_process_zero.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/kubric_utils.py b/jax3d/projects/nesf/nerfstatic/utils/kubric_utils.py index 7902ea2..37f52ef 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/kubric_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/kubric_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/render_utils.py b/jax3d/projects/nesf/nerfstatic/utils/render_utils.py index 16a0b91..a5c0791 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/render_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/render_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/semantic_utils.py b/jax3d/projects/nesf/nerfstatic/utils/semantic_utils.py index 1b6022e..be5bb44 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/semantic_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/semantic_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/stopwatch_utils.py b/jax3d/projects/nesf/nerfstatic/utils/stopwatch_utils.py index 4ba75c6..2fb0bb6 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/stopwatch_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/stopwatch_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/train_utils.py b/jax3d/projects/nesf/nerfstatic/utils/train_utils.py index c78aefd..0eada03 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/train_utils.py +++ b/jax3d/projects/nesf/nerfstatic/utils/train_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/train_utils_test.py b/jax3d/projects/nesf/nerfstatic/utils/train_utils_test.py index f780184..8d56495 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/train_utils_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/train_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/types.py b/jax3d/projects/nesf/nerfstatic/utils/types.py index 7e65bfb..d74ad99 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/types.py +++ b/jax3d/projects/nesf/nerfstatic/utils/types.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/nerfstatic/utils/types_test.py b/jax3d/projects/nesf/nerfstatic/utils/types_test.py index a85cbea..dc55f60 100644 --- a/jax3d/projects/nesf/nerfstatic/utils/types_test.py +++ b/jax3d/projects/nesf/nerfstatic/utils/types_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/__init__.py b/jax3d/projects/nesf/utils/__init__.py index 4174582..65be699 100644 --- a/jax3d/projects/nesf/utils/__init__.py +++ b/jax3d/projects/nesf/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/dataclass_utils.py b/jax3d/projects/nesf/utils/dataclass_utils.py index d541441..9ba316a 100644 --- a/jax3d/projects/nesf/utils/dataclass_utils.py +++ b/jax3d/projects/nesf/utils/dataclass_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/dataclass_utils_test.py b/jax3d/projects/nesf/utils/dataclass_utils_test.py index eb7ec75..2ec3ddc 100644 --- a/jax3d/projects/nesf/utils/dataclass_utils_test.py +++ b/jax3d/projects/nesf/utils/dataclass_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/file_utils.py b/jax3d/projects/nesf/utils/file_utils.py index 226f3dc..892fa4a 100644 --- a/jax3d/projects/nesf/utils/file_utils.py +++ b/jax3d/projects/nesf/utils/file_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/file_utils_test.py b/jax3d/projects/nesf/utils/file_utils_test.py index 02f7461..8065759 100644 --- a/jax3d/projects/nesf/utils/file_utils_test.py +++ b/jax3d/projects/nesf/utils/file_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/geo_utils.py b/jax3d/projects/nesf/utils/geo_utils.py index b9d310a..4a011fb 100644 --- a/jax3d/projects/nesf/utils/geo_utils.py +++ b/jax3d/projects/nesf/utils/geo_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/geo_utils_test.py b/jax3d/projects/nesf/utils/geo_utils_test.py index 3c90abd..5c342ac 100644 --- a/jax3d/projects/nesf/utils/geo_utils_test.py +++ b/jax3d/projects/nesf/utils/geo_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/jax_utils.py b/jax3d/projects/nesf/utils/jax_utils.py index f9b1c00..21932f5 100644 --- a/jax3d/projects/nesf/utils/jax_utils.py +++ b/jax3d/projects/nesf/utils/jax_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/jax_utils_test.py b/jax3d/projects/nesf/utils/jax_utils_test.py index 53e271b..98a6a4b 100644 --- a/jax3d/projects/nesf/utils/jax_utils_test.py +++ b/jax3d/projects/nesf/utils/jax_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/np_utils.py b/jax3d/projects/nesf/utils/np_utils.py index 4ad067e..6ae24c4 100644 --- a/jax3d/projects/nesf/utils/np_utils.py +++ b/jax3d/projects/nesf/utils/np_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/py_utils.py b/jax3d/projects/nesf/utils/py_utils.py index 2512ef7..64ea48a 100644 --- a/jax3d/projects/nesf/utils/py_utils.py +++ b/jax3d/projects/nesf/utils/py_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/py_utils_test.py b/jax3d/projects/nesf/utils/py_utils_test.py index 88f1419..ee14d28 100644 --- a/jax3d/projects/nesf/utils/py_utils_test.py +++ b/jax3d/projects/nesf/utils/py_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/random.py b/jax3d/projects/nesf/utils/random.py index caf3c69..929d292 100644 --- a/jax3d/projects/nesf/utils/random.py +++ b/jax3d/projects/nesf/utils/random.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/random_test.py b/jax3d/projects/nesf/utils/random_test.py index e6a896f..84b880e 100644 --- a/jax3d/projects/nesf/utils/random_test.py +++ b/jax3d/projects/nesf/utils/random_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/shape_utils.py b/jax3d/projects/nesf/utils/shape_utils.py index c380c1d..aa35afc 100644 --- a/jax3d/projects/nesf/utils/shape_utils.py +++ b/jax3d/projects/nesf/utils/shape_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/shape_utils_test.py b/jax3d/projects/nesf/utils/shape_utils_test.py index a03aa4b..61ca732 100644 --- a/jax3d/projects/nesf/utils/shape_utils_test.py +++ b/jax3d/projects/nesf/utils/shape_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/shape_validation.py b/jax3d/projects/nesf/utils/shape_validation.py index 856b62c..381dac5 100644 --- a/jax3d/projects/nesf/utils/shape_validation.py +++ b/jax3d/projects/nesf/utils/shape_validation.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/shape_validation_test.py b/jax3d/projects/nesf/utils/shape_validation_test.py index a1f8bad..1cdf85a 100644 --- a/jax3d/projects/nesf/utils/shape_validation_test.py +++ b/jax3d/projects/nesf/utils/shape_validation_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/testing.py b/jax3d/projects/nesf/utils/testing.py index d2f77cf..ff584e5 100644 --- a/jax3d/projects/nesf/utils/testing.py +++ b/jax3d/projects/nesf/utils/testing.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/tree_utils.py b/jax3d/projects/nesf/utils/tree_utils.py index 66b7e8c..92a2f56 100644 --- a/jax3d/projects/nesf/utils/tree_utils.py +++ b/jax3d/projects/nesf/utils/tree_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/tree_utils_test.py b/jax3d/projects/nesf/utils/tree_utils_test.py index 8e55e06..429ebc0 100644 --- a/jax3d/projects/nesf/utils/tree_utils_test.py +++ b/jax3d/projects/nesf/utils/tree_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/typing.py b/jax3d/projects/nesf/utils/typing.py index 095a24b..4ae7b7f 100644 --- a/jax3d/projects/nesf/utils/typing.py +++ b/jax3d/projects/nesf/utils/typing.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/projects/nesf/utils/typing_test.py b/jax3d/projects/nesf/utils/typing_test.py index 44d3b1c..b66a767 100644 --- a/jax3d/projects/nesf/utils/typing_test.py +++ b/jax3d/projects/nesf/utils/typing_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/public_api.py b/jax3d/public_api.py index eed9d72..789dd8e 100644 --- a/jax3d/public_api.py +++ b/jax3d/public_api.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/__init__.py b/jax3d/utils/__init__.py index 16721de..5bb52f1 100644 --- a/jax3d/utils/__init__.py +++ b/jax3d/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/chronometer.py b/jax3d/utils/chronometer.py index 67cc4be..13e1e55 100644 --- a/jax3d/utils/chronometer.py +++ b/jax3d/utils/chronometer.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/dataclass_utils.py b/jax3d/utils/dataclass_utils.py index 91eaecb..71629a1 100644 --- a/jax3d/utils/dataclass_utils.py +++ b/jax3d/utils/dataclass_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/dataclass_utils_test.py b/jax3d/utils/dataclass_utils_test.py index ec132e2..2ba8d96 100644 --- a/jax3d/utils/dataclass_utils_test.py +++ b/jax3d/utils/dataclass_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/file_utils.py b/jax3d/utils/file_utils.py index 7581b96..3e5dd86 100644 --- a/jax3d/utils/file_utils.py +++ b/jax3d/utils/file_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/file_utils_test.py b/jax3d/utils/file_utils_test.py index a0c9fa6..1c78b1e 100644 --- a/jax3d/utils/file_utils_test.py +++ b/jax3d/utils/file_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/geo_utils.py b/jax3d/utils/geo_utils.py index 402cfff..8da5baa 100644 --- a/jax3d/utils/geo_utils.py +++ b/jax3d/utils/geo_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/geo_utils_test.py b/jax3d/utils/geo_utils_test.py index e8aee77..384022e 100644 --- a/jax3d/utils/geo_utils_test.py +++ b/jax3d/utils/geo_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/jax_utils.py b/jax3d/utils/jax_utils.py index 2acd453..0e6f3b1 100644 --- a/jax3d/utils/jax_utils.py +++ b/jax3d/utils/jax_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/jax_utils_test.py b/jax3d/utils/jax_utils_test.py index c6a1687..804b3a7 100644 --- a/jax3d/utils/jax_utils_test.py +++ b/jax3d/utils/jax_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/plot_segmentation.py b/jax3d/utils/plot_segmentation.py index 73a53ec..a19fa22 100644 --- a/jax3d/utils/plot_segmentation.py +++ b/jax3d/utils/plot_segmentation.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/py_utils.py b/jax3d/utils/py_utils.py index ecaa1b7..ca3c7b9 100644 --- a/jax3d/utils/py_utils.py +++ b/jax3d/utils/py_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/py_utils_test.py b/jax3d/utils/py_utils_test.py index 0612117..b1eba10 100644 --- a/jax3d/utils/py_utils_test.py +++ b/jax3d/utils/py_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/random.py b/jax3d/utils/random.py index fcca17e..1e38011 100644 --- a/jax3d/utils/random.py +++ b/jax3d/utils/random.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/random_test.py b/jax3d/utils/random_test.py index 1889b10..93e7e99 100644 --- a/jax3d/utils/random_test.py +++ b/jax3d/utils/random_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/shape_utils.py b/jax3d/utils/shape_utils.py index 93b1e36..13ae96d 100644 --- a/jax3d/utils/shape_utils.py +++ b/jax3d/utils/shape_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/shape_utils_test.py b/jax3d/utils/shape_utils_test.py index f24a04b..893fdaf 100644 --- a/jax3d/utils/shape_utils_test.py +++ b/jax3d/utils/shape_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/shape_validation.py b/jax3d/utils/shape_validation.py index bdb4a87..3db24db 100644 --- a/jax3d/utils/shape_validation.py +++ b/jax3d/utils/shape_validation.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/shape_validation_test.py b/jax3d/utils/shape_validation_test.py index 9c49095..bfd30ab 100644 --- a/jax3d/utils/shape_validation_test.py +++ b/jax3d/utils/shape_validation_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/testing.py b/jax3d/utils/testing.py index d860a9e..d256e04 100644 --- a/jax3d/utils/testing.py +++ b/jax3d/utils/testing.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/tree_utils.py b/jax3d/utils/tree_utils.py index 7362f56..e4bfe54 100644 --- a/jax3d/utils/tree_utils.py +++ b/jax3d/utils/tree_utils.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/tree_utils_test.py b/jax3d/utils/tree_utils_test.py index f00b942..459df02 100644 --- a/jax3d/utils/tree_utils_test.py +++ b/jax3d/utils/tree_utils_test.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/jax3d/utils/typing.py b/jax3d/utils/typing.py index bf054a7..759d824 100644 --- a/jax3d/utils/typing.py +++ b/jax3d/utils/typing.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index df44125..ce12101 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright 2025 The jax3d Authors. +# Copyright 2026 The jax3d Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.