File tree 4 files changed +10
-2
lines changed
4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ jobs:
114
114
python3 -m venv venv
115
115
venv/bin/python3 -m pip install .
116
116
venv/bin/python3 -m pip install .[testing]
117
+ venv/bin/python3 -m pip install tensorflow_datasets[dev]
117
118
venv/bin/python3 -m pip install -r docs/requirements.txt
118
119
- name : Install Flax
119
120
run : |
Original file line number Diff line number Diff line change 24
24
-
25
25
-
26
26
27
+ 0.6.6
28
+ -----
29
+ - 0.6.5 was yanked so this release contains all that was in 0.6.5 as well.
30
+ - Migrated regular dict to FrozenDict, currently controlled by a flag.
31
+ - Refactored and separate out name relaxation policy changes.
32
+ - Added RMS normalization layer.
33
+
27
34
0.6.5
28
35
-----
29
36
- Added logical partitioning helpers for using pjit with Flax.
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ To cite this repository:
191
191
author = {Jonathan Heek and Anselm Levskaya and Avital Oliver and Marvin Ritter and Bertrand Rondepierre and Andreas Steiner and Marc van {Z}ee},
192
192
title = {{F}lax: A neural network library and ecosystem for {JAX}},
193
193
url = {http://github.com/google/flax},
194
- version = {0.6.5 },
194
+ version = {0.6.6 },
195
195
year = {2023},
196
196
}
197
197
```
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
"""Current Flax version at head on Github."""
16
- __version__ = "0.6.5 "
16
+ __version__ = "0.6.6 "
17
17
You can’t perform that action at this time.
0 commit comments