Reputation: 426
julia> print(tf.VERSION)
1.4.2
I've found methods to upgrade in python but can't find any solution for Julia.
Upvotes: 2
Views: 466
Reputation: 2943
There's no Tensorflow-2.0
official API/package available for Julia
as of now. Note that even implementation of Tensorflow
for Julia
which is TensorFlow.jl was not official one and it was community based with the approach recommended by the TensorFlow maintainers and also it was just Julia
wrapper for Tensorflow
.
As stated here in official documentation, for Tensorflow-2.0
API Stability is promised for Python only.
If you're looking for Deep Learning frameworks/packages in Julia
then use Flux.jl or Knet.jl as they're active and pure Julia
based solutions. If you want to write gpu code directly in Julia
, there are JuliaGPU packages available, additionally you can refer generic gpu kernels.
If your intent is to use Tensorflow-2.0
, then suggest you to use Python package.
Upvotes: 2