Spaces:
Sleeping
Sleeping
Vladimir Mikulik
commited on
Commit
Β·
d4d39d0
1
Parent(s):
9bdaa77
add typing_extensions to list of deps.
Browse files- README.md +1 -1
- {compiler β tracr/compiler}/__init__.py +0 -0
- {compiler β tracr/compiler}/assemble.py +0 -0
- {compiler β tracr/compiler}/assemble_test.py +0 -0
- {compiler β tracr/compiler}/basis_inference.py +0 -0
- {compiler β tracr/compiler}/basis_inference_test.py +0 -0
- {compiler β tracr/compiler}/compiling.py +0 -0
- {compiler β tracr/compiler}/craft_graph_to_model.py +0 -0
- {compiler β tracr/compiler}/craft_graph_to_model_test.py +0 -0
- {compiler β tracr/compiler}/craft_model_to_transformer.py +0 -0
- {compiler β tracr/compiler}/expr_to_craft_graph.py +0 -0
- {compiler β tracr/compiler}/expr_to_craft_graph_test.py +0 -0
- {compiler β tracr/compiler}/lib.py +0 -0
- {compiler β tracr/compiler}/lib_test.py +0 -0
- {compiler β tracr/compiler}/nodes.py +0 -0
- {compiler β tracr/compiler}/rasp_to_craft_integration_test.py +0 -0
- {compiler β tracr/compiler}/rasp_to_graph.py +0 -0
- {compiler β tracr/compiler}/rasp_to_graph_test.py +0 -0
- {compiler β tracr/compiler}/rasp_to_transformer_integration_test.py +0 -0
- {compiler β tracr/compiler}/test_cases.py +0 -0
- {craft β tracr/craft}/bases.py +0 -0
- {craft β tracr/craft}/bases_test.py +0 -0
- {craft β tracr/craft}/chamber/categorical_attn.py +0 -0
- {craft β tracr/craft}/chamber/categorical_attn_test.py +0 -0
- {craft β tracr/craft}/chamber/categorical_mlp.py +0 -0
- {craft β tracr/craft}/chamber/categorical_mlp_test.py +0 -0
- {craft β tracr/craft}/chamber/numerical_mlp.py +0 -0
- {craft β tracr/craft}/chamber/numerical_mlp_test.py +0 -0
- {craft β tracr/craft}/chamber/selector_width.py +0 -0
- {craft β tracr/craft}/chamber/selector_width_test.py +0 -0
- {craft β tracr/craft}/tests_common.py +0 -0
- {craft β tracr/craft}/transformers.py +0 -0
- {craft β tracr/craft}/transformers_test.py +0 -0
- {craft β tracr/craft}/vectorspace_fns.py +0 -0
- {craft β tracr/craft}/vectorspace_fns_test.py +0 -0
- {examples β tracr/examples}/Visualize_Tracr_Models.ipynb +0 -0
- {rasp β tracr/rasp}/causal_eval.py +0 -0
- {rasp β tracr/rasp}/causal_eval_test.py +0 -0
- {rasp β tracr/rasp}/rasp.py +0 -0
- {rasp β tracr/rasp}/rasp_test.py +0 -0
- {transformer β tracr/transformer}/attention.py +0 -0
- {transformer β tracr/transformer}/compressed_model.py +0 -0
- {transformer β tracr/transformer}/compressed_model_test.py +0 -0
- {transformer β tracr/transformer}/encoder.py +0 -0
- {transformer β tracr/transformer}/encoder_test.py +0 -0
- {transformer β tracr/transformer}/model.py +0 -0
- {transformer β tracr/transformer}/model_test.py +0 -0
- {utils β tracr/utils}/debugging.py +0 -0
- {utils β tracr/utils}/errors.py +0 -0
- {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
|