我有tensorflow版本“ 1.14.0”,并且pip3也已更新。但是当我这样做时:-
open System
let proper (x : string) =
x.Split(' ')
|> Array.filter ((<>) "")
|> Array.map (fun t ->
let head = Seq.head t |> Char.ToUpper |> string
let tail = Seq.tail t |> Seq.map (Char.ToLower >> string)
Seq.append [head] tail
|> Seq.reduce (fun acc elem -> acc + elem))
|> Array.reduce (fun acc elem -> acc + " " + elem)
我收到此错误:
import tensorflow as tf
Tensorflow集线器的版本为0.5.0。关于堆栈溢出的一些答案表明,tensorflow版本应大于1.7.0,而我的版本应更大,但我仍然不知道为什么不导入集线器。错误的完整回溯是:-
AttributeError: module 'tensorflow.python.ops.resource_variable_ops' has no attribute 'UninitializedVariable'
到目前为止,我已经尝试完全卸载tf,然后再次安装,重新安装tf hub和更新pip。任何帮助将不胜感激!