Aubret, Arthur and Matignon, Laetitia and Hassas, Salima ::: An Information-Theoretic Perspective on Intrinsic Motivation in Reinforcement Learning: A Survey
Table of Contents
A thorugh survey on Intrinsic Motivation in 2023
Backlinks
survey
(example)
- Tan: Large Language Models for Data Annotation: A Survey
- Aubret, Arthur: An Information-Theoretic Perspective on Intrinsic Motivation in Reinforcement Learning: A Survey
- a survey of various of designs of mob farms in minecraft
- a survey of learning strategies(mindmap, speed reading, zettelkasten, flash card, intermittent spacing, active recall, survey, practice and drill,…)
Here’s a script to insert multiple org-roam nodes
(defun hermanhel-strings-to-hash (strings) "Convert a list of STRINGS to a hash table with the strings as keys." (let ((hash (make-hash-table :test 'equal))) (dolist (str strings) (puthash str t hash)) hash)) (defun hermanhel-org-roam-insert-multiple-nodes-as-list () (interactive) (let ( (candidates (hermanhel-strings-to-hash (org-roam--get-titles))) (selected-nodes (citar--select-multiple "References: " candidates)) ) (dolist (title selected-nodes) (insert "+ " "[[roam:" title "]]" "\n") ) ) )