• Home
  • All Posts
  • Tags
  • About
  • Atom feed
The Minimum Viable Model

Basic

Research Merhods May 7, 2024 4 minute read

1. 연구방법

  • 양적 연구: 실증주의에 기반을 둔 학문으로 ‘보편성’이 핵심. 보통 통계를 통해 자신의 논문을 증명.
  • 질적 연구: 다양성을 검증하기 위한 연구 방법. 한 사람의 삶을 옆에서 관찰하면 연구. 어떤 상황에 경험이 있는 집단을 인터뷰하여 왜 그 현상이 일어나게 되었는지를 고찰하는 연구. 다른 사례에 적용되기 어려움.

2. 분석 방법

(1) 집단을 비교하는 분석: 집단간의 차이를 비교

a. 카이검증(교차분석): 명목(범주)형 -> 명목형 자료일 때 사용. 집단 간 비율 비교로 차이가 유의한지 판단하는 분석.

  • $\chi^2$ [카이스퀘어(Chi-squared); 카이제곱]
  • $\chi^2$-distribution: 카이자승분포 [squre brackets]

b. t-test(t검증, 차이검증): 명목형 -> 연속형 자료일 때 사용.

  • 두 집단(표본) 간 평균... read more

RL

Reinforcement Learning October 1, 2024 4 minute read
  1. 감가율 discount factor 나중에 받을 수록 보상의 가치를 줄이는 것

2-1.가치함수 어떤 상태에 있으면 얼마의 보상을 받을 것인지에 대한 기대값. 에이전트가 가지고 있는 값으로 직접 다 경험하지 않더라도 보상을 예상. 앞으로 받을 보상은 정책에 따라서 계산되어야함.

벨만 기대 방정식: 계산을 하려면 환경 모델의 확률과 보상을 알아야한다.

2-2. 행동 가치함수( QFunction): 어떤 상태에서 어떤 행동이 얼마나 좋은지 알려줌

3-1. 순차적 행동 결정 문제
3-2.. 다이내믹 프로그래밍 (1953 by 벨만) 큰 문제 안에 작은 문제들이 중첩된 경우  전체 큰 문제를 작은 문제로 쪼개서 풀겠다. 단점 계산을 빠르게 하는 것이지 학습을 하지 않는다. 순차적 문제를 벨만방정식으로 푸는 것.

... read more
AI October 1, 2024 7 minute read

————————– 1, 2 ——————-
novel: 새로운
fidelity: 충실함, 동등
rationality: 합리성
sufficient: 구현 가능한, 충분한
perceptual: 지각있는
perceive: 인지하다
inference: 추론
priori: 선험적인
vast: 방대한
nondeterministic: 확률값 없이 예측
deliberating: 계획적인, 신중한
utility function: 효용함수
derive: 끌어내다, 유래하다

——– 3 —————-
anomaly: 이상치
supervised
unsupervised
reinforcement learning
exclusive: 배타적인
ambiguous: 모호한
denote: 의미하다
posteriori: 사후
arguably: 틀림없이
typical: 대표적인
nontrivial: 중요한, 자명한
latent: 숨어있는, 잠재된
infer: 결론을 도출하다, 추론하다
reduction: 축소
variability:... read more

Like Human October 1, 2024 2 minute read

1. MCTS(Monte Carlo Tree Search)

1.1. 실시간 플래닝 알고리즘

주어진 상황에 특화된 해를 찾는데 쓰이는 플래닝 알고리즘으로 그냥 많이 시뮬레이션 해 보고 가장 좋았던 액션을 선택하는 방법. 따라서 다른 상황에서는 재사용이 어렵다.

1.2. 학습 단계

(1) 지도학습 정책 $\pi_{sl}$

  • 학습에 필요한 데이터를 사람의 지식을 이용한 featrue를 인풋으로 학습
  • 분류 네트워크를 이용하여 각 자리의 확률을 리턴
  • 컨볼루션 레이어: 입력에 공간적인 정보가 담겨있는 경우 이를 표현하기 위해 여러 개의 필터를 통해 정보를 인코딩하는 방식

