Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
936 views
in Technique[技术] by (71.8m points)

tensorflow2.0 - tensorflow dataset string/bool transformation for both bool & string values how to

i have a tensorflow dataset that contains several elemets:

string, int & bool

for element in train_df.take(1):
   print(element)

(OrderedDict([('textfield', <tf.Tensor: shape=(1,), dtype=string, numpy=array([b'240300'], dtype=object)>), ('boolfield', <tf.Tensor: shape=(1,), dtype=bool, numpy=array([ True])>), ('intfield', <tf.Tensor: shape=(1,), dtype=int64, numpy=array([1853])>)]), <tf.Tensor: shape=(1,), dtype=int64, numpy=array([1])>)

i wonder how i can convert them before training to numeric values.

  • lets say the string has the values "True" or "False" so should be 1 or 0

  • and same logical for the bool field

i've saw that are several techniques like:

  • layer transformation
  • dataset transformation
  • tfx

but im not sure how to do it and when to use each of them

can you assist please?

question from:https://stackoverflow.com/questions/65831901/tensorflow-dataset-string-bool-transformation-for-both-bool-string-values-how

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.8k users

...