728x90 Keras1 tensorflow reuse 의미 예를 들어서 한 물건에 대해서 10%의 관세를 붙이고 싶다고 가정해보자 add tax tensorflow code def add_tax(price): with tf.variable_scope("charges") as scope: tax = tf.get_variable("tax", (), dtype=tf.float64, initializer=tf.constant_initializer(0.1)) total_price = price * (1.0 + tax) return total_price 10$하는 책에다가 tax를 부과한 결과 book_price = add_tax(10.0) init_op = tf.global_variables_initializer() with tf.Session() as sess: ses.. 2021. 3. 18. 이전 1 다음 728x90