perforated 0.1.0__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.
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: perforated
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Perforated AI - parameter-efficient neural network training by Perforated AI
|
|
5
|
+
Project-URL: Homepage, https://perforated.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/PerforatedAI/PerforatedAI
|
|
7
|
+
Author-email: Perforated AI <contact@perforated.ai>
|
|
8
|
+
License: Proprietary
|
|
9
|
+
Keywords: backpropagation,deep learning,neural networks,parameter efficiency,pytorch
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Perforated
|
|
19
|
+
|
|
20
|
+
**Perforated Backpropagation** by [Perforated AI](https://perforated.ai)
|
|
21
|
+
|
|
22
|
+
A parameter-efficient neural network training algorithm that adds dendritic computation layers to standard neurons, enabling models to achieve greater capability density.
|
|
23
|
+
|
|
24
|
+
## Status
|
|
25
|
+
|
|
26
|
+
This package is a placeholder. Full SDK coming soon.
|
|
27
|
+
|
|
28
|
+
## Links
|
|
29
|
+
|
|
30
|
+
- [GitHub](https://github.com/PerforatedAI/PerforatedBackpropagation)
|
|
31
|
+
- [ArXiv Paper](https://arxiv.org/abs/2501.18018)
|
|
32
|
+
- [Patent US11580403B2](https://patents.google.com/patent/US11580403B2)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Perforated
|
|
2
|
+
|
|
3
|
+
**Perforated Backpropagation** by [Perforated AI](https://perforated.ai)
|
|
4
|
+
|
|
5
|
+
A parameter-efficient neural network training algorithm that adds dendritic computation layers to standard neurons, enabling models to achieve greater capability density.
|
|
6
|
+
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
This package is a placeholder. Full SDK coming soon.
|
|
10
|
+
|
|
11
|
+
## Links
|
|
12
|
+
|
|
13
|
+
- [GitHub](https://github.com/PerforatedAI/PerforatedBackpropagation)
|
|
14
|
+
- [ArXiv Paper](https://arxiv.org/abs/2501.18018)
|
|
15
|
+
- [Patent US11580403B2](https://patents.google.com/patent/US11580403B2)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "perforated"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Perforated AI - parameter-efficient neural network training by Perforated AI"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Perforated AI", email = "contact@perforated.ai" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["deep learning", "neural networks", "backpropagation", "parameter efficiency", "pytorch"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Science/Research",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://perforated.ai"
|
|
26
|
+
Repository = "https://github.com/PerforatedAI/PerforatedAI"
|