From f0e5244659748a8105a14b7a7340ddd1b73a7882 Mon Sep 17 00:00:00 2001 From: Jeremy Francis Reizenstein Date: Mon, 19 Dec 2022 15:50:52 -0800 Subject: [PATCH] v0.7.2 --- files/bundle_adjustment.ipynb | 2 +- files/bundle_adjustment.py | 2 +- ...ra_position_optimization_with_differentiable_rendering.ipynb | 2 +- ...amera_position_optimization_with_differentiable_rendering.py | 2 +- files/dataloaders_ShapeNetCore_R2N2.ipynb | 2 +- files/dataloaders_ShapeNetCore_R2N2.py | 2 +- files/deform_source_mesh_to_target_mesh.ipynb | 2 +- files/deform_source_mesh_to_target_mesh.py | 2 +- files/fit_simple_neural_radiance_field.ipynb | 2 +- files/fit_simple_neural_radiance_field.py | 2 +- files/fit_textured_mesh.ipynb | 2 +- files/fit_textured_mesh.py | 2 +- files/fit_textured_volume.ipynb | 2 +- files/fit_textured_volume.py | 2 +- files/implicitron_config_system.ipynb | 2 +- files/implicitron_config_system.py | 2 +- files/implicitron_volumes.ipynb | 2 +- files/implicitron_volumes.py | 2 +- files/render_colored_points.ipynb | 2 +- files/render_colored_points.py | 2 +- files/render_densepose.ipynb | 2 +- files/render_densepose.py | 2 +- files/render_textured_meshes.ipynb | 2 +- files/render_textured_meshes.py | 2 +- tutorials/bundle_adjustment.html | 2 +- tutorials/bundle_adjustment/index.html | 2 +- ...era_position_optimization_with_differentiable_rendering.html | 2 +- .../index.html | 2 +- tutorials/dataloaders_ShapeNetCore_R2N2.html | 2 +- tutorials/dataloaders_ShapeNetCore_R2N2/index.html | 2 +- tutorials/deform_source_mesh_to_target_mesh.html | 2 +- tutorials/deform_source_mesh_to_target_mesh/index.html | 2 +- tutorials/fit_simple_neural_radiance_field.html | 2 +- tutorials/fit_simple_neural_radiance_field/index.html | 2 +- tutorials/fit_textured_mesh.html | 2 +- tutorials/fit_textured_mesh/index.html | 2 +- tutorials/fit_textured_volume.html | 2 +- tutorials/fit_textured_volume/index.html | 2 +- tutorials/implicitron_config_system.html | 2 +- tutorials/implicitron_config_system/index.html | 2 +- tutorials/implicitron_volumes.html | 2 +- tutorials/implicitron_volumes/index.html | 2 +- tutorials/render_colored_points.html | 2 +- tutorials/render_colored_points/index.html | 2 +- tutorials/render_densepose.html | 2 +- tutorials/render_densepose/index.html | 2 +- tutorials/render_textured_meshes.html | 2 +- tutorials/render_textured_meshes/index.html | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/files/bundle_adjustment.ipynb b/files/bundle_adjustment.ipynb index 91640c9bc..2c7a8048e 100644 --- a/files/bundle_adjustment.ipynb +++ b/files/bundle_adjustment.ipynb @@ -89,7 +89,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/bundle_adjustment.py b/files/bundle_adjustment.py index 7bf593afe..a05293f09 100644 --- a/files/bundle_adjustment.py +++ b/files/bundle_adjustment.py @@ -49,7 +49,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/camera_position_optimization_with_differentiable_rendering.ipynb b/files/camera_position_optimization_with_differentiable_rendering.ipynb index e8e81e0a2..037a3a32a 100644 --- a/files/camera_position_optimization_with_differentiable_rendering.ipynb +++ b/files/camera_position_optimization_with_differentiable_rendering.ipynb @@ -76,7 +76,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/camera_position_optimization_with_differentiable_rendering.py b/files/camera_position_optimization_with_differentiable_rendering.py index 92c656c1c..cc5a6277a 100644 --- a/files/camera_position_optimization_with_differentiable_rendering.py +++ b/files/camera_position_optimization_with_differentiable_rendering.py @@ -36,7 +36,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/dataloaders_ShapeNetCore_R2N2.ipynb b/files/dataloaders_ShapeNetCore_R2N2.ipynb index 728a103ac..ac72e0742 100644 --- a/files/dataloaders_ShapeNetCore_R2N2.ipynb +++ b/files/dataloaders_ShapeNetCore_R2N2.ipynb @@ -51,7 +51,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/dataloaders_ShapeNetCore_R2N2.py b/files/dataloaders_ShapeNetCore_R2N2.py index 928115a99..5af6f0c7a 100644 --- a/files/dataloaders_ShapeNetCore_R2N2.py +++ b/files/dataloaders_ShapeNetCore_R2N2.py @@ -31,7 +31,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/deform_source_mesh_to_target_mesh.ipynb b/files/deform_source_mesh_to_target_mesh.ipynb index f6f2d7d38..f3ec139bd 100644 --- a/files/deform_source_mesh_to_target_mesh.ipynb +++ b/files/deform_source_mesh_to_target_mesh.ipynb @@ -90,7 +90,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/deform_source_mesh_to_target_mesh.py b/files/deform_source_mesh_to_target_mesh.py index 5c18f91c7..b9eef2832 100644 --- a/files/deform_source_mesh_to_target_mesh.py +++ b/files/deform_source_mesh_to_target_mesh.py @@ -48,7 +48,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/fit_simple_neural_radiance_field.ipynb b/files/fit_simple_neural_radiance_field.ipynb index 56b7876e2..0aaaa1ef3 100644 --- a/files/fit_simple_neural_radiance_field.ipynb +++ b/files/fit_simple_neural_radiance_field.ipynb @@ -56,7 +56,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/fit_simple_neural_radiance_field.py b/files/fit_simple_neural_radiance_field.py index dee73a94c..7f9213830 100644 --- a/files/fit_simple_neural_radiance_field.py +++ b/files/fit_simple_neural_radiance_field.py @@ -42,7 +42,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/fit_textured_mesh.ipynb b/files/fit_textured_mesh.ipynb index 954884b02..2e5247f0f 100644 --- a/files/fit_textured_mesh.ipynb +++ b/files/fit_textured_mesh.ipynb @@ -68,7 +68,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/fit_textured_mesh.py b/files/fit_textured_mesh.py index b10be54d3..63873ad43 100644 --- a/files/fit_textured_mesh.py +++ b/files/fit_textured_mesh.py @@ -31,7 +31,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/fit_textured_volume.ipynb b/files/fit_textured_volume.ipynb index 9c3edf42e..552ca9cff 100644 --- a/files/fit_textured_volume.ipynb +++ b/files/fit_textured_volume.ipynb @@ -47,7 +47,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/fit_textured_volume.py b/files/fit_textured_volume.py index 7cef34300..a5b5d2052 100644 --- a/files/fit_textured_volume.py +++ b/files/fit_textured_volume.py @@ -32,7 +32,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/implicitron_config_system.ipynb b/files/implicitron_config_system.ipynb index 9d69259e0..572192f4d 100644 --- a/files/implicitron_config_system.ipynb +++ b/files/implicitron_config_system.ipynb @@ -78,7 +78,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/implicitron_config_system.py b/files/implicitron_config_system.py index 0f965ad2e..63a7453a6 100644 --- a/files/implicitron_config_system.py +++ b/files/implicitron_config_system.py @@ -35,7 +35,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/implicitron_volumes.ipynb b/files/implicitron_volumes.ipynb index 1af8af1a4..c964b6d75 100644 --- a/files/implicitron_volumes.ipynb +++ b/files/implicitron_volumes.ipynb @@ -72,7 +72,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/implicitron_volumes.py b/files/implicitron_volumes.py index bce555e1a..f2841b8ba 100644 --- a/files/implicitron_volumes.py +++ b/files/implicitron_volumes.py @@ -30,7 +30,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/render_colored_points.ipynb b/files/render_colored_points.ipynb index 23e9cd14c..3b4f3ef1f 100644 --- a/files/render_colored_points.ipynb +++ b/files/render_colored_points.ipynb @@ -50,7 +50,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/render_colored_points.py b/files/render_colored_points.py index da277ff25..ac3907e1d 100644 --- a/files/render_colored_points.py +++ b/files/render_colored_points.py @@ -30,7 +30,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/render_densepose.ipynb b/files/render_densepose.ipynb index 68dfe69fd..5402c8c1c 100644 --- a/files/render_densepose.ipynb +++ b/files/render_densepose.ipynb @@ -57,7 +57,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/render_densepose.py b/files/render_densepose.py index 837d6546d..f0f87cf77 100644 --- a/files/render_densepose.py +++ b/files/render_densepose.py @@ -34,7 +34,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/files/render_textured_meshes.ipynb b/files/render_textured_meshes.ipynb index 333eb3b79..147b7c270 100644 --- a/files/render_textured_meshes.ipynb +++ b/files/render_textured_meshes.ipynb @@ -73,7 +73,7 @@ "except ModuleNotFoundError:\n", " need_pytorch3d=True\n", "if need_pytorch3d:\n", - " if torch.__version__.startswith(\"1.12.\") and sys.platform.startswith(\"linux\"):\n", + " if torch.__version__.startswith(\"1.13.\") and sys.platform.startswith(\"linux\"):\n", " # We try to install PyTorch3D via a released wheel.\n", " pyt_version_str=torch.__version__.split(\"+\")[0].replace(\".\", \"\")\n", " version_str=\"\".join([\n", diff --git a/files/render_textured_meshes.py b/files/render_textured_meshes.py index 7c35e849e..b073cd785 100644 --- a/files/render_textured_meshes.py +++ b/files/render_textured_meshes.py @@ -32,7 +32,7 @@ except ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/bundle_adjustment.html b/tutorials/bundle_adjustment.html index 93e2671e4..963fcc4f0 100644 --- a/tutorials/bundle_adjustment.html +++ b/tutorials/bundle_adjustment.html @@ -133,7 +133,7 @@

