Skip to content

Commit 5218f45

Browse files
patricklabatutfacebook-github-bot
authored andcommitted
Add pattern linter for project names
Summary: Add pattern linter for PyTorch3D and SlowFast, this will suggest typo fixes whenever the wrong case is accidentally used. Reviewed By: wanyenlo Differential Revision: D20498696 fbshipit-source-id: 1a3f4702bd0dbe06e81d0f301b3ea38ea62e7885
1 parent eeb6bd3 commit 5218f45

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pip install scikit-image matplotlib imageio
4545
pip install black isort flake8 flake8-bugbear flake8-comprehensions
4646
```
4747

48-
## Installing prebuilt binaries for Pytorch3d
48+
## Installing prebuilt binaries for PyTorch3D
4949
After installing the above dependencies, run one of the following commands:
5050

5151
### 1. Install with CUDA support from Anaconda Cloud, on Linux only

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ We also have deep dive notes on several API components:
5555

5656
## Development
5757

58-
We welcome new contributions to Pytorch3d and we will be actively maintaining this library! Please refer to [CONTRIBUTING.md](./.github/CONTRIBUTING.md) for full instructions on how to run the code, tests and linter, and submit your pull requests.
58+
We welcome new contributions to PyTorch3D and we will be actively maintaining this library! Please refer to [CONTRIBUTING.md](./.github/CONTRIBUTING.md) for full instructions on how to run the code, tests and linter, and submit your pull requests.
5959

6060

6161
## Contributors

pytorch3d/renderer/cameras.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def get_world_to_view_transform(R=r, T=t) -> Transform3d:
879879
matrix to go from world space to view space by applying a rotation and
880880
a translation.
881881
882-
Pytorch3d uses the same convention as Hartley & Zisserman.
882+
PyTorch3D uses the same convention as Hartley & Zisserman.
883883
I.e., for camera extrinsic parameters R (rotation) and T (translation),
884884
we map a 3D point `X_world` in world coordinates to
885885
a point `X_cam` in camera coordinates with:

scripts/parse_tutorials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def gen_tutorials(repo_dir: str) -> None:
110110
"--repo_dir",
111111
metavar="path",
112112
required=True,
113-
help="Pytorch3D repo directory.",
113+
help="PyTorch3D repo directory.",
114114
)
115115
args = parser.parse_args()
116116
gen_tutorials(args.repo_dir)

0 commit comments

Comments
 (0)