This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| xrandr --setprovideroutputsource modesetting NVIDIA-0 | |
| xrandr --auto |
AGI-08 talks http://agi-conf.org/2008/conference/
talk https://www.youtube.com/watch?v=1GAjmVXjVbI The Basic AI Drives
| tag |
|---|
| self modification |
| agi-08 |
| links |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (A) x0000x0000x00000 | |
| (B) 0x0000x0000x0000 | |
| (prediction) | |
| (C) 00x0000x0000x000 | |
| correspoding 2d representations | |
| (A) | |
| x000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // part of the code useful for a stochastic fluid dynamics simulation based on a triangle grid of celular automata | |
| typedef unsigned uint; | |
| struct Dot { | |
| bool current, next; | |
| uint nextCounters; // number of potential particles which want to occupy this place | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://charlesmartin14.wordpress.com/2015/04/01/why-deep-learning-works-ii-the-renormalization-group/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Propabilistic computation | |
| ---- | |
| http://probcomp.csail.mit.edu/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct Connection { | |
| Node target; | |
| float strength; | |
| public final this(Node target, float strength) { | |
| this.target = target; | |
| this.strength = strength; | |
| } | |
| } |
https://software.intel.com/en-us/articles/requirements-for-vectorizing-loops-with-pragma-simd https://software.intel.com/en-us/articles/vectorization-with-the-intel-compilers-part-i
https://software.intel.com/en-us/articles/requirements-for-vectorizable-loops https://software.intel.com/en-us/articles/recognizing-and-measuring-vectorization-performance
Compiler
[12] E. Thelen and L. B. Smith, A Dynamic Systems Approach to the Development of Cognition and Action, ser. Bradford Books Series in Cognitive Psychology. Cambridge, MA: MIT Press, 1994.
- more about development of humans
- pigaet theory (and reasons against it)