import tensorflow as tf
# 通常のPython関数
def simple_add(x, y):
return x + y
# tf.functionを使ってグラフ化する
@tf.function
def optimized_add(x, y):
return x + y
# TensorFlowのテンソルを用意
x = tf.c...
I have contributed to the Python community in multiple roles:
• Contributed to NVDA (2010–2013), improving Japanese text-to-speech and NLP for this Python-based screen
reader.
• Organized PyCon mini a...