전체 73

[w3schools] 1. 파이썬(python) 빈칸 문법, 코멘트 (메모) 작성법

Good to know 가장 최신 버전의 파이썬은 Python 3이지만, 보안패치 이외에 업데이트되지 않는 Python 2 버전도 여전히 인기가 많다. Thonny, Pycharm, Netbeans or Eclipse를 이용해 IDE에서 파이썬을 사용할 수 있다. print("Hello, World!") Python Syntax Python은 command line에서 바로 작성해 실행하거나, 서버에 .py 파일을 만들어 실행할 수 있다. C:\Users\Your Name>python myfile.py >>> print("Hello, World!") Hello, World! Python Identation 다른 프로그래밍 언어에서 공백(tab)은 읽기 간편하도록 사용하지만, 파이썬에서는 중요한 역할을 한..

Coding/Python 2021.09.01

[Andrew Ng] Machine Learning 정리

* Notion에서 작성한 내용을 마크다운으로 가져와 작성된 글입니다. KaTeX 수식은 제대로 표기되지 않을 수 있습니다. 강의 내용에 대한 저작권은 Stanford University - Andrew Ng 에게 있습니다. Supervised Learning already know what our correct output should look like. having the idea that there is a relationship between the input and the output. Regression continuous output ex) age, price Classification discrete output ex) tumor is malignant or benign Unsupervis..

Coding/Coursera 2021.09.01

[~2021.08.31] Machine Learning - Andrew Ng (Coursera) 강좌

Coursera의 강의 중 Andrew Ng의 Machine Learning 강의를 수강했다. 전체적인 내용은 다음과 같다. Linear Regression Gradient Descent Logistic Regression Neural Networks SVMs Anomaly Detection Recommender Systems 머신러닝에 대한 기초와 전체적인 개념을 이해할 수 있는 강의였다. 강의에 대한 정보는 다음 링크에서 확인할 수 있다. 기계 학습 스탠퍼드 대학교에서 제공합니다. Machine learning is the science of getting computers to act without being explicitly programmed. In the past decade, machine..