일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Swing
- MAC OS
- 부스트캠프 AI Tech
- Django
- java
- GitHub
- github branch
- 딥러닝
- CNN
- 파이썬
- BPTT
- 리눅스7장
- 우분투리눅스
- RNN
- 자바
- ai개발밋업
- repository 복구
- 리눅스연습문제
- 운영체제
- ann
- homebrew설치
- AIStages
- 운영체제연습문제
- Git
- backpropagation
- Python
- 쉽게배우는운영체제
- 정보처리기사
- 판교퇴근길밋업
- 2020정보처리기사
- Today
- Total
목록Python (5)
코딩하는 애옹😸
Error Message UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbb in position 0: invalid start byte How to solve? csv 파일을 encoding='cp949'로 읽음 a = pd.read_csv('aa.csv', encoding = 'cp949')
First Code : from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split from sklearn.preprocessing import OneHotEncoder from keras.models import Sequential from keras.layers import Dense from keras.optimizers import Adam from sklearn.metrics import confusion_matrix, accuracy_score ' ' ' Error Message : No module named keras How to solve : pip install keras : it i..
First Code : # Artificial Neural Net – keras MLP로 iris 데이터를 이용하여 분석 # -*- coding: utf-8 -*- """ Created on Wed May 13 20:24:49 2020 @author: user """ from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split from sklearn.preprocessing import OneHotEncoder from keras.models import Sequential from keras.layers import Dense from keras.optimizers import Adam from sk..
Jupyter Notebook 설치 및 실행 주피터 노트북 Jupyter Notebook 주로 파이썬을 이용하는 개발자분들이 사용함. (다른 언어도 사용 가능) 웹 브라우저에서 파이썬 코드를 작성하고 단계적으로 실행 가능. 사실 파이썬을 쓸 때 VS Code와 파이참은 이용해봤었는데, 주피터 노트북을 이용해보니 신선하고 편하네요.. 설치 방법 먼저 주피터 노트북을 사용하기 위해서는 아나콘다(anaconda)를 설치해야 합니다. https://www.anaconda.com/distribution/ Anaconda Python/R Distribution - Free Download Anaconda Distribution is the world's most popular Python data science p..
python을 이용해서 크리스마스 트리 만들기 from colorama import init init() from colorama import Fore, Back, Style size = 11 for i in range(0, size) : if i == 0 : print(Fore.YELLOW + "★".center(size, ' ' )) elif i % 2 == 0 and i > 0 : print(Fore.GREEN + ("*"*i).center(size, ' ')) else : print(Fore.RED + ("'"*(i+1)).center(size, " ")) init(autoreset=True) print("") print(Back.RED + "Merry".center(size+2, ' ')) pr..