This release is a pre-release and may not be stable for production use.
Interpret and manipulate the internals of deep learning models
Documentation | GitHub | Discord | Forum | Twitter | Paper
About
nnsight lets you get inside a model's forward pass. Open a with model.trace(...)
block and write ordinary Python against any internal value — a layer's output, an
attention pattern, a gradient — as if you already had it: read it, edit it, save it.
You don't register hooks or refactor the model; you write the intervention in the
order it happens, and nnsight runs it interleaved with the real forward pass.
The same trace runs on a model on your laptop or, with remote=True, on a model far
too large for it via the NDIF infrastructure. nnsight works with
any PyTorch model and ships wrappers for HuggingFace, diffusers, and vLLM.
📖 For how it works under the hood — tracing, interleaving, the envoy tree — read NNsight.md. Task recipes live under
docs/.
Installation
pip install nnsight
Quick start
from nnsight import TransformersModel
model = TransformersModel("openai-community/gpt2", dispatch=True)
with model.trace("The Eiffel Tower is in the city of"):
# edit a layer's output in place — the model computes on the edited value
model.transformer.h[0].output[:] = 0
# read a hidden state further down (a [batch, seq, hidden] tensor)
hidden = model.transformer.h[6].output.save()
# keep the final logits
logits = model.output.logits.save()
print(hidden.shape) # torch.Size([1, 10, 768])
print(logits.argmax(-1)) # next-token predictions
Inside the block you're not running the model — you're describing what to do when it
runs. Reading .output gives you the real tensor once the model reaches that module;
assigning to it splices your value in. Mark anything you want after the block with
.save() (or nnsight.save(x)).
A GPT-2 block's
.outputis a plain tensor; some modules (like attention) return a tuple, so you'd index.output[0].print(model)orprint(module.source)shows the shape.
What you can do
Generate — generate returns token ids on tracer.result:
with model.generate("The Eiffel Tower is in", max_new_tokens=3) as tracer:
ids = tracer.result.save()
print(model.tokenizer.decode(ids[0])) # "The Eiffel Tower is in the middle of"
Reach into each generation step — save a container, append raw values (use a bounded range so code after the loop still runs):
import nnsight
with model.generate("Hello", max_new_tokens=5) as tracer:
tokens = nnsight.save([])
for step in tracer.iter[:5]:
tokens.append(model.output.logits[0, -1].argmax(-1))
Batch several prompts in one pass — each invoke block sees only its own rows:
with model.trace() as tracer:
with tracer.invoke("The Eiffel Tower is in"):
eiffel = model.transformer.h[-1].output[:, -1].save()
with tracer.invoke("The Great Wall is in"):
wall = model.transformer.h[-1].output[:, -1].save()
Take gradients with respect to an internal value:
with model.trace("The Eiffel Tower is in the city of"):
hidden = model.transformer.h[-1].output
with model.output.logits.sum().backward():
grad = hidden.grad.save()
Apply modules out of order (a logit lens — decode a middle layer through the head):
with model.trace("The Eiffel Tower is in the city of"):
hidden = model.transformer.h[-1].output
token = model.lm_head(model.transformer.ln_f(hidden))[0, -1].argmax(-1).save()
print(model.tokenizer.decode(token)) # " Paris"
Run it remotely on NDIF — the same trace, on a model you can't host:
from nnsight import CONFIG
CONFIG.set_default_api_key("YOUR_NDIF_KEY")
model = TransformersModel("meta-llama/Llama-3.1-8B")
with model.trace("The Eiffel Tower is in", remote=True):
hidden = model.model.layers[-1].output.save()
There's more — source tracing into a module's forward (.source), persistent
edit(), skip(), scan() for shapes, cache(), session(),
and the vLLM and diffusion runtimes. See docs/ and
NNsight.md.
Your own model
Any torch.nn.Module works — wrap it in NNsight and the whole tree becomes
traceable:
import torch
from nnsight import NNsight
net = torch.nn.Sequential(torch.nn.Linear(5, 10), torch.nn.Linear(10, 2))
model = NNsight(net)
with model.trace(torch.rand(1, 5)):
model[0].output[:] = 0 # zero the first layer's output
out = model.output.save()
print(out) # [1, 2], computed with layer 0 zeroed
Using nnsight from an LLM agent
Give an agent up-to-date nnsight knowledge one of these ways:
- Skills — in Claude Code:
/plugin marketplace add https://github.com/ndif-team/skills.gitthen/plugin install nnsight@skills. In OpenAI Codex:skill-installer install https://github.com/ndif-team/skills.git. - Context7 MCP — add
use context7to prompts, or point your MCP client athttps://mcp.context7.com/mcp(see Context7). - Docs in context — hand the agent CLAUDE.md (routes to the task docs) and NNsight.md (the internals).
Learn more
- nnsight.net — tutorials, guides, API reference
- NNsight.md — the design-and-implementation manual
- CLAUDE.md + docs/ — the task reference
- nnsight.net/status — models available on NDIF
Citation
If you use nnsight in your research, please cite:
@article{fiottokaufman2024nnsightndifdemocratizingaccess,
title={NNsight and NDIF: Democratizing Access to Foundation Model Internals},
author={Jaden Fiotto-Kaufman and Alexander R Loftus and Eric Todd and Jannik Brinkmann and Caden Juang and Koyena Pal and Can Rager and Aaron Mueller and Samuel Marks and Arnab Sen Sharma and Francesca Lucchetti and Michael Ripa and Adam Belfki and Nikhil Prakash and Sumeet Multani and Carla Brodley and Arjun Guha and Jonathan Bell and Byron Wallace and David Bau},
year={2024},
eprint={2407.14561},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2407.14561},
}
Release files for nnsight 0.8.0rc1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nnsight-0.8.0rc1.tar.gz | 826.9 kB | Details |
Built distributions (wheels)
Total release size: 7.8 MB
Release files / nnsight-0.8.0rc1.tar.gz
| Download URL | nnsight-0.8.0rc1.tar.gz |
|---|---|
| Size | 826.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cca05ff7ed1a3689d94083f18299768e82900ade1cc40e3fd143e8a5c7125055
|
|
BLAKE2b-256 checksum How to use checksums |
9fb6864b97c4967795526d62a13e81365138416428fc631943b7af8def94ae6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314t-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 291.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
678326a7183f79cec4e459acc7c4652c5b26f2e2cd867b534a8ca310635824c1
|
|
BLAKE2b-256 checksum How to use checksums |
ee3be60099f6730fdf868ce771e915b50277959db26fbe4cf494863d6f4f7e96
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314t-win32.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314t-win32.whl |
|---|---|
| Size | 291.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
c3bc7ffcd912d807f7e0d0dbb0d5295ad63937d29a70422b3759909ee5f3f737
|
|
BLAKE2b-256 checksum How to use checksums |
09bdd7e301c2440e9e2a548a819f82e5b5e79c94ed9b476a7dd473f99c314b34
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 296.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d4be20e34cd9bbaf27bb157e3b23e731747207332df7160de30aba9a68220195
|
|
BLAKE2b-256 checksum How to use checksums |
fc961f1ccf7e9c8a259664ef6b0c6429c30c9f90d640838108307f4b2dcbbc62
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4f81ed549d69232716e12d8fc24e49cfb61411f0434d04a9fe8c360a91121d34
|
|
BLAKE2b-256 checksum How to use checksums |
5f3b0bbce5738f1d031f730d43338b1c63d2e53b43953cb46abd6516d965876e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 291.5 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
3c17e7ce805ed3825c4afe905aa1abd573dbafd9196fc6ac3d0d0a431b262f86
|
|
BLAKE2b-256 checksum How to use checksums |
603f4413bf8d328c772b7693f0c46cd989667a8a8d4f348c75a6f89b3c72f577
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314-win32.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314-win32.whl |
|---|---|
| Size | 291.1 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
583e4708c269f5f5b451fae389414dc09deeea24a81c170eb4678853817ac43b
|
|
BLAKE2b-256 checksum How to use checksums |
172e4e781c811fe9952e724a49dae8e6bce3fa8d3b2de76c73b982abfd0edd6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 296.0 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
6a9898e7c9490b6d897ba468ef8899f6922236ce7d00c05fee9b6cae8260cafe
|
|
BLAKE2b-256 checksum How to use checksums |
96baa276ae7bcd75dd72fc1ad7d21773b206b89e37f20f94426c220f12d62008
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.4 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
53036cf01fa16b386deb6b32dd4b8af403d86bc0a0bb7a55f5b8b840962b803e
|
|
BLAKE2b-256 checksum How to use checksums |
a488c514eab4790095748687cb35534b6c691efb4d5a1897712e9440103970e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp313-cp313-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 290.9 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f66801964d4a1163fd2d7b657fd9a2e08b7bcd38f63a89583a8f50bca5cf2e19
|
|
BLAKE2b-256 checksum How to use checksums |
38544695d16496add9188be866db822d22cb37e7fb6bed4259a6183b6cf9d03c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp313-cp313-win32.whl
| Download URL | nnsight-0.8.0rc1-cp313-cp313-win32.whl |
|---|---|
| Size | 290.6 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
8e79d4c28d6a6e9df87428c8fb32803491ea8f7e0bd2796824da6167a5e397ab
|
|
BLAKE2b-256 checksum How to use checksums |
0d99940bb4a21140b32fed4dff2dbee95c6be69aa185a6ee387c8a10b63eb83f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 296.0 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
72e6e0b52c44f2ce44fa63bb47cab7706ed4428f165039553a0e6aec7e501baa
|
|
BLAKE2b-256 checksum How to use checksums |
f3ebeeb6b5d3c91bbc1c3547263109e6ef7e177930f85ce75b7007581fe6fff4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.4 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b234ac002f1275e7ec3e5115c80de9ffcf49ee8cc5058225d1048a9f8889ebe4
|
|
BLAKE2b-256 checksum How to use checksums |
42582b7595c9e125e49f7addc917a57b54634c0336a18b2166657d40a0f3c25b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp312-cp312-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 290.9 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fd1f63263a84b9d4a96b457858c0f8d2258b961ad57708606fb9f2ca58fd44d5
|
|
BLAKE2b-256 checksum How to use checksums |
3fd8c02deb92e42586570b03a5c9e79ead29020b4fb10fd9c4446574c05d943a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp312-cp312-win32.whl
| Download URL | nnsight-0.8.0rc1-cp312-cp312-win32.whl |
|---|---|
| Size | 290.6 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b9b10f143641b2f77a5eaa1425324d1a7478b5615a9dd96eeb0450323765199d
|
|
BLAKE2b-256 checksum How to use checksums |
b154e6caf9092ec92b5ed95dd5e9b86de3857743155ff63aa0eee9212e752de9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 295.9 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
37c7dfc760afe47eed675e714e39b19a470fc0ffb7a1f1a6c02dc83345d58d76
|
|
BLAKE2b-256 checksum How to use checksums |
c5d1dc086c0235bb7ac0cb103d1549aa142c57f348ef922cc37bae628f094a61
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.4 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
16fc94dc8f61356e4149464f7d155105ce2675caf4bb53f8a5a3c24af7276c6a
|
|
BLAKE2b-256 checksum How to use checksums |
67d9500b8cf876c2b1999bff7666bb91795bdf3c8b7966619e661b9d4d5347a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp311-cp311-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 290.9 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d4fc013ed8992014ce432723a7c860ae9d39ad59c82489b2a60e1d66c81ffe35
|
|
BLAKE2b-256 checksum How to use checksums |
06cb7c410769cab681e86614e3481a338e784baffe623f1c3013b55ba59ffa6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp311-cp311-win32.whl
| Download URL | nnsight-0.8.0rc1-cp311-cp311-win32.whl |
|---|---|
| Size | 290.6 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
dfffde67e832606dc41e363d8f8a60b5a5ceff90096526e4050e1484b67121ff
|
|
BLAKE2b-256 checksum How to use checksums |
35a5c4073b560a3738836f68ab7761b8513df6f00bf0a3238e7397e9ebca02b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 295.6 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
a0b836d4817f36f3412c0677827887a5271ae5916efd3f4af8ccbdb6084d7cfd
|
|
BLAKE2b-256 checksum How to use checksums |
5443fa679c4a7d4afb628bd3e11e832c75ff0971b7a7f87deb5e082bd57d3468
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.4 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d438247f2f5444c212db8659a15f2bed9150e8836d1fc5c924fe8e4824994578
|
|
BLAKE2b-256 checksum How to use checksums |
1746a93ee56bd7e8c1a09c071f198227c5fa23493395c6dc391c4d276046533e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp310-cp310-win_amd64.whl
| Download URL | nnsight-0.8.0rc1-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 290.9 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5b8b6ecc8d1dc1347082f6560e74b29717e90c38dab979d583d578750ed5001e
|
|
BLAKE2b-256 checksum How to use checksums |
03410cdd92efcf565cbe93607e5e6ba9b6514c5c834a649cd8c56192a4fc26b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp310-cp310-win32.whl
| Download URL | nnsight-0.8.0rc1-cp310-cp310-win32.whl |
|---|---|
| Size | 290.6 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
e16706b1aa728de96c8f36f291ae1d2fe249ef8f141765b6d350dc77eaeddfc7
|
|
BLAKE2b-256 checksum How to use checksums |
c8b49ef070ab39c9087d73c8ee925d52617a87d7e2a60da358491c45a0a1ec0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | nnsight-0.8.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 295.5 kB |
| Tags | CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
da5892fd23711ed31541bc1e074f50182150ca8fb266dc6f18dc84cc324449c2
|
|
BLAKE2b-256 checksum How to use checksums |
09011f77b9f12fe4418179be3964acc4fc040055cdbaf51eb801b44efb5c2a87
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency logRelease files / nnsight-0.8.0rc1-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | nnsight-0.8.0rc1-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 288.4 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cee6148b424d9067c3ad9c0227d9ba12b4b6aadb87eea7124e663b4517316f74
|
|
BLAKE2b-256 checksum How to use checksums |
8908b418ca623c30fb4d226036a03bb2970ed1e3e8ab9ebb5db255c6f9e1afbd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.
Transparency log