diff --git a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb index f3ec139b..da3c89ee 100644 --- a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb +++ b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb @@ -192,7 +192,7 @@ "outputs": [], "source": [ "# Load the dolphin mesh.\n", - "trg_obj = os.path.join('dolphin.obj')" + "trg_obj = 'dolphin.obj'" ] }, { @@ -247,7 +247,7 @@ "id": "dYWDl4VGWHRK" }, "source": [ - "### Visualize the source and target meshes" + "## 2. Visualize the source and target meshes" ] }, { @@ -485,7 +485,7 @@ "final_verts = final_verts * scale + center\n", "\n", "# Store the predicted mesh using save_obj\n", - "final_obj = os.path.join('./', 'final_model.obj')\n", + "final_obj = 'final_model.obj'\n", "save_obj(final_obj, final_verts, final_faces)" ] },