What is KERAS and how do I use it?
Introduction. Keras is a human-friendly deep learning framework. Keras aims to provide a favorable environment for developers building machine learning-based applications. In particular, Keras is ...
Introduction. Keras is a human-friendly deep learning framework. Keras aims to provide a favorable environment for developers building machine learning-based applications. In particular, Keras is ...
Introduction: TensorFlow definition and overview TensorFlow is an open-source machine learning library developed by Google. In the field of artificial intelligence and machine learning, TensorFlow...
Introduction: TensorFlow definition and overview TensorFlow is an open-source machine learning library developed by Google. In the field of artificial intelligence and machine learning, TensorFlow...
Introduction. Utility CSS refers to a way of writing CSS that uses a combination of small, predefined style units (utility classes). It’s a new approach that differs from the traditional way of wr...
Introduction. Markdown is a simple markup language that makes it easy and fast to write documents on the web. Created by Jon Gruber in 2004, Markdown provides a lightweight syntax that allows you ...
Introduction. Functional programming is a programming paradigm based on pure functions. A pure function is a function that does not depend on external state and always produces the same output for...
서론 함수형 프로그래밍은 순수 함수를 기반으로 하는 프로그래밍 패러다임입니다. 순수 함수는 외부 상태에 의존하지 않고 동일한 입력에 대해 항상 같은 출력을 내는 함수를 말합니다. 함수형 프로그래밍에서는 변수 값의 변경이 불가능한 불변성(Immutability)을 따르며, 함수 자체를 변수로 취급하고 다른 함수의 인자로 전달할 수 있는 고차 함수(Hi...
서론 함수형 프로그래밍은 순수 함수를 기반으로 하는 프로그래밍 패러다임입니다. 순수 함수는 외부 상태에 의존하지 않고 동일한 입력에 대해 항상 같은 출력을 내는 함수를 말합니다. 함수형 프로그래밍에서는 변수 값의 변경이 불가능한 불변성(Immutability)을 따르며, 함수 자체를 변수로 취급하고 다른 함수의 인자로 전달할 수 있는 고차 함수(Hi...
서론 셸(shell)은 운영체제와 사용자 간의 인터페이스 역할을 하는 프로그램이다. 사용자가 셸에 명령어를 입력하면 운영체제에 전달되어 해당 작업이 실행된다. 셸은 대화형 명령 실행뿐만 아니라 스크립팅 기능을 제공하여 사용자의 작업 효율성을 높인다 1. Bash(Bourne Again SHell)는 GNU 프로젝트의 셸로, 기존 Bourne 셸과 ...