(2) 롤아웃 정책 $\pi_{roll}$

  • $\pi_{sl}$의 가벼운 버전(선형 결합 레이어를 이용하여 계산이 빠름. 수 많은 시뮬레이션 생성에 이용하기 위함.)
  • 현 상태를 인풋으로 받아서... read more

artificial intelligence

Who owns the copyright for an AI generated creative work? April 20, 2021 4 minute read

Recently I was reading an article about a cool project that intends to have a neural network create songs of the late club of the 27 (artists that have tragically died at age 27 or near, and in the height of their respective careers), artists such as Amy Winehouse, Jimmy Hendrix, Curt Cobain and Jim Morrison.

The project was created by Over the Bridge, an organization dedicated to increase awareness on mental health and substance abuse in the music industry, trying to denormalize... read more

So, what is a neural network? April 2, 2021 9 minute read

The omnipresence of technology nowadays has made it commonplace to read news about AI, just a quick glance at today’s headlines, and I get:

  • This Powerful AI Technique Led to Clashes at Google and Fierce Debate in Tech.
  • How A.I.-powered companies dodged the worst damage from COVID
  • AI technology detects ‘ticking time bomb’ arteries
  • AI in Drug Discovery Starts to Live Up to the Hype
  • Pentagon seeks commercial solutions to get its data ready for AI

Topics from business, manufacturing, supply chain, medicine and biotech and even defense are covered in those news... read more

Deep Q Learning for Tic Tac Toe March 18, 2021 12 minute read

Background

After many years of a corporate career (17) diverging from computer science, I have now decided to learn Machine Learning and in the process return to coding (something I have always loved!).

To fully grasp the essence of ML I decided to start by coding a ML library myself, so I can fully understand the inner workings, linear algebra and calculus involved in Stochastic Gradient Descent. And on top learn Python (I used to code in C++ 20 years ago).

I built a general purpose basic ML library that... read more

coding

Planning September 29, 2024 2 minute read

1. 작은 문제, MDP를 안다.

  • 작은 문제: 상태 집합 S나 액션의 집합A의 크기가 작음
  • Planning: MDP에 대한 보상함수와 전이 확률을 알고 작은 문제인 경우 이를 이용하여 정책을 개선해 나가는 과정
  • 테이블 기반 방법론(tabular method): 모든 상태 혹은 상태와 액션의 페어에 대한 테이블을 만들어서 값을 업데이트하는 방식
  • 귀납(induction): 구체적 사실에서 보편적 사실을 추론
  • 연역(deduction): 전체로 부터 결론을 도출

(1) Predication

  • 반복적 정책 평가(iterative policy evaluation): 테이블의 값들을 초기화한 후, 벨만 기대 방정식을 반복적으로 사용하여 테이블의 값을 조금씩 갱신하는 방법

(2) Control (최고의 정책 찾기)

  • 정책 이터레이션: 정책 평가와 정책 개선을 번갈아가며 정책이 수렴할... read more
Bellman Equation September 29, 2024 1 minute read

1. 벨만 기대 방정식

시점 t에서의 밸류와 시점 t+1에서의 밸류 사이의 관계를 다루고 있으며 또 가치 함수와 정책 함수 사이의 관계도 다룸. 무언가 정책이 주어지고, 그 정책을 평가하고 싶을 때 이용.

0단계

$v_\pi(s_t) = E_\pi[r_{t+1} + \gamma v_\pi(s_{t+1})]$
$q_\pi(s_t,a_t) = E_{\pi}[r_{t+1} + \gamma q_\pi(s_{t+1},a_{t+1})]$

  • 현재 상태의 밸류와 다음 상태의 밸류 사이의 관계를 나타냄
  • 모델-프리: MDP에 대한 정보를 모를때 사용, 실제로 상태s에서 액션a를 해서 학습하는 접근법(0단계 식)

1단계

$v_\pi(s) = \sum\limits_{a\in A} \pi(a|s) q_\pi(s,a) \quad$ 정책이 고정되고 상태 s의 밸류를 계산
$q_\pi(s,a) = r^a_s + \gamma \sum\limits_{s’\in S} P^a_{ss’}v_\pi(s’) \quad$ 액션의 밸류를 평가

read more
my Network Optimization Methods and Algorithms April 12, 2024 8 minute read

