changeset 485:ac953b562eab

completed first draft.
author Robert McIntyre <rlm@mit.edu>
date Sat, 29 Mar 2014 16:22:49 -0400
parents f60a457e65a8
children 6d460ac3f5d0
files thesis/cortex.bib thesis/cortex.org
diffstat 2 files changed, 84 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/thesis/cortex.bib	Sat Mar 29 01:16:22 2014 -0400
     1.2 +++ b/thesis/cortex.bib	Sat Mar 29 16:22:49 2014 -0400
     1.3 @@ -13,3 +13,14 @@
     1.4                    manifolds and other types of pure, unrefined
     1.5                    bullshit.}}
     1.6  }
     1.7 +
     1.8 +
     1.9 +@Comment Karl Sims evolved creatures
    1.10 +
    1.11 +@Comment SOM larson paper
    1.12 +
    1.13 +@Comment cross modal clustering
    1.14 +
    1.15 +@COMMENT sussman's HACKER
    1.16 +
    1.17 +@comment motion as a 4D manifold
    1.18 \ No newline at end of file
     2.1 --- a/thesis/cortex.org	Sat Mar 29 01:16:22 2014 -0400
     2.2 +++ b/thesis/cortex.org	Sat Mar 29 16:22:49 2014 -0400
     2.3 @@ -366,7 +366,7 @@
     2.4     
     2.5  * Building =CORTEX=
     2.6  
     2.7 -  I intend for =CORTEX= to be used as a general purpose library for
     2.8 +  I intend for =CORTEX= to be used as a general-purpose library for
     2.9    building creatures and outfitting them with senses, so that it will
    2.10    be useful for other researchers who want to test out ideas of their
    2.11    own. To this end, wherver I have had to make archetictural choices
    2.12 @@ -2358,8 +2358,78 @@
    2.13     #+ATTR_LaTeX: :width 16cm
    2.14     [[./images/integration.png]]
    2.15  
    2.16 -** =CORTEX= enables many possiblities for further research
    2.17 -   
    2.18 +** COMMENT =CORTEX= enables many possiblities for further research
    2.19 +
    2.20 +   Often times, the hardest part of building a system involving
    2.21 +   creatures is dealing with physics and graphics. =CORTEX= removes
    2.22 +   much of this initial difficulty and leaves researchers free to
    2.23 +   directly pursue their ideas. I hope that even undergrads with a
    2.24 +   passing curiosity about simulated touch or creature evolution will
    2.25 +   be able to use cortex for experimentation. =CORTEX= is a completely
    2.26 +   simulated world, and far from being a disadvantage, its simulated
    2.27 +   nature enables you to create senses and creatures that would be
    2.28 +   impossible to make in the real world.
    2.29 +
    2.30 +   While not by any means a complete list, here are some paths
    2.31 +   =CORTEX= is well suited to help you explore:
    2.32 +
    2.33 +   - Empathy         :: my empathy program leaves many areas for
    2.34 +        improvement, among which are using vision to infer
    2.35 +        proprioception and looking up sensory experience with imagined
    2.36 +        vision, touch, and sound.
    2.37 +   - Evolution       :: Karl Sims created a rich environment for
    2.38 +        simulating the evolution of creatures on a connection
    2.39 +        machine. Today, this can be redone and expanded with =CORTEX=
    2.40 +        on an ordinary computer.
    2.41 +   - Exotic senses  :: Cortex enables many fascinating senses that are
    2.42 +        not possible to build in the real world. For example,
    2.43 +        telekinesis is an interesting avenue to explore. You can also
    2.44 +        make a ``semantic'' sense which looks up metadata tags on
    2.45 +        objects in the environment the metadata tags might contain
    2.46 +        other sensory information.
    2.47 +   - Imagination via subworlds :: this would involve a creature with
    2.48 +        an effector which creates an entire new sub-simulation where
    2.49 +        the creature has direct control over placement/creation of
    2.50 +        objects via simulated telekinesis. The creature observes this
    2.51 +        sub-world through it's normal senses and uses its observations
    2.52 +        to make predictions about its top level world.
    2.53 +   - Simulated prescience :: step the simulation forward a few ticks,
    2.54 +        gather sensory data, then supply this data for the creature as
    2.55 +        one of its actual senses. The cost of prescience is slowing
    2.56 +        the simulation down by a factor proportional to however far
    2.57 +        you want the entities to see into the future. What happens
    2.58 +        when two evolved creatures that can each see into the future
    2.59 +        fight each other?
    2.60 +   - Swarm creatures :: Program a group of creatures that cooperate
    2.61 +        with each other. Because the creatures would be simulated, you
    2.62 +        could investigate computationally complex rules of behavior
    2.63 +        which still, from the group's point of view, would happen in
    2.64 +        ``real time''. Interactions could be as simple as cellular
    2.65 +        organisms communicating via flashing lights, or as complex as
    2.66 +        humanoids completing social tasks, etc.
    2.67 +   - =HACKER= for writing muscle-control programs :: Presented with
    2.68 +        low-level muscle control/ sense API, generate higher level
    2.69 +        programs for accomplishing various stated goals. Example goals
    2.70 +        might be "extend all your fingers" or "move your hand into the
    2.71 +        area with blue light" or "decrease the angle of this joint".
    2.72 +        It would be like Sussman's HACKER, except it would operate
    2.73 +        with much more data in a more realistic world. Start off with
    2.74 +        "calisthenics" to develop subroutines over the motor control
    2.75 +        API. This would be the "spinal chord" of a more intelligent
    2.76 +        creature. The low level programming code might be a turning
    2.77 +        machine that could develop programs to iterate over a "tape"
    2.78 +        where each entry in the tape could control recruitment of the
    2.79 +        fibers in a muscle.
    2.80 +   - Sense fusion    :: There is much work to be done on sense
    2.81 +        integration -- building up a coherent picture of the world and
    2.82 +        the things in it with =CORTEX= as a base, you can explore
    2.83 +        concepts like self-organizing maps or cross modal clustering
    2.84 +        in ways that have never before been tried.
    2.85 +   - Inverse kinematics :: experiments in sense guided motor control
    2.86 +        are easy given =CORTEX='s support -- you can get right to the
    2.87 +        hard control problems without worrying about physics or
    2.88 +        senses.
    2.89 +
    2.90  * COMMENT Empathy in a simulated worm
    2.91  
    2.92    Here I develop a computational model of empathy, using =CORTEX= as a