fishersketch 0.0.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,6 @@
|
|
|
1
|
+
Copyright (c) 2026 Sideplane AI. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This placeholder distribution reserves the package name "fishersketch" for
|
|
4
|
+
Sideplane AI. It contains no functional software. No license to any intellectual
|
|
5
|
+
property is granted. A full release under terms to be determined by Sideplane AI
|
|
6
|
+
is pending.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fishersketch
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: FisherSketch — name reserved by Sideplane AI; full release pending.
|
|
5
|
+
Author-email: Sideplane AI <contact@sideplane.ai>
|
|
6
|
+
License: Proprietary -- All Rights Reserved
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: Other/Proprietary License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# FisherSketch
|
|
15
|
+
|
|
16
|
+
**Name reserved by Sideplane AI — full release pending.**
|
|
17
|
+
|
|
18
|
+
This is a placeholder. The complete package is not yet published.
|
|
19
|
+
|
|
20
|
+
FisherSketch measures whether two tasks' parameter *updates* point together —
|
|
21
|
+
streaming Fisher-alignment task signatures at vocabulary scale.
|
|
22
|
+
|
|
23
|
+
Reference: Sweeney, *The Geometry of Updates: Fisher Alignment at Vocabulary Scale*,
|
|
24
|
+
ICML 2026 (PMLR 306).
|
|
25
|
+
|
|
26
|
+
© 2026 Sideplane AI. All rights reserved.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# FisherSketch
|
|
2
|
+
|
|
3
|
+
**Name reserved by Sideplane AI — full release pending.**
|
|
4
|
+
|
|
5
|
+
This is a placeholder. The complete package is not yet published.
|
|
6
|
+
|
|
7
|
+
FisherSketch measures whether two tasks' parameter *updates* point together —
|
|
8
|
+
streaming Fisher-alignment task signatures at vocabulary scale.
|
|
9
|
+
|
|
10
|
+
Reference: Sweeney, *The Geometry of Updates: Fisher Alignment at Vocabulary Scale*,
|
|
11
|
+
ICML 2026 (PMLR 306).
|
|
12
|
+
|
|
13
|
+
© 2026 Sideplane AI. All rights reserved.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
# ============================================================================
|
|
6
|
+
# NAME-CLAIM PLACEHOLDER for the PyPI project `fishersketch`.
|
|
7
|
+
# Purpose: reserve the name for Sideplane AI. Contains NO algorithm and NO
|
|
8
|
+
# patent-relevant content -- metadata only. This is the artifact you upload NOW.
|
|
9
|
+
# The real package (../fishersketch, v0.1.0) ships to the SAME project LATER,
|
|
10
|
+
# once the patent clears. Note: this placeholder intentionally does NOT carry
|
|
11
|
+
# the "Private :: Do Not Upload" classifier, so it CAN be uploaded.
|
|
12
|
+
# ============================================================================
|
|
13
|
+
|
|
14
|
+
[project]
|
|
15
|
+
name = "fishersketch"
|
|
16
|
+
version = "0.0.0"
|
|
17
|
+
description = "FisherSketch — name reserved by Sideplane AI; full release pending."
|
|
18
|
+
readme = "README.md"
|
|
19
|
+
requires-python = ">=3.8"
|
|
20
|
+
authors = [{ name = "Sideplane AI", email = "contact@sideplane.ai" }]
|
|
21
|
+
license = { text = "Proprietary -- All Rights Reserved" }
|
|
22
|
+
classifiers = [
|
|
23
|
+
"License :: Other/Proprietary License",
|
|
24
|
+
"Development Status :: 1 - Planning",
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build.targets.wheel]
|
|
29
|
+
packages = ["src/fishersketch"]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""FisherSketch — name reserved by Sideplane AI.
|
|
2
|
+
|
|
3
|
+
This is a placeholder release. The full package is not yet published. The PyPI
|
|
4
|
+
name ``fishersketch`` is reserved by Sideplane AI; a complete release is pending.
|
|
5
|
+
|
|
6
|
+
Reference: Sweeney, "The Geometry of Updates: Fisher Alignment at Vocabulary
|
|
7
|
+
Scale," ICML 2026 (PMLR 306).
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "0.0.0"
|
|
11
|
+
|
|
12
|
+
_MESSAGE = (
|
|
13
|
+
"FisherSketch is not yet released. The name 'fishersketch' is reserved by "
|
|
14
|
+
"Sideplane AI; a full release is pending. See ICML 2026 (PMLR 306)."
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def __getattr__(name: str):
|
|
19
|
+
# Any attempt to use the API on the placeholder gets a clear, friendly notice.
|
|
20
|
+
raise NotImplementedError(_MESSAGE)
|