4 the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

copyright

Who owns the copyright for an AI generated creative work? April 20, 2021 4 minute read

Recently I was reading an article about a cool project that intends to have a neural network create songs of the late club of the 27 (artists that have tragically died at age 27 or near, and in the height of their respective careers), artists such as Amy Winehouse, Jimmy Hendrix, Curt Cobain and Jim Morrison.

The project was created by Over the Bridge, an organization dedicated to increase awareness on mental health and substance abuse in the music industry, trying to denormalize... read more

creativity

Who owns the copyright for an AI generated creative work? April 20, 2021 4 minute read

Recently I was reading an article about a cool project that intends to have a neural network create songs of the late club of the 27 (artists that have tragically died at age 27 or near, and in the height of their respective careers), artists such as Amy Winehouse, Jimmy Hendrix, Curt Cobain and Jim Morrison.

The project was created by Over the Bridge, an organization dedicated to increase awareness on mental health and substance abuse in the music industry, trying to denormalize... read more

decision-making

Decision-Making
  1. Introduction
    • Decision Problems in Logistics
    • Logistics Optimization Problems
    • Mathematical Optimization
      • Example: Single Machine Scheduling
      • Example: TSP
  2. Network Models
    • Example: Interval Scheduling
    • Graphs
    • Trees
  3. Formulation of the Network Flow Problem
    • Formulation
    • Variants
    • Matrix Representation
    • Circulation
  4. Algorithm & Complexity
    • algorithms
    • counting the number of arithmetic operations
    • rate of growth
    • worst-case analysis
    • polynomial-time algorithm
  5. Minimum Spanning Tree Problem
    • Tree & Spanning Tree
    • MST Problem
    • Greedy Algorithm
    • Greedy Algorithm for MST
  6. Shortest Path Problem
    • Problem definition
    • Relation to the network flow problem
    • Bellman’s equation
    • ... read more

deep Neural networks

my Network Optimization Methods and Algorithms April 12, 2024 8 minute read

4 the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

Neural Network Optimization Methods and Algorithms March 12, 2021 8 minute read

For the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

general blogging

Starting the adventure March 24, 2021 10 minute read

In the midst of a global pandemic caused by the SARS-COV2 coronavirus; I decided to start blogging. I wanted to blog since a long time, I have always enjoyed writing, but many unknowns and having “no time” for it prevented me from taking it up. Things like: “I don’t really know who my target audience is”, “what would my topic or topics be?”, “I don’t think I am a world-class expert in anything”, and many more kept stopping me from setting up my own blog. Now seemed like a good time as any so with those and tons of other... read more

glossary

Rawsim-o heatmap 만들기

Index

  • 1. 환경 설정
  • 2. 빌드 방법
  • 3. 실행 화면 구성
  • (1) Base Controls
  • (2) Instances
  • (3) Orders
  • (4) Settings
  • (5) Misc
  • 4. 코드 분석
  • 참고

1. heatmode 설정

Settings 탭 > Heatmode 콤보박스에서 원하는 히트맵 모드를 선택 확장

2. Instance 생성

Insatances 탭에서 실험할 환경을 설정하고 체크 버튼을 눌러서 인스턴스를 생성한다. 확장

여기서는 .xinst 파일만 저장한다. 확장 확장

3. 시뮬레이션 실행

Base Controls 탭에서 시작... read more

UML

모델: 대상물을 알기 쉽게 표현하는 것. 다이어그램 모델링: 많은 정보를 간결한 형태로 전달할 수 있고, 오해를 줄일 수 있음.

  1. 유즈 케이스: 시스템과 이용자 그리고 서비스간의 관련성과 규모 확인으로 개발기간 파악이 가능하며 기능 누락 방지.
    • 액터의 일반화(Generalization): 일반 회원 자격에 특별 서비스를 이용할 수 있는 특별 회원 자격을 추가.
    • 포함 관계: 어떤 유즈케이스가 다은 유즈 케이스를 이용하는 경우. ex) 차량 렌탈시 회원 여부 조회.
    • 확장 관계: 서비스 이용료를 지불을 카드 혹은 현금등으로 방법이 확장할 수 있음.
    • include: 베이스가 되는 유즈케이스가 서브 루틴을 호출. ex) 서비스전에 회원여부 확인
    • exclude: 베이스 유즈케이스에 부가하는 서비스. ex) 서비스이용을 위한 지불방법 선택
    • 일반화 관계:... read more
