1、cast string to float is not supported
tf.cast(x,dtype=tf.float32)是不支持的
如果x是一个数字,可以用,tf.string_to_number(x),来转换类型,如果不传入类型这个参数,默认输出的是float32的。
2、set可以用来对列表去重,但是它是无序的
如果想要按原顺序去重时
一种方法为:
T=list(set(L))
T.sort(key=L.index)
其他方法可以参考博文:https://blog.csdn.net/Jerry_1126/article/details/84677212
3、在导入自己的模块时,一定要先把文件位置加入系统环境变量中,否则将会报错:找不到
CURRENT_DIR = osp.dirname(__file__)
sys.path.append(osp.join(CURRENT_DIR, '..'))
import
from .. import ...