File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 2
2
flax.config package
3
3
====================
4
4
5
- Flax has the following global config options.
6
-
7
- .. automodule :: flax.config
5
+ .. automodule :: flax.configurations
6
+ :members:
7
+ :exclude-members: use_regular_dict
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ API Reference
4
4
.. toctree ::
5
5
:maxdepth: 3
6
6
7
+ flax.config
8
+ flax.core.frozen_dict
9
+ flax.errors
10
+ flax.jax_utils
7
11
flax.linen
8
12
flax.serialization
9
- flax.core.frozen_dict
10
13
flax.struct
11
- flax.jax_utils
12
14
flax.traceback_util
13
- flax.traverse_util
14
15
flax.training
15
- flax.config
16
- flax.errors
16
+ flax.traverse_util
Original file line number Diff line number Diff line change 14
14
15
15
"""Global configuration options for Flax.
16
16
17
- Now a wrapper over jax.config, in which all config vars have a 'flax_ ' prefix.
17
+ Now a wrapper over jax.config, in which all config vars have a 'flax\_ ' prefix.
18
18
19
19
To modify a config value on run time, call:
20
- `flax.config.update('flax_<config_name>', <value>)`
20
+ `` flax.config.update('flax_<config_name>', <value>)` `
21
21
22
22
"""
23
23
You can’t perform that action at this time.
0 commit comments