Tut tensorflow map_fn unterstützen, wobei mehr als ein tensor?

Tut, tf.map_fn unterstützen, wobei mehr als ein Tensoren als wird unterstützt von python-native map-Funktion (Beispiel unten)?

a = [1,2,3,4]
b = [17,12,11,10]
print(map(lambda x,y:x+y, a,b)) # ==> [18, 14, 14, 14]
InformationsquelleAutor A Das | 2016-05-07
Schreibe einen Kommentar