부자사전1
  1. 영업(열성 팬 만들기) 대부분 접근하기조차 어렵다. 엉겁결에 대답이 나오도록 방법을 바꿔야 한다. 이 때 여유를 주지않고 선탹사항을 고르게 한다. 만나기 전에 상대의정보를 알아야 한다. 취미로 대화를 끌오내고 본격적인 사업 얘기는 다음으로 미룬다. 골인 됐다고 무관심해지면 안된다. 끊임없이 애정과 ㄱ한심을 보여줘야 지속적인 관계가 유지됨. 생일 챙기기 덤비는 적은 물리치되 일부러 적을 만들지 마라

2. 끼: 성시레 깡:원칙을 지킨다. 끈: 혼자서는 성공할 수 없다. 신세를 지고 나면 꼭 답례와 인사를 한다. 인맥으로 시간 절약 가능 꼴: 표정은 여유롭고 밝게 꿈: 강렬한 꿈

  1. 긍정 내기 골프에서 졌을 때 내 돈 보관 잘 하고 있어. 금방 찾아 가루거이까. 요즘 연습... read more

life

Starting the adventure March 24, 2021 10 minute read

In the midst of a global pandemic caused by the SARS-COV2 coronavirus; I decided to start blogging. I wanted to blog since a long time, I have always enjoyed writing, but many unknowns and having “no time” for it prevented me from taking it up. Things like: “I don’t really know who my target audience is”, “what would my topic or topics be?”, “I don’t think I am a world-class expert in anything”, and many more kept stopping me from setting up my own blog. Now seemed like a good time as any so with those and tons of other... read more

machine learning

my Network Optimization Methods and Algorithms April 12, 2024 8 minute read

4 the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

Who owns the copyright for an AI generated creative work? April 20, 2021 4 minute read

Recently I was reading an article about a cool project that intends to have a neural network create songs of the late club of the 27 (artists that have tragically died at age 27 or near, and in the height of their respective careers), artists such as Amy Winehouse, Jimmy Hendrix, Curt Cobain and Jim Morrison.

The project was created by Over the Bridge, an organization dedicated to increase awareness on mental health and substance abuse in the music industry, trying to denormalize... read more

So, what is a neural network? April 2, 2021 9 minute read

The omnipresence of technology nowadays has made it commonplace to read news about AI, just a quick glance at today’s headlines, and I get:

  • This Powerful AI Technique Led to Clashes at Google and Fierce Debate in Tech.
  • How A.I.-powered companies dodged the worst damage from COVID
  • AI technology detects ‘ticking time bomb’ arteries
  • AI in Drug Discovery Starts to Live Up to the Hype
  • Pentagon seeks commercial solutions to get its data ready for AI

Topics from business, manufacturing, supply chain, medicine and biotech and even defense are covered in those news... read more

neural networks

Who owns the copyright for an AI generated creative work? April 20, 2021 4 minute read

Recently I was reading an article about a cool project that intends to have a neural network create songs of the late club of the 27 (artists that have tragically died at age 27 or near, and in the height of their respective careers), artists such as Amy Winehouse, Jimmy Hendrix, Curt Cobain and Jim Morrison.

The project was created by Over the Bridge, an organization dedicated to increase awareness on mental health and substance abuse in the music industry, trying to denormalize... read more

So, what is a neural network? April 2, 2021 9 minute read

The omnipresence of technology nowadays has made it commonplace to read news about AI, just a quick glance at today’s headlines, and I get:

  • This Powerful AI Technique Led to Clashes at Google and Fierce Debate in Tech.
  • How A.I.-powered companies dodged the worst damage from COVID
  • AI technology detects ‘ticking time bomb’ arteries
  • AI in Drug Discovery Starts to Live Up to the Hype
  • Pentagon seeks commercial solutions to get its data ready for AI

Topics from business, manufacturing, supply chain, medicine and biotech and even defense are covered in those news... read more

