Skip to content

Commit

Permalink
fixing conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
etaisella committed Mar 5, 2024
2 parents 5f31f09 + 6270862 commit 47267a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"trimesh",
"pandas",
"clip @ git+https://github.com/openai/CLIP.git",
"plyfile",
],
author="OpenAI",
)
2 changes: 1 addition & 1 deletion shap_e/util/notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def create_pan_cameras(size: int, device: torch.device, num_frames: int=20) -> D
xs = []
ys = []
zs = []
for theta in np.linspace(0, 2 * np.pi, num=num_frames):
for theta in np.linspace(-np.pi, np.pi, num=num_frames):
z = np.array([np.sin(theta), np.cos(theta), -0.5])
z /= np.sqrt(np.sum(z**2))
origin = -z * 4
Expand Down

0 comments on commit 47267a0

Please sign in to comment.