generated from kyegomez/Python-Package-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Nov 17, 2024
1 parent
a3bdfe4
commit 1f43fff
Showing
6 changed files
with
57 additions
and
12 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
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 |
---|---|---|
|
@@ -3,15 +3,15 @@ requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "paper" | ||
name = "srt-torch" | ||
version = "0.0.1" | ||
description = "Paper - Pytorch" | ||
description = "Surgical Robot Transformer (SRT): Imitation Learning for Surgical Tasks" | ||
license = "MIT" | ||
authors = ["Kye Gomez <[email protected]>"] | ||
homepage = "https://github.com/kyegomez/paper" | ||
documentation = "https://github.com/kyegomez/paper" # Add this if you have documentation. | ||
homepage = "https://github.com/Agora-Lab-AI/SRT" | ||
documentation = "https://github.com/Agora-Lab-AI/SRT" # Add this if you have documentation. | ||
readme = "README.md" # Assuming you have a README.md | ||
repository = "https://github.com/kyegomez/paper" | ||
repository = "https://github.com/Agora-Lab-AI/SRT" | ||
keywords = ["artificial intelligence", "deep learning", "optimizers", "Prompt Engineering"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -23,12 +23,8 @@ classifiers = [ | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
swarms = "*" | ||
zetascale = "*" | ||
|
||
[tool.poetry.dev-dependencies] | ||
# Add development dependencies here | ||
|
||
loguru = "*" | ||
torch = "*" | ||
|
||
[tool.poetry.group.lint.dependencies] | ||
ruff = "^0.1.6" | ||
|
Empty file.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from srt_torch.main import ( | ||
SurgicalRobotTransformer, | ||
ModelConfig, | ||
RobotObservation, | ||
RobotAction, | ||
ImageEncoder, | ||
TransformerBlock, | ||
ActionPredictor, | ||
normalize_rotation_6d, | ||
) | ||
|
||
__all__ = [ | ||
"SurgicalRobotTransformer", | ||
"ModelConfig", | ||
"RobotObservation", | ||
"RobotAction", | ||
"ImageEncoder", | ||
"TransformerBlock", | ||
"ActionPredictor", | ||
"normalize_rotation_6d", | ||
] |
File renamed without changes.