Machine Learning Library in Python from scratch February 28, 2021 4 minute read

It must sound crazy that in this day and age, when we have such a myriad of amazing machine learning libraries and toolkits all open sourced, all quite well documented and easy to use, I decided to create my own ML library from scratch.

Let me try to explain; I am in the process of immersing myself into the world of Machine Learning, and to do so, I want to deeply understand the basic concepts and its foundations, and I think that there is no better way to do so than by creating myself all the... read more

optimization

my Network Optimization Methods and Algorithms April 12, 2024 8 minute read

4 the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

Neural Network Optimization Methods and Algorithms March 12, 2021 8 minute read

For the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

Adam

source

Adaptive Moment Estimation (Adam) is an optimization method that computes adaptive learning rates for each weight and bias. In addition to storing an... read more

python

Deep Q Learning for Tic Tac Toe March 18, 2021 12 minute read

Background

After many years of a corporate career (17) diverging from computer science, I have now decided to learn Machine Learning and in the process return to coding (something I have always loved!).

To fully grasp the essence of ML I decided to start by coding a ML library myself, so I can fully understand the inner workings, linear algebra and calculus involved in Stochastic Gradient Descent. And on top learn Python (I used to code in C++ 20 years ago).

I built a general purpose basic ML library that... read more

Machine Learning Library in Python from scratch February 28, 2021 4 minute read

It must sound crazy that in this day and age, when we have such a myriad of amazing machine learning libraries and toolkits all open sourced, all quite well documented and easy to use, I decided to create my own ML library from scratch.

Let me try to explain; I am in the process of immersing myself into the world of Machine Learning, and to do so, I want to deeply understand the basic concepts and its foundations, and I think that there is no better way to do so than by creating myself all the... read more

Conway's Game of Life February 10, 2021 3 minute read

I am lately trying to take on coding again. It had always been a part of my life since my early years when I learned to program a Tandy Color Computer at the age of 8, the good old days.

Tandy Color Computer TRS80 IIITandy Color Computer TRS80 III

Having already programed in Java, C# and of course BASIC, I thought it would be a great idea to learn Python since I have great interest in data science and machine learning, and those two topics seem to have an avid community within Python coders.

For one of my starter quick programming... read more

reinforcement learning

Deep Q Learning for Tic Tac Toe March 18, 2021 12 minute read

Background

After many years of a corporate career (17) diverging from computer science, I have now decided to learn Machine Learning and in the process return to coding (something I have always loved!).

To fully grasp the essence of ML I decided to start by coding a ML library myself, so I can fully understand the inner workings, linear algebra and calculus involved in Stochastic Gradient Descent. And on top learn Python (I used to code in C++ 20 years ago).

I built a general purpose basic ML library that... read more

scm

TFC Round 3
 flowchart LR i("  ") -..-> Minimize classDef image fill:none,stroke:none class i image 
 flowchart LR subgraph Inbound direction TB subgraph iw[warehouse] direction TB i[drum] i2[drum] i3[drum3] i4[pallet] i5[pallet] end ex1["Overflow(external storage)"] subgraph "Overflow(external storage)" direction TB dr end subgraph "Overflow(external storage)" direction TB dr2 end iw --> ex1 end orange --> i[drum] --> m[mixer] Mango --> i2[drum] --> m[mixer] vc[Vitamin C] --> i3[drum] --> m[mixer] cl[Carton 1L] --> i4[pallet] --> b[bottle] pb[PET bottle] --> i5[pallet] --> b[bottle] subgraph Product direction TB subgraph mb[Mixing] direction TB m[mixer] end subgraph bb[Bottling] direction TB b[bottle]... read more
					
TFC Round 2

TFC Round 2 (2024/04/27 ~ 05/10)

  • 부서별 역할
  • 기준 정보
  • 역할별 보고서
  • 재무 보고서
  • 교환 거래

부서별 활동

1. 구매(Purchasing) : 공급업체 선정, 원자재 구매, 조달관리 책임

