본문 바로가기

전체 글791

Types of Artificial Neural Networks AI(Aritificial Intelligence): 인간의 지능을 인공적으로 구현한 기능을 갖고 있는 컴퓨터 ML(Machine Learning): AI의 한 분야로, 컴퓨터가 학습할 수 있도록 하는 알고리즘과 기술을 개발하는 분야 DL(Deep Learning): ML의 한 분야로, 다량의 데이터를 스스로 학습할 수 있도록 하는 알고리즘과 기술을 개발하는 분야 Deep Learning은 인공신경망(ANN)에 기초하여 기계학습 알고리즘을 갖음 인공신경망의 종류와 개념 ANN(Artificial Neural Network, 인공 신경망): 두뇌의 신경망을 흉내 낸 인공지능 기술 사람 Machine Neuron Node Calculation Parameter Neuron Layer Layer DNN 구조에.. 2023. 1. 15.
ANN Model Construction 기본 환경: IDE: VS code, Language: Python ANN 기본 모델 구축 # ann_model.py import numpy as np # 1. Refined Deta x = np.array([1, 2, 3]) y = np.array([1, 2, 3]) # 2. Model Construction from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Dense model = Sequential() model.add(Dense(1, input_dim=1)) # 3. compile and training for best weight, minimum loss model.compile(loss='mae'.. 2023. 1. 15.
리눅스 기초 30강 시리즈 - 01강 CentOS7 설치 이 글은 양주종의 코딩스쿨 리눅스(Linux) 기초 강좌 30강 모음을 수강하며 정리한 글입니다. 01강 CentOS7 설치 가상머신 VirtualBox-5.2.26 virtualbox.org: Downloads - VirtualBox older builds - VirtualBox-5.2.26 다운로드 * 가상 머신 : SW로 물리적인 HW를 대신하여 처리하는 머신(컴퓨터) : SW로 구성된 가상의 PC에 OS를 설치하여 운영 : 여러 OS를 한 번에 사용할 수 있다는 장점이 있지만, 하나의 물리적 컴퓨터를 여러 OS가 나누어 사용하므로 처리속도 및 resource 사용 측면에서 단점이 될 수 있음 (참조: 쿠버네티스 부트캠프 5일차) 리눅스 CentOS-7 http://ftp.iij.ad.jp/pub/.. 2023. 1. 14.
리눅스(Linux) 공부 시작하기 이 글은 양주종의 코딩스쿨 리눅스(Linux) 공부 시작하기를 수강하며 정리한 글입니다. 1강 리눅스(Linux) 인터넷에서 웹 페이지를 보려고 할 때, Web Server Computer로부터 웹 페이지 자료를 얻어음 Web Server Computer가 작동하기 위해서는 운영체제(OS)가 설치되어있어야 하며, 이러한 OS로는 Linux, Unix, Windows Server 등이 있음 OS가 제공하는 기능은 Web 서비스 외에도 Mail, Chatting, FTP(파일 송수신) 서비스 등이 있음 Server Computer를 작동시키는 OS를 Network Operating System(네트워크 운영 체제)라고 함 서비스 요청자(Client)의 OS: Client Operating System 서비스.. 2023. 1. 14.
Practice for AI Learning Model Construction Machine Learning의 정의 : Machine Learning is defined as a technology that is used to train machines to perform various actions such as predictions, recommendations, estimations, etc., based on historical data or past experience. Machine Learning enables computers to behave like human beings by training them with the help of past experience and predicted data. 기계 학습은 과거 데이터나 경험을 기반으로 예측, 추천, 추정 등과 .. 2023. 1. 14.