# dream

3개의 포스트
post-thumbnail

Generative model: Dream to Control

월드모델에 비해 개선된 점 Value function (allowing farsighted behaviors) Backpropagation Emphasis on imagination Dreamer란 모델은 과거 data로부터 World model을 학습한 이후 해당 모델에서 예측한 내용을 토대로 미래 reward를 예측하는 value network와 action을 선택하는 action network를 학습한다. 그러면 실제로 environment 와 interaction을 할 때는 actor network를 통해서 action을 predict하게 된다. Background Artificial agent가 목표를 달성하기 위해 행동을 선택할 수 있는 방법에 대한

2023년 4월 9일
·
0개의 댓글
·
post-thumbnail

💪 Pre Learning 1

📌 개발 공부 0.5개월 차인 to-be 개발자의 자습 블로그🙂ᅠJul, 2021 > 새로운 분야에 임하는 마음 무엇을 모르는지도 모르는 상태에서 무엇을 모르는지 아는 상태로 넘어가는 것, 그리고 어렵지만 결국 알게 되기까지. 첫 번째 단계에서는 다른 이의 도움이 필요하고, 두 번째 단계에서는 앎을 좇는 나의 자세가 필요하고, 세 번째 단계에서는 완벽주의가 필요하며, 모든 단계에서 게으름을 경계해야 한다. > 현재 상태 8월에 있을 WeCode 커리큘럼 이수 전 '프로그래밍에 접근해도 되는 걸까.'하고 걱정하며 이런저런 자료를 찾아보는 중 :: 개념이 궁금해 feat #키워드 언어? 일종의 외국어로 봐도 되나 자연어 컴퓨터언어 프로그래밍 코딩 프로그래밍과 코딩의 차이 ㄴ컴퓨터언어로 명령을 내리는 작업이 코딩, 같은 결과를 내더라도 어떻게 명령을 내릴지 설계하고 코딩하는 게 프로그래밍? <span style="color:rgb(1

2021년 3월 16일
·
0개의 댓글
·
post-thumbnail

TIL: Nested Functions

Like nested lists, nested dictionaries, etc., FUNCTIONS can also be nested!!! Why use nested functions? Readability If there are lines of repetitive code, using nested functions is a good way to group and organize these lines of code in a more logical and easy-to-read manner. Closure Nested functions are used to enclose the parent function's variable/information and use/refine the enclo

2021년 1월 17일
·
0개의 댓글
·