๐งฉ ์ ์ฉ์์
function uploading_files() {
let file = files[0]; //์ค์ ํ์ผ
let image = files[0].name; //ํ์ผ๋ช
let username = $("#input-username").val()
console.log(username)
let formData = new FormData();
formData.append('file_give', file)
formData.append('image_give', image)
formData.append('username_give', username)
console.log(formData)
$.ajax({
type: 'POST',
url: '/content',
processData: false,
contentType: false,
data: formData,
success: function (response) {
if (response['result'] == 'success') {
alert(response['msg'])
window.location.href = '/'
} else {
alert(response['msg'])
window.location.reload()
}
}
๐งฉ ์ ์ฉ์์
ํ์ต๋ ๋ชจ๋ธ ์ ์ฅํ๊ธฐ
๋ชจ๋ธ์ ํฌ๊ฒ ๋ชจ๋ธ ์ํคํ
์ฒ์ ๋ชจ๋ธ ๊ฐ์ค์น๋ก ๊ตฌ์ฑ๋๋๋ฐ, ๋ชจ๋ธ ๊ฐ์ค์น๋ ์์์ ๊ฐ์ผ๋ก ์ด๊ธฐํ๋์ด ์์ง๋ง, ํ๋ จ์
์ผ๋ก ํ์ตํ๋ฉด์ ๊ฐฑ์ ๋๋ค. ๊ทธ ํ์ต๋ ๋ชจ๋ธ์ Keras์์๋ save() ํจ์๋ก โh5โํ์ผ ํ์์ผ๋ก ๋ชจ๋ ์ ์ฅํ ์ ์๋ค.
์ฌ๋ฌผ์ธ์๊ธฐ๋ฅ
์ฐ๋ฆฌ ํ์ ์ฌ๋ฌผ์ธ์ ์ฃผ์ ๋ '๊ฐ์์ง ์ข
ํ๋ณํ๊ธฐ' ์ด๋ค. ๋ฐ๋ผ์ ๋ง์ ๊ฐ์์ง ์ฌ์ง๋ค์ ๋ฐ์ดํฐ๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ํ์ต์์ผ ๊ฐ์์ง ์ข
์ ๊ตฌ๋ถํด์ฃผ๋ ๊ธฐ๋ฅ์ ๋ง๋ค์๋ค.
model = tf.keras.models.load_model('static/model/model.h5')
test_url = f'static/img/post_contents/{filename}'
test_generator = tf.keras.preprocessing.image.load_img(test_url, grayscale=False, color_mode="rgb",
target_size=(299, 299))
input_arr = tf.keras.preprocessing.image.img_to_array(test_generator)
input_arr = np.array([input_arr])
input_arr /= 225.
pred = model.predict(input_arr)
pred2 = pred.argmax(axis=-1)
dog_list = [''']
dog_name = dog_list[pred2[0]]
์์ ์
๋ก๋๋ฒํผ์ ๋๋ฌ ์๋์ ๊ฐ์ drag&drop ๊ธฐ๋ฅ์ ํ์ฉํ์ฌ ์ฌ์ง์ ์
๋ก๋ ํ๊ฒ๋๋ฉด,
์๋์ ๊ฐ์ด ํ์ต๋ ๊ฒ์ ๊ธฐ๋ฐ์ผ๋ก ๊ฐ์์ง์ ์ข
๋ฅ๋ฅผ ํ๋ณํ์ฌ ๋ณด์ฌ์ฃผ๊ฒ๋๋ค.
์ด๋ฒ์ ํ์๋ค์ด ๋ชจ๋ ์ํ๋ ํ์๋ค์ด์ฌ์ ํ์คํ ์ด์ฌํ ํด์ผ๊ฒ ๋ค๋ ๋๊ธฐ๋ถ์ฌ๊ฐ๋๋๊ฒ ๊ฐ๋ค.
์ผ๋จ ์ด๋ฒ ํ๋ก์ ํธ์์ ํ๋ก ํธ์๋๋ณด๋ค๋ ์ฃผ๋ก ๋ฐฑ์๋์ ์ฌ๋ฌผ์ธ์๊ธฐ๋ฅ์ ํ๋๋ฐ์ ๋ ํ์ผ๊ณ , ์ ๋ฒ ํ๋ก์ ํธ๋ณด๋ค ๊นํ์ฉ์ ํ์คํ ๋ง์ด ํด๋ดค๋ค. ์ญ์ ํด๋ณด๋๊น ๊ฐ์ด ์กํ๋ ๊ฒ ๊ฐ๋ค. ์์ฃผ์์ฃผ ํธ์ํ๊ณ ํ์ ํด์ค์ผ ์ถฉ๋์ด ๋ง์ด ์ผ์ด๋์ง ์๋๊ฒ์ ๊นจ๋ฌ์๋ค.
ํ๋ก์ ํธ๊ฐ ์๊ฐํ๋ ๊ฒ๋ณด๋ค ๋นจ๋ฆฌ ๋๋๊ฒ ๋์ ๋ด์ผ์ ์ฌ๋ฌผ์ธ์์ ์ ํ๋๋ฅผ ๋ ์ฌ๋ฆด ์ ์๋ ๋ฐฉ๋ฒ์ ์ฐพ์๋ด์ ์ ์ฉ์์ผ๋ด์ผํ ๊ฒ ๊ฐ๋ค.
๊ทธ๋ฆฌ๊ณ ์ฐ๋ฆฌํ์ด ๋๋ฒ์งธ๋ก ์์ ํ๋ ์ฌ๋ฌผ์ธ์์ ์ด์ฉํด์ ๋กค ์ฑํผ์ธ์ ๊ตฌ๋ถํ๋ ๊ฒ๋ ๋ฐ๋ก ๋ง๋ค์ด๋ณผ ์์ ์ด๋ค.
๐ ์์ธํ ์ฝ๋๋ Moonmoo ์ ๊ฒ์ํ์ต๋๋ค