일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 데이터전처리
- mnist
- 빅분기
- machinelearning
- 인공지능
- 파이썬
- 통계
- 빅데이터분석기사
- ComputerVision
- CNN
- 컴퓨터비전
- 의학통계
- 데이터분석가
- 텐서플로우
- AI
- 빅분기실기
- 케라스
- 데이터모델링
- 코딩테스트
- 데이터사이언스
- Deeplearning
- 딥러닝
- 데이터EDA
- 데이터분석
- 머신러닝
- 의학논문
- resnet
- Python
- TensorFlow
- Keras
- Today
- Total
목록Python (6)
Be Brave, Be Humble

https://github.com/BeBrave-BeHumble/Coding_test/blob/main/%EC%BD%94%EB%94%A9%ED%85%8C%EC%8A%A4%ED%8A%B8_%EA%B8%B0%EC%B4%88%EB%AC%B8%EB%B2%95.ipynb GitHub - BeBrave-BeHumble/Coding_test Contribute to BeBrave-BeHumble/Coding_test development by creating an account on GitHub. github.com https://www.youtube.com/watch?v=m-9pAwq1o3w&t=5367s 나동빈의 코딩테스트 기초 문법 유튜브 참고 알고리즘 문제 해결 과정 지문 읽기 및 컴퓨터적 사고 요구사항(복잡..

scikit-learn을 이용한 선형회귀와 로지스틱 회귀 In [4]: import numpy as np import matplotlib.pyplot as plt import pandas as pd from matplotlib.colors import ListedColormap cm2 = ListedColormap(['C1', 'C2']) cm2_inv = ListedColormap(['C2', 'C1']) 데이터 로드 In [5]: D = np.load('basic_clfreg.npz') In [6]: X_clf = D['X_clf'] y_clf = D['y_clf'] X_reg = D['X_reg'] y_reg = D['y_reg'] In [7]: D['X_clf'] Out[7]: array([[ 9..

Scikit-Learn https://scikit-learn.org/stable/ In [ ]: import matplotlib.pyplot as plt import numpy as np import pandas as pd 특징 가장 유명한 머신러닝 알고리즘 다양한 머신러닝 알고리즘을 효율적으로 구현하여 제공 서로 다른 알고리즘에 동일한 인터페이스 제공 numpy, padas등 다른 라이브러리와 높은 호환성 알고리즘은 Classifier와 Regressor로 구성됨 입력 특징 행렬 알고리즘의 입력으로 주로 변수명을 X_train, X_test로 코딩하고 항상 (N,D)가 되는 행렬 대상 배열 지도 학습에서 알고리즘의 예측 대상으로 주로 y_train, y_test로 코딩하고 항상 (N,)인 벡터 In [..

모듈 In [3]: # Fibonacci numbers module def fib(n): # write Fibonacci series up to n a, b = 0, 1 while a < n: print(a, end=' ') a, b = b, a+b def fib2(n): # return Fibonacci series up to n result = [] a, b = 0, 1 while a < n: result.append(a) a, b = b, a+b return result if __name__ == '__main__': print(fib2(10)) # 이 파일을 현재 폴더에 fibo.py로 저장하고 # import fibo # from fibo import fib, fib2 # https://docs..
This repo is an AI intermediate course-level curriculum. In the beginning, It directly implements algorithms of Machine Learning and Deep Learning. ex) Understanding and implementing algorithms for linear regression / logistic regression / loss function / gradient descent In the middle section deals with the deep learning architecture and feed-forward and learn the deep learning framework using ..