Skip to content

Commit 78d0566

Browse files
author
Flax Authors
committed
Merge pull request #1825 from marcvanzee:pipy
PiperOrigin-RevId: 424597780
2 parents a6e7744 + 695a880 commit 78d0566

File tree

3 files changed

+35
-17
lines changed

3 files changed

+35
-17
lines changed

CHANGELOG.md

Lines changed: 33 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,42 @@ Changelog
33

44
vNext
55
------
6-
(Add your change to a random empty line to avoid merge conflicts)
7-
-
8-
-
9-
-
10-
-
11-
-
12-
- linen Normalization layers no longer downcast double and complex floats to float32
6+
-
7+
-
8+
-
9+
-
10+
-
11+
-
12+
-
13+
-
14+
-
15+
-
16+
-
17+
-
18+
-
19+
-
20+
-
21+
-
22+
-
23+
-
24+
-
25+
-
26+
-
27+
-
28+
-
29+
-
30+
31+
0.4.0
32+
------
33+
Breaking changes:
34+
- flax.deprecated.nn is removed. Please pin to flax==0.3.6 if you are still using it.
35+
- PixelCNN++ example is removed. It was not working well on TPU.
36+
- linen Normalization layers no longer downcast double and complex floats tofloat32
1337
when computing the mean and variance.
14-
-
15-
-
16-
-
17-
-
38+
39+
New features:
1840
- Added `flax.linen.custom_vjp` for custom derivatives inside a `Module`.
19-
-
20-
-
21-
-
2241
- Add `param_dtype` attribute to standard Linen Modules for specifying parameter dtypes.
23-
-
2442

2543

2644
0.3.6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ To cite this repository:
188188
author = {Jonathan Heek and Anselm Levskaya and Avital Oliver and Marvin Ritter and Bertrand Rondepierre and Andreas Steiner and Marc van {Z}ee},
189189
title = {{F}lax: A neural network library and ecosystem for {JAX}},
190190
url = {http://github.com/google/flax},
191-
version = {0.3.5},
191+
version = {0.4.0},
192192
year = {2020},
193193
}
194194
```

flax/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.3.6"
15+
__version__ = "0.4.0"
1616

0 commit comments

Comments
 (0)