0. Install and Import Modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/bundle_adjustment/index.html b/tutorials/bundle_adjustment/index.html index 93e2671e4..963fcc4f0 100644 --- a/tutorials/bundle_adjustment/index.html +++ b/tutorials/bundle_adjustment/index.html @@ -133,7 +133,7 @@

0. Install and Import Modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/camera_position_optimization_with_differentiable_rendering.html b/tutorials/camera_position_optimization_with_differentiable_rendering.html index 122487a93..9f1d6a183 100644 --- a/tutorials/camera_position_optimization_with_differentiable_rendering.html +++ b/tutorials/camera_position_optimization_with_differentiable_rendering.html @@ -127,7 +127,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/camera_position_optimization_with_differentiable_rendering/index.html b/tutorials/camera_position_optimization_with_differentiable_rendering/index.html index 122487a93..9f1d6a183 100644 --- a/tutorials/camera_position_optimization_with_differentiable_rendering/index.html +++ b/tutorials/camera_position_optimization_with_differentiable_rendering/index.html @@ -127,7 +127,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/dataloaders_ShapeNetCore_R2N2.html b/tutorials/dataloaders_ShapeNetCore_R2N2.html index 0618c1b84..acf16ae89 100644 --- a/tutorials/dataloaders_ShapeNetCore_R2N2.html +++ b/tutorials/dataloaders_ShapeNetCore_R2N2.html @@ -126,7 +126,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/dataloaders_ShapeNetCore_R2N2/index.html b/tutorials/dataloaders_ShapeNetCore_R2N2/index.html index 0618c1b84..acf16ae89 100644 --- a/tutorials/dataloaders_ShapeNetCore_R2N2/index.html +++ b/tutorials/dataloaders_ShapeNetCore_R2N2/index.html @@ -126,7 +126,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/deform_source_mesh_to_target_mesh.html b/tutorials/deform_source_mesh_to_target_mesh.html index 00c899863..4ecbc19f2 100644 --- a/tutorials/deform_source_mesh_to_target_mesh.html +++ b/tutorials/deform_source_mesh_to_target_mesh.html @@ -146,7 +146,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/deform_source_mesh_to_target_mesh/index.html b/tutorials/deform_source_mesh_to_target_mesh/index.html index 00c899863..4ecbc19f2 100644 --- a/tutorials/deform_source_mesh_to_target_mesh/index.html +++ b/tutorials/deform_source_mesh_to_target_mesh/index.html @@ -146,7 +146,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_simple_neural_radiance_field.html b/tutorials/fit_simple_neural_radiance_field.html index 208f1c58a..f0416bce8 100644 --- a/tutorials/fit_simple_neural_radiance_field.html +++ b/tutorials/fit_simple_neural_radiance_field.html @@ -127,7 +127,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_simple_neural_radiance_field/index.html b/tutorials/fit_simple_neural_radiance_field/index.html index 208f1c58a..f0416bce8 100644 --- a/tutorials/fit_simple_neural_radiance_field/index.html +++ b/tutorials/fit_simple_neural_radiance_field/index.html @@ -127,7 +127,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_textured_mesh.html b/tutorials/fit_textured_mesh.html index 6747527a6..77863f10a 100644 --- a/tutorials/fit_textured_mesh.html +++ b/tutorials/fit_textured_mesh.html @@ -125,7 +125,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_textured_mesh/index.html b/tutorials/fit_textured_mesh/index.html index 6747527a6..77863f10a 100644 --- a/tutorials/fit_textured_mesh/index.html +++ b/tutorials/fit_textured_mesh/index.html @@ -125,7 +125,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_textured_volume.html b/tutorials/fit_textured_volume.html index 15c1cea35..50cd86f0f 100644 --- a/tutorials/fit_textured_volume.html +++ b/tutorials/fit_textured_volume.html @@ -118,7 +118,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/fit_textured_volume/index.html b/tutorials/fit_textured_volume/index.html index 15c1cea35..50cd86f0f 100644 --- a/tutorials/fit_textured_volume/index.html +++ b/tutorials/fit_textured_volume/index.html @@ -118,7 +118,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/implicitron_config_system.html b/tutorials/implicitron_config_system.html index d0a5d5e44..e8e0bf521 100644 --- a/tutorials/implicitron_config_system.html +++ b/tutorials/implicitron_config_system.html @@ -125,7 +125,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/implicitron_config_system/index.html b/tutorials/implicitron_config_system/index.html index d0a5d5e44..e8e0bf521 100644 --- a/tutorials/implicitron_config_system/index.html +++ b/tutorials/implicitron_config_system/index.html @@ -125,7 +125,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/implicitron_volumes.html b/tutorials/implicitron_volumes.html index 4541a8ea6..6055d26ea 100644 --- a/tutorials/implicitron_volumes.html +++ b/tutorials/implicitron_volumes.html @@ -115,7 +115,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/implicitron_volumes/index.html b/tutorials/implicitron_volumes/index.html index 4541a8ea6..6055d26ea 100644 --- a/tutorials/implicitron_volumes/index.html +++ b/tutorials/implicitron_volumes/index.html @@ -115,7 +115,7 @@

