alphagenome-pytorch 0.0.1__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/PKG-INFO +2 -2
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/README.md +1 -1
- {alphagenome_pytorch-0.0.1/alphagenome → alphagenome_pytorch-0.0.3/alphagenome_pytorch}/__init__.py +1 -1
- {alphagenome_pytorch-0.0.1/alphagenome → alphagenome_pytorch-0.0.3/alphagenome_pytorch}/alphagenome.py +1 -1
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/pyproject.toml +2 -2
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/tests/test_alphagenome.py +1 -1
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/.github/workflows/python-publish.yml +0 -0
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/.github/workflows/test.yml +0 -0
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/.gitignore +0 -0
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/LICENSE +0 -0
- {alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/extended-figure-1.png +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alphagenome-pytorch
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: AlphaGenome
|
5
5
|
Project-URL: Homepage, https://pypi.org/project/alphagenome-pytorch/
|
6
6
|
Project-URL: Repository, https://github.com/lucidrains/alphagenome
|
@@ -58,7 +58,7 @@ $ pip install alphagenome-pytorch
|
|
58
58
|
|
59
59
|
```python
|
60
60
|
import torch
|
61
|
-
from
|
61
|
+
from alphagenome_pytorch import TransformerTower
|
62
62
|
|
63
63
|
transformer = TransformerTower(dim = 768, dim_pairwise = 128)
|
64
64
|
|
@@ -213,8 +213,8 @@ class SingleToPairwise(Module):
|
|
213
213
|
self.split_heads = Rearrange('b n (h d) -> b n h d', h = heads)
|
214
214
|
|
215
215
|
self.to_outer_sum = Sequential(
|
216
|
+
nn.GELU(),
|
216
217
|
LinearNoBias(dim, dim_pairwise * 2),
|
217
|
-
nn.GELU()
|
218
218
|
)
|
219
219
|
|
220
220
|
self.to_qk = LinearNoBias(dim, dim_inner * 2)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "alphagenome-pytorch"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.3"
|
4
4
|
description = "AlphaGenome"
|
5
5
|
authors = [
|
6
6
|
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
|
@@ -58,4 +58,4 @@ dev-dependencies = []
|
|
58
58
|
allow-direct-references = true
|
59
59
|
|
60
60
|
[tool.hatch.build.targets.wheel]
|
61
|
-
packages = ["
|
61
|
+
packages = ["alphagenome_pytorch"]
|
{alphagenome_pytorch-0.0.1 → alphagenome_pytorch-0.0.3}/.github/workflows/python-publish.yml
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|