Skip to content

Commit

Permalink
[FEATS][__Init__]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Mar 4, 2024
1 parent 763d4e9 commit 620c435
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# Forward pass
y = model(x)

print(y)
print(y)
10 changes: 8 additions & 2 deletions griffin_torch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
from griffin_torch.main import Griffin
from griffin_torch.main import output_head, RMSNorm, GriffinResidualBlock, Griffin

__all__ = ["Griffin"]

__all__ = [
output_head,
RMSNorm,
GriffinResidualBlock,
Griffin,
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "griffin-torch"
version = "0.0.2"
version = "0.0.3"
description = "Griffin - Pytorch"
license = "MIT"
authors = ["Kye Gomez <[email protected]>"]
Expand Down

0 comments on commit 620c435

Please sign in to comment.