노트/Python : 프로그래밍(69)
-
Keras와 OpenCV를 활용하여 웹캠으로 실시간 나이, 성별, 감정 예측 (번역)
출처 : towardsdatascience.com/real-time-age-gender-and-emotion-prediction-from-webcam-with-keras-and-opencv-bde6220d60a Real-time Age, Gender and Emotion Prediction from Webcam with Keras and OpenCV Find working codes and trained models here towardsdatascience.com Real-time Age, Gender and Emotion Prediction from Webcam with Keras and OpenCV Find working codes and trained models here 개요 Covid-19시대..
2021.03.26 -
[시계열] 케라스에서 Luong 어텐션을 활용한 seq2seq2 LSTM 모델 만들기 (번역)
원문 Building Seq2Seq LSTM with Luong Attention in Keras for Time Series Forecasting | by Huangwei Wieniawska | Level Up Coding (gitconnected.com) Building Seq2Seq LSTM with Luong Attention in Keras for Time Series Forecasting Do you want to try some other methods to solve your forecasting problem rather than traditional regression? There are many neural network… levelup.gitconnected.com 시계열 예측을 위..
2020.12.16 -
[시계열] Time Series에 대한 머신러닝(ML) 접근
원문 towardsdatascience.com/ml-approaches-for-time-series-4d44722e48fe ML Approaches for Time Series In this post I play around with some Machine Learning techniques to analyze time series data and explore their potential use in this case… towardsdatascience.com ML Approaches for Time Series 비-전통적인 모델로 타임시리즈를 모델링 해봅시다. 이번 포스팅에서는 타임시리즈 데이터를 분석하기위해 머신러닝 기법을 사용하고, 이 시나리오 하에서 잠재적인 사용을 분석할 것입니다. 첫번째 포스..
2020.12.12 -
[Pandas] Pandas를 마스터하기 위한 30가지 예제
30 Examples to Master Pandas A comprehensive practical guide for learning Pandas Pandas is a widely-used data analysis and manipulation library for Python. It provides numerous functions and methods that expedite the data analysis and preprocessing steps. Due to its popularity, there are lots of articles and tutorials about Pandas. This one will be one of them but heavily focusing on the practic..
2020.11.09 -
[CS] 이진탐색트리(Binary Search Tree) 구현하기 python code
이진 탐색트리(Binary Search Tree) 구현하기 우리의 트리 클래스는 다음과 같은 기능을 제공해야 한다. 새로운, 비어있는 이진 트리 맵을 생성한다. 이는 클래스의 인스턴스를 생성하는 것이다. 키, 값 쌍의 데이터를 받아서 트리에 추가한다. put(key, value)의 형태로 메소드를 만들 것이다. 키를 이용해서 해당 키에 연결된 값을 얻을 수 있다. get(key)를 구현할 것이다. 특정 키를 주고, 해당 키를 트리 내에서 탐색한다. contains(key)의 메소드를 구현한다. 특정 키를 주고, 해당 키를 트리 내에서 제거한다. delete(key) 의 메소드를 구현한다. 코드 기본적인 노드 클래스 구현 ## 기본적인 노드 클래스 구현 class TreeNode: def __init__(..
2020.11.03 -
[가상환경] conda 가상환경 명령어
# conda 가상환경 설치 conda에 python=3.7 가상환경을 p37이라는 이름으로 설치해준다. (base) C:\Users\diane>conda create -n p37 python=3.7 # 가상환경 활성화 및 비활성화 # conda 환경 확인 conda env list # 패키지 삭제 (아나콘다 가상환경 활성화 상태) $ conda remove 패키지명 (아나콘다 가상환경 비활성화 상태) $ conda remove -n 가상환경이름 거기에있는패키지명 출처: https://sikaleo.tistory.com/55 [SIKALEO]
2020.10.15