프로젝트

프로젝트/코드프레소 체험단

파이썬으로 배우는 데이터 분석: NumPy - NumPy 라이브러리 소개

NumPy 라이브러리 소개 - Numerical Python의 줄임말 - 대규모의 고성능 수치 계산을 위한 파이썬 라이브러리 - N차원의 배열을 효율적으로 다룰 수 있는 라이브러리 - https://numpy.org/ NumPy Powerful N-dimensional arrays Fast and versatile, the NumPy vectorization, indexing, and broadcasting concepts are the de-facto standards of array computing today. Numerical computing tools NumPy offers comprehensive mathematical functions, random number g numpy.org N차원..

프로젝트/코드프레소 체험단

파이썬으로 배우는 데이터 분석 - 데이터 분석을 위한 파이썬 라이브러리

https://www.tiobe.com/tiobe-index/ index | TIOBE - The Software Quality Company TIOBE Index for March 2022 March Headline: Lua is back in the TIOBE index top 20 Scripting language Lua is back in the top 20 of the TIOBE index. In its heyday in 2011, Lua briefly touched a top 10 position. Whether this is going to happen again is unknown www.tiobe.com Python - 세계적으로 가장 대중적인 언어 중 하나 - 높은 생산성, 확장성 ->..

프로젝트/코드프레소 체험단

시계열 데이터 처리를 위한 RNN 완벽 가이드 - GRU 모델을 이용한 영화리뷰 데이터셋 분류 모델 구현

# -*- coding: utf-8 -*- import matplotlib.pyplot as plt import tensorflow as tf from tensorflow.keras import layers, models from tensorflow.keras.datasets import imdb from tensorflow.keras.preprocessing import sequence print(tf.__version__) """ Input tensor와 Target tensor 준비(훈련 데이터) """ # imdb의 빈도수 기준으로 상위 10000개의 데이터를 load함. (input_train, y_train), (input_test, y_test) = imdb.load_data(num_word..

프로젝트/코드프레소 체험단

시계열 데이터 처리를 위한 RNN 완벽 가이드 - 적층 LSTM 모델을 이용한 영화리뷰 데이터셋 분류 모델 구현

# -*- coding: utf-8 -*- import matplotlib.pyplot as plt import tensorflow as tf from tensorflow.keras import layers, models from tensorflow.keras.datasets import imdb from tensorflow.keras.preprocessing import sequence print(tf.__version__) """ Input tensor와 Target tensor 준비(훈련 데이터) """ # imdb의 빈도수 기준으로 상위 10000개의 데이터를 load함. (input_train, y_train), (input_test, y_test) = imdb.load_data(num_word..

프로젝트/코드프레소 체험단

시계열 데이터 처리를 위한 RNN 완벽 가이드 - LSTM 모델을 이용한 영화리뷰 데이터셋 분류 모델 구현

https://insengnewbie.tistory.com/221 시계열 데이터 처리를 위한 RNN 완벽 가이드 - 영화리뷰 데이터셋 분류 모델 구현 # -*- coding: utf-8 -*- import matplotlib.pyplot as plt import tensorflow as tf from tensorflow.keras import layers, models from tensorflow.keras.datasets import imdb from tensorflow.keras.preproce.. insengnewbie.tistory.com * RNN 모델의 성능 개선을 위한 LSTM 모델을 사용함. # -*- coding: utf-8 -*- import matplotlib.pyplot as plt..

KimCookieYa
'프로젝트' 카테고리의 글 목록 (22 Page)