๋จธ์ ๋ฌ๋, ๋ฅ๋ฌ๋24 tf.Example, tfrecord ๊ณต๋ถ ์ฝ์ ์๋ฃ: https://www.tensorflow.org/tutorials/load_data/tf_records 2019. 8. 23. TF Guide - Tensors ๊ณต๋ถ https://www.tensorflow.org/guide/tensors#shape TF๋ ํ ์์ ๊ด๋ จ๋ ์ฐ์ฐ์ ์ ์ํ๊ณ ์คํํ๋ ํ๋ ์์ํฌ์ด๋ค. ํ ์๋ ๊ณ ์ฐจ์ ๋ฒกํฐ/ํ๋ ฌ์ ์ผ๋ฐํ๋ ๊ฐ๋ ์ด๋ค. (ํ ์๋ ๋ด๋ถ์ ์ผ๋ก base data type์ n์ฐจ์ ์ด๋ ์ด๋ก ํํ๋๋ค.) TF ํ๋ก๊ทธ๋จ์ ์ง๋ฉด์ ๊ณ์ ์กฐ์ํ๊ณ ๋๊ฒจ์ผ ํ ๊ฐ์ฒด๊ฐ ๋ฐ๋ก tf.Tensor ์ธ๋ฐ, tf.Tensor๋ ๋ถ๋ถ์ ์ผ๋ก ์ ์๋์๋ค๊ฐ ๋ง์ง๋ง์ ๊ฐ์ ์์ฑํ๋ ์ฐ์ฐ์ ๋งํ๋ค. TF ํ๋ก๊ทธ๋จ์ 1) ๋จผ์ tf.Tensor์ ๊ทธ๋ํ๋ฅผ ๋น๋ฉํ๊ณ 2) ์ด๋ป๊ฒ ๊ฐ ํ ์๊ฐ ๋ค๋ฅธ ๊ฐ๋ฅํ ํ ์์ ๊ธฐ๋ฐํด ์ฐ์ฐ๋๋์ง ๋ํ ์ผ๋งํ๊ณ 3) ์ด ๊ทธ๋ํ์ ์ผ๋ถ๋ฅผ ์คํํด ์ํ๋ ๊ฐ์ ์ป๋๋ค. tf.Tensor๋ ๋ ๊ฐ์ง properties๋ฅผ ๊ฐ๋๋ค: a data type (.. 2019. 8. 19. Multi-GPU Model์์ h5(hdf5)๋ฅผ ๋ก๋ํ์ง ๋ชปํ๋ ๋ฌธ์ ๋ฌธ์ ๊ฐ์ Multi-GPU Model๋ก ํ์ต์ํค๊ณ h5(hdf5)๋ก ์ ์ฅํด๋ ๋ค์, ๋์ค์ ๋ถ๋ฌ์ฌ ๋ layers ์๊ฐ ๋ง์ง ์๋ค๊ณ ์๋ฌ๊ฐ ๋จ ์ด๋ฏธ ๋ง์ด ์๋ ค์ง ๋ฒ๊ทธ ํด๊ฒฐ์ฑ ๊ฐ์ Multi-GPU Model๋ก ํ์ตํ weight๋ฅผ (Multi-GPU๋ก compileํ์ง ์์) Base Model์ setํ ๋ค์ h5(hdf5)๋ก ์ ์ฅ Epoch๊ฐ ๋ชจ๋ ๋๋ ๋ค์ model.save()๋ ๋๋ต ์๋์ ๊ฐ์ด ํ๋ฉด ๋์ง๋ง... ... parallel_model, base_model = get_compiled_model(...) parallel_model.fit(...) base_model.set_weights(parallel_model.get_weights()) base_model.save(filepath).. 2019. 8. 13. Variable Scope ๊ณต๋ถ ์ฝ์ ์๋ฃ: https://tensorflowkorea.gitbooks.io/tensorflow-kr/content/g3doc/how_tos/variable_scope/ ์ฃผ์ ํจ์ - tf.get_variable(, , ): ์ ๋ ฅ๋ ์ด๋ฆ์ ๋ณ์๋ฅผ ์์ฑํ๊ฑฐ๋ ๋ฐํ - tf.variable_scope(): tf.get_variable()์ ์ ๋ฌ๋ ์ด๋ฆ์ ๋ค์์คํ์ด์ค๋ฅผ ๊ด๋ฆฌ (with์ ํจ๊ป ์ฐ์) - tf.get_variable_scope(): ํ์ฌ variable scope๋ฅผ ๋ฐํ tf.get_variable() - tf.Variable()์ฒ๋ผ ์ง์ ๊ฐ์ ์ ๋ฌํ์ง ์๊ณ Initializer๋ฅผ ์ฌ์ฉ tf.constant_initializer(value): ์ ๊ณต๋ ๊ฐ์ผ๋ก ๋ชจ๋ ๊ฒ์ ์ด๊ธฐํ tf.random_u.. 2019. 8. 13. ์ด์ 1 2 3 4 5 6 ๋ค์