agreements

  • 구매 계약지수(contract index): 지수를 낮추면 원자재 구매비용이 낮아짐.
    1 보다 낮으면 정상가보다 더 저렴하게 구매.
    정상가 x 계약지수 = 실제 구매 비용 결정됨.
    업체에 따라 품질, 페이먼트, 리드 타임에 민감도가 다름.
  • 품질이 낮으면 불량으로 다른 비용이 많이 나오면 품질을 높인다.
  • 리드 타임: 주문서를 보내면 그때부터 물건이 들어오게 하는 기간에 대한 약속(변경 불가이므로 짧은 업체 선정하면... read more
TFC Round 1

TFC Round 1 (2024/04/20 ~ 04/26)

Started my B-grade Management with The Fresh Connection

회사 경영이든 시스템 운영이든 초기 레벨에서 최종 성공이나 안정적인 단계까지 도달하기 위해서는 수많은 시행착오가 필요할 것이다

Strengthening internal cohesion with external threats (외부의 적으로 내부 결속 다지기 )

When taking on a major role in a company for the first time, what would one do first? Most likely, unless you’re the owner, you need to show results right away, so the first thing to do would probably be to downsize the workforce. However, downsizing would stir internal resistance.

처음 회사의 중책을 맡게... read more

test

Math Symbols
  1. list item
    1.1 list item 1.1 item
  2. list

  3. list item
    1.1. list item 1.1. Im 1.1. item
  4. list

  5. 그리스 문자

 α \alpha  β \beta  γ \gamma  δ \delta  ϵ \epsilon

 ζ \zeta  η \eta  θ \theta  ι \iota  κ \kappa

 λ \lambda  μ \mu  ν \nu  ξ \xi  o o (omicron)

 π \pi  ρ \rho  σ \sigma  τ \tau  υ \upsilon

 ϕ \phi  χ \chi  ψ \psi  ω \omega  

 ε \varepsilon... read more

Neural Network April 12, 2024 8 minute read

For the seemingly small project I undertook of creating a machine learning neural network that could learn by itself to play tic-tac-toe, I bumped into the necesity of implementing at least one momentum algorithm for the optimization of the network during backpropagation.

And since my original post for the TicTacToe project is quite large already, I decided to post separately these optimization methods and how did I implement them in my code.

The Cauchy-Schwarz Inequality $\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$

Adam

source

Cross entropy loss 식은 $-\frac{1}{n}\sum_{i=1}^n \sum_{c=1}^C... read more

Mermaid
 tab을 두번 누르면 위의 백틱(`)을 사용한 것과 같습니다. <span style="color:red">빨간 글씨</span> <span style="color:blue">파란 글씨</span> <span style="color:green">초록 글씨</span> <span style="color:yellow">노란 글씨</span> <span style="color:purple">보라 글씨</span> 
이 블로그의 닉네임은? poeun. 열린상태로 보여준다.
블로그를 더욱 알고 싶다면? github.com/ingu627 로 이동한다.

각주 : 1 미주 : 1에 대한 내용 미주는 글 뒷 부분에 삽입합니다.

취소선

텍스트 뒤에 space bar를 두번 치고 enter를 누른 뒤 다음 텍스트를 씁니다.
다음
다음
다음 다음

😁 이것은 ==하이라이트== 입니다.

이 태그는 H2O를 표현할 수 있습니다.

일단 실천하라.... read more

thoughts

Starting the adventure March 24, 2021 10 minute read

In the midst of a global pandemic caused by the SARS-COV2 coronavirus; I decided to start blogging. I wanted to blog since a long time, I have always enjoyed writing, but many unknowns and having “no time” for it prevented me from taking it up. Things like: “I don’t really know who my target audience is”, “what would my topic or topics be?”, “I don’t think I am a world-class expert in anything”, and many more kept stopping me from setting up my own blog. Now seemed like a good time as any so with those and tons of other... read more

  • Basic (1)
  • RL (7)
  • artificial intelligence (3)
  • coding (8)
  • copyright (1)
  • creativity (1)
  • decision-making (1)
  • deep Neural networks (2)
  • general blogging (1)
  • glossary (6)
  • life (1)
  • machine learning (7)
  • neural networks (4)
  • optimization (2)
  • python (3)
  • reinforcement learning (1)
  • scm (5)
  • test (5)
  • thoughts (1)

    2024 © Kevin Parker

    Posts
    Tags
    About