0. Install and import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_colored_points.html b/tutorials/render_colored_points.html index 34f8abb03..362e5e49a 100644 --- a/tutorials/render_colored_points.html +++ b/tutorials/render_colored_points.html @@ -124,7 +124,7 @@

Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_colored_points/index.html b/tutorials/render_colored_points/index.html index 34f8abb03..362e5e49a 100644 --- a/tutorials/render_colored_points/index.html +++ b/tutorials/render_colored_points/index.html @@ -124,7 +124,7 @@

Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_densepose.html b/tutorials/render_densepose.html index ecbe75e04..cdf2e21bb 100644 --- a/tutorials/render_densepose.html +++ b/tutorials/render_densepose.html @@ -127,7 +127,7 @@

Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_densepose/index.html b/tutorials/render_densepose/index.html index ecbe75e04..cdf2e21bb 100644 --- a/tutorials/render_densepose/index.html +++ b/tutorials/render_densepose/index.html @@ -127,7 +127,7 @@

Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_textured_meshes.html b/tutorials/render_textured_meshes.html index 5cfe99fb8..322991459 100644 --- a/tutorials/render_textured_meshes.html +++ b/tutorials/render_textured_meshes.html @@ -126,7 +126,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([ diff --git a/tutorials/render_textured_meshes/index.html b/tutorials/render_textured_meshes/index.html index 5cfe99fb8..322991459 100644 --- a/tutorials/render_textured_meshes/index.html +++ b/tutorials/render_textured_meshes/index.html @@ -126,7 +126,7 @@

0. Install and Import modulesexcept ModuleNotFoundError: need_pytorch3d=True if need_pytorch3d: - if torch.__version__.startswith("1.12.") and sys.platform.startswith("linux"): + if torch.__version__.startswith("1.13.") and sys.platform.startswith("linux"): # We try to install PyTorch3D via a released wheel. pyt_version_str=torch.__version__.split("+")[0].replace(".", "") version_str="".join([