psaiops 0.3.3__tar.gz → 0.3.4__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.

Potentially problematic release.


This version of psaiops might be problematic. Click here for more details.

Files changed (31) hide show
  1. {psaiops-0.3.3 → psaiops-0.3.4}/PKG-INFO +1 -1
  2. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/router/app.py +1 -1
  3. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/shapley/app.py +1 -1
  4. {psaiops-0.3.3 → psaiops-0.3.4}/pyproject.toml +1 -1
  5. {psaiops-0.3.3 → psaiops-0.3.4}/.github/README.md +0 -0
  6. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/__init__.py +0 -0
  7. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/combine/__init__.py +0 -0
  8. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/common/__init__.py +0 -0
  9. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/common/data.py +0 -0
  10. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/common/dropdown.py +0 -0
  11. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/__init__.py +0 -0
  12. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/contrast/__init__.py +0 -0
  13. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/contrast/app.py +0 -0
  14. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/contrast/lib.py +0 -0
  15. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/maths/__init__.py +0 -0
  16. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/maths/app.py +0 -0
  17. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/compose/maths/lib.py +0 -0
  18. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/edit/__init__.py +0 -0
  19. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/reverse/__init__.py +0 -0
  20. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/__init__.py +0 -0
  21. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/attention/__init__.py +0 -0
  22. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/attention/app.py +0 -0
  23. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/attention/lib.py +0 -0
  24. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/router/__init__.py +0 -0
  25. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/router/lib.py +0 -0
  26. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/shapley/__init__.py +0 -0
  27. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/shapley/lib.py +0 -0
  28. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/similarity/__init__.py +0 -0
  29. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/similarity/app.py +0 -0
  30. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/score/similarity/lib.py +0 -0
  31. {psaiops-0.3.3 → psaiops-0.3.4}/psaiops/steer/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: psaiops
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Web apps to inspect & engineer NN activations.
5
5
  License: .github/LICENSE.md
6
6
  Author: apehex
@@ -9,7 +9,7 @@ import psaiops.score.router.lib
9
9
  # META #########################################################################
10
10
 
11
11
  STYLE = '''.white-text span { color: white; }'''
12
- TITLE = '''Attention Scoring'''
12
+ TITLE = '''Router Scoring'''
13
13
  INTRO = '''Plot the logits of the router for a given prompt.\nUnder construction, only "openai/gpt-oss-20b" is available for now.'''
14
14
 
15
15
  MODEL = 'openai/gpt-oss-20b'
@@ -9,7 +9,7 @@ import psaiops.score.shapley.lib
9
9
  # META #########################################################################
10
10
 
11
11
  STYLE = '''.white-text span { color: white; }'''
12
- TITLE = '''Attention Scoring'''
12
+ TITLE = '''Shapley Scoring'''
13
13
  INTRO = '''Score each token according to their [Shapley value](https://en.wikipedia.org/wiki/Shapley_value).\nUnder construction, only "openai/gpt-oss-20b" is available for now.'''
14
14
 
15
15
  MODEL = 'openai/gpt-oss-20b'
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "psaiops"
3
- version = "0.3.3"
3
+ version = "0.3.4"
4
4
  description = "Web apps to inspect & engineer NN activations."
5
5
  license = ".github/LICENSE.md"
6
6
  readme = ".github/README.md"
File without changes
File without changes
File without changes