-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replaced differentiable robot model with labs FK implementation. Jacobians tests not passing yet. * Revert back to dict based API. * Moved FK out of labs. * Add urdf_parser_py to requirements. * Remove duplicate pose computation when computing jacobians. * Moved FK code to new torchkin project. * Update precommit config with torchkin info. * Update theseus with torchkin import. * Remove unnecessary function. * Fixed torchkin build errors. * Move FK test data to a different folder. * test_jacobian works * no need to compute dlocal since we assume these joint states yield the poses * Update precommit config with torchkin info. * add warning message * update readme * Update warning for body jacobians. * Fix CI errors. --------- Co-authored-by: Taosha Fan <[email protected]> Co-authored-by: Mustafa Mukadam <[email protected]>
- Loading branch information
1 parent
2281b53
commit a12c152
Showing
22 changed files
with
560 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
exclude: "setup.py|torchlie/setup.py" | ||
exclude: "setup.py|torchlie/setup.py|torchkin/setup.py" | ||
|
||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 23.3.0 | ||
hooks: | ||
- id: black | ||
files: "^theseus|^examples|^tests|^torchlie" | ||
files: "^theseus|^examples|^tests|^torchlie|^torchkin" | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: 6.0.0 | ||
hooks: | ||
- id: flake8 | ||
files: "^theseus|^torchlie" | ||
files: "^theseus|^torchlie|^torchkin" | ||
|
||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v1.4.0 | ||
hooks: | ||
- id: mypy | ||
additional_dependencies: [torch, tokenize-rt==3.2.0, types-PyYAML, types-mock] | ||
args: [--no-strict-optional, --ignore-missing-imports, --implicit-reexport, --explicit-package-bases] | ||
files: "^theseus|^torchlie" | ||
files: "^theseus|^torchlie|^torchkin" | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
files: "^theseus|^examples|^torchlie" | ||
files: "^theseus|^examples|^torchlie|^torchkin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ scikit-sparse>=0.4.5 | |
pytest>=6.2.1 | ||
pybind11>=2.7.1 | ||
semantic-version==2.10.0 | ||
torchlie | ||
torchlie | ||
torchkin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.