Vladimir Mikulik commited on
Commit
d4d39d0
Β·
1 Parent(s): 9bdaa77

add typing_extensions to list of deps.

Browse files
Files changed (50) hide show
  1. README.md +1 -1
  2. {compiler β†’ tracr/compiler}/__init__.py +0 -0
  3. {compiler β†’ tracr/compiler}/assemble.py +0 -0
  4. {compiler β†’ tracr/compiler}/assemble_test.py +0 -0
  5. {compiler β†’ tracr/compiler}/basis_inference.py +0 -0
  6. {compiler β†’ tracr/compiler}/basis_inference_test.py +0 -0
  7. {compiler β†’ tracr/compiler}/compiling.py +0 -0
  8. {compiler β†’ tracr/compiler}/craft_graph_to_model.py +0 -0
  9. {compiler β†’ tracr/compiler}/craft_graph_to_model_test.py +0 -0
  10. {compiler β†’ tracr/compiler}/craft_model_to_transformer.py +0 -0
  11. {compiler β†’ tracr/compiler}/expr_to_craft_graph.py +0 -0
  12. {compiler β†’ tracr/compiler}/expr_to_craft_graph_test.py +0 -0
  13. {compiler β†’ tracr/compiler}/lib.py +0 -0
  14. {compiler β†’ tracr/compiler}/lib_test.py +0 -0
  15. {compiler β†’ tracr/compiler}/nodes.py +0 -0
  16. {compiler β†’ tracr/compiler}/rasp_to_craft_integration_test.py +0 -0
  17. {compiler β†’ tracr/compiler}/rasp_to_graph.py +0 -0
  18. {compiler β†’ tracr/compiler}/rasp_to_graph_test.py +0 -0
  19. {compiler β†’ tracr/compiler}/rasp_to_transformer_integration_test.py +0 -0
  20. {compiler β†’ tracr/compiler}/test_cases.py +0 -0
  21. {craft β†’ tracr/craft}/bases.py +0 -0
  22. {craft β†’ tracr/craft}/bases_test.py +0 -0
  23. {craft β†’ tracr/craft}/chamber/categorical_attn.py +0 -0
  24. {craft β†’ tracr/craft}/chamber/categorical_attn_test.py +0 -0
  25. {craft β†’ tracr/craft}/chamber/categorical_mlp.py +0 -0
  26. {craft β†’ tracr/craft}/chamber/categorical_mlp_test.py +0 -0
  27. {craft β†’ tracr/craft}/chamber/numerical_mlp.py +0 -0
  28. {craft β†’ tracr/craft}/chamber/numerical_mlp_test.py +0 -0
  29. {craft β†’ tracr/craft}/chamber/selector_width.py +0 -0
  30. {craft β†’ tracr/craft}/chamber/selector_width_test.py +0 -0
  31. {craft β†’ tracr/craft}/tests_common.py +0 -0
  32. {craft β†’ tracr/craft}/transformers.py +0 -0
  33. {craft β†’ tracr/craft}/transformers_test.py +0 -0
  34. {craft β†’ tracr/craft}/vectorspace_fns.py +0 -0
  35. {craft β†’ tracr/craft}/vectorspace_fns_test.py +0 -0
  36. {examples β†’ tracr/examples}/Visualize_Tracr_Models.ipynb +0 -0
  37. {rasp β†’ tracr/rasp}/causal_eval.py +0 -0
  38. {rasp β†’ tracr/rasp}/causal_eval_test.py +0 -0
  39. {rasp β†’ tracr/rasp}/rasp.py +0 -0
  40. {rasp β†’ tracr/rasp}/rasp_test.py +0 -0
  41. {transformer β†’ tracr/transformer}/attention.py +0 -0
  42. {transformer β†’ tracr/transformer}/compressed_model.py +0 -0
  43. {transformer β†’ tracr/transformer}/compressed_model_test.py +0 -0
  44. {transformer β†’ tracr/transformer}/encoder.py +0 -0
  45. {transformer β†’ tracr/transformer}/encoder_test.py +0 -0
  46. {transformer β†’ tracr/transformer}/model.py +0 -0
  47. {transformer β†’ tracr/transformer}/model_test.py +0 -0
  48. {utils β†’ tracr/utils}/debugging.py +0 -0
  49. {utils β†’ tracr/utils}/errors.py +0 -0
  50. {utils β†’ tracr/utils}/errors_test.py +0 -0
README.md CHANGED
@@ -20,7 +20,7 @@ This is not an officially supported Google product.
20
  Installation is currently a bit manual. First, install dependencies:
21
 
22
  ```
23
- pip3 install chex einops dm-haiku networkx
24
  ```
25
 
26
  Second, clone the repo:
 
20
  Installation is currently a bit manual. First, install dependencies:
21
 
22
  ```
23
+ pip3 install chex einops dm-haiku networkx typing_extensions
24
  ```
25
 
26
  Second, clone the repo:
{compiler β†’ tracr/compiler}/__init__.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/assemble.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/assemble_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/basis_inference.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/basis_inference_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/compiling.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/craft_graph_to_model.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/craft_graph_to_model_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/craft_model_to_transformer.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/expr_to_craft_graph.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/expr_to_craft_graph_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/lib.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/lib_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/nodes.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/rasp_to_craft_integration_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/rasp_to_graph.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/rasp_to_graph_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/rasp_to_transformer_integration_test.py RENAMED
File without changes
{compiler β†’ tracr/compiler}/test_cases.py RENAMED
File without changes
{craft β†’ tracr/craft}/bases.py RENAMED
File without changes
{craft β†’ tracr/craft}/bases_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/categorical_attn.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/categorical_attn_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/categorical_mlp.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/categorical_mlp_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/numerical_mlp.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/numerical_mlp_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/selector_width.py RENAMED
File without changes
{craft β†’ tracr/craft}/chamber/selector_width_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/tests_common.py RENAMED
File without changes
{craft β†’ tracr/craft}/transformers.py RENAMED
File without changes
{craft β†’ tracr/craft}/transformers_test.py RENAMED
File without changes
{craft β†’ tracr/craft}/vectorspace_fns.py RENAMED
File without changes
{craft β†’ tracr/craft}/vectorspace_fns_test.py RENAMED
File without changes
{examples β†’ tracr/examples}/Visualize_Tracr_Models.ipynb RENAMED
File without changes
{rasp β†’ tracr/rasp}/causal_eval.py RENAMED
File without changes
{rasp β†’ tracr/rasp}/causal_eval_test.py RENAMED
File without changes
{rasp β†’ tracr/rasp}/rasp.py RENAMED
File without changes
{rasp β†’ tracr/rasp}/rasp_test.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/attention.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/compressed_model.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/compressed_model_test.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/encoder.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/encoder_test.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/model.py RENAMED
File without changes
{transformer β†’ tracr/transformer}/model_test.py RENAMED
File without changes
{utils β†’ tracr/utils}/debugging.py RENAMED
File without changes
{utils β†’ tracr/utils}/errors.py RENAMED
File without changes
{utils β†’ tracr/utils}/errors_test.py RENAMED
File without changes