Skip to content

Commit f3b6406

Browse files
authored
allow Flux 0.14 everywhere 0.13 was used (#402)
1 parent 31e147f commit f3b6406

File tree

12 files changed

+16
-17
lines changed

12 files changed

+16
-17
lines changed

other/autoregressive-process/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
44
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
55

66
[compat]
7-
Flux = "0.13.9"
8-
julia = "1.6"
7+
Flux = "0.13.9, 0.14"
8+
julia = "1.6"

other/fizzbuzz/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
33
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
44

55
[compat]
6-
Flux = "0.13.9"
6+
Flux = "0.13.9, 0.14"
77
julia = "1.6"

other/iris/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
66

77
[compat]
88
DataFrames = "1.4.3"
9-
Flux = "0.13.9"
9+
Flux = "0.13.9, 0.14"
1010
MLDatasets = "0.7.6"
1111
julia = "1.6"

text/char-rnn/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ OneHotArrays = "0b1bfda6-eb8a-41d2-88d8-f5af5cad476f"
44
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
55

66
[compat]
7-
Flux = "0.13.9"
7+
Flux = "0.13.9, 0.14"
88
julia = "1.6"

text/lang-detection/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
99

1010
[compat]
1111
Cascadia = "1"
12-
Flux = "0.13.9"
12+
Flux = "0.13.9, 0.14"
1313
Gumbo = "0.8"
1414
HTTP = "1.7"
1515
julia = "1.6"

tutorials/transfer_learning/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
77
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
88

99
[compat]
10-
Flux = "0.13"
10+
Flux = "0.13, 0.14"
1111
julia = "1.6"

tutorials/transfer_learning/transfer_learning.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
using Random: shuffle!
33
import Base: length, getindex
44
using Images
5-
using Flux
5+
using Flux, CUDA
66
using Flux: update!
77
using DataAugmentation
88
using Metalhead
99

10-
device = Flux.CUDA.functional() ? gpu : cpu
10+
device = CUDA.functional() ? gpu : cpu
1111
# device = cpu
1212

1313
## Custom DataLoader

vision/dcgan_mnist/Project.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ MLDatasets = "eb30cadb-4394-5ae3-aed4-317e484a6458"
77
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
88

99
[compat]
10-
CUDA = "2.4.0, 3"
11-
Flux = "0.13.9"
10+
Flux = "0.13.9, 0.14"
1211
MLDatasets = "0.7"
1312
julia = "1.6"

vision/mlp_mnist/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
77
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
88

99
[compat]
10-
Flux = "0.13.9"
10+
Flux = "0.13.9, 0.14"
1111
MLDatasets = "0.7"
1212
julia = "1.6"

vision/spatial_transformer/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"
1313

1414
[compat]
1515
DrWatson = "2.7.6"
16-
Flux = "0.13.9"
16+
Flux = "0.13.9, 0.14"
1717
MLDatasets = "0.7.6"
1818
julia = "1.7.0"

vision/vae_mnist/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
1212
TensorBoardLogger = "899adc3e-224a-11e9-021f-63837185c80f"
1313

1414
[compat]
15-
CUDA = "2.4, 3.12"
16-
Flux = "0.13.9"
15+
CUDA = "2.4, 3.12, 4"
16+
Flux = "0.13.9, 0.14"
1717
MLDatasets = "0.7"
1818
julia = "1.6"

vision/vgg_cifar10/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54"
77
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
88

99
[compat]
10-
CUDA = "3"
11-
Flux = "0.13.9"
10+
CUDA = "3, 4"
11+
Flux = "0.13.9, 0.14"
1212
MLDatasets = "0.7"
1313
MLUtils = "0.3"
1414
julia = "1.6"

0 commit comments

Comments
 (0)