SSD.TensorFlow
SSD.TensorFlow copied to clipboard
TypeError: `default_name` type (<class 'list'>) is not a string type. When run train_ssd.py, I meet a TpyeError.
tensorflow 1.14 ,python3.5 ,cuda10.0, cudnn7.5.0
Traceback (most recent call last):
File "/home/wzy/SSD.TensorFlow-master/train_ssd.py", line 464, in values
kwarg." % type(default_name))
TypeError: default_name
type (<class 'list'>) is not a string type. You likely meant to pass this into the values
kwarg.
I have the same problem
I have same problem,do you solve?
查找tf.name_cope(),将[Image]更改为values=[Image],即Add values=
sorry, i can't find it,can you be more detailed?
Search for name_scope in train_ssd.py. It should be 213 lines. Change name scope ("", []) to name scope ("", values = []).
------------------ 原始邮件 ------------------
发件人: "tinothy22"<[email protected]>;
发送时间: 2019年11月15日(星期五) 下午2:10
收件人: "HiKapok/SSD.TensorFlow"<[email protected]>;
抄送: "小太阳"<[email protected]>; "Comment"<[email protected]>;
主题: Re: [HiKapok/SSD.TensorFlow] TypeError: default_name
type (<class 'list'>) is not a string type. When run train_ssd.py, I meet a TpyeError. (#117)
sorry, i can't find it,can you be more detailed?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.
still the same mistake
i have solve,change all name_scope in anchor_manipulator.py
That's good. I just corrected this mistake the other day.
------------------ 原始邮件 ------------------
发件人: "tinothy22"<[email protected]>;
发送时间: 2019年11月15日(星期五) 晚上7:12
收件人: "HiKapok/SSD.TensorFlow"<[email protected]>;
抄送: "小太阳"<[email protected]>; "Comment"<[email protected]>;
主题: Re: [HiKapok/SSD.TensorFlow] TypeError: default_name
type (<class 'list'>) is not a string type. When run train_ssd.py, I meet a TpyeError. (#117)
i have solve,change all name_scope in anchor_manipulator.py
— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.
I have same problem, What should I do
i have solve,change all name_scope in anchor_manipulator.py
what the details you did?