York Jong's Library tagged → View Popular
06 May 09
透視記憶
本書為美國精神病學、神經科學、心理學教授史奎爾(Larry R. Squire)及二○○○年因研究海蝸牛機制而獲諾貝爾生醫獎得主肯戴爾(Eric R. Kandel)第一本有關記憶研究的革命性發現與看法,除了了解記憶是如何作用,並從分子生物學的領域中探究大腦的記憶系統與認知記憶儲存機制,從而尋求研發治療因年齡而造成記憶衰退的藥物,以及減緩阿茲海默症病情惡化的治療法,對於未來神經學和精神病學在醫學上的研究和臨床治療,將有莫大的幫助與影響力。
17 Feb 08
《机器人》第三章-能力和显现
-
三十年的计算机视觉的历程表明,1 MIPS的机器能从实时图像中提取简单的特征量───在杂色背景里跟踪白线或白点。10 MIPS的机器能跟随复杂的灰度区,巡航导弹、灵巧炸弹和早期的自驾驶大蓬车证实了这点。100 MIPS的机器恰好能追踪路面上不可预测的特征量,Navlab在长距离的行程证实了这点。1000 MIPS的机器完全能识别三维空间中带纹理的粗糙物体,某些中分辨率的立体视觉程序解释了这个问题,也包括我的程序。几个“垃圾箱挖掘”程序认为,10000 MIPS的机器能从杂乱中找到三维物体,并且高分辨率的立体视觉程序用10 MIPS的机器在1小时内演示了这一点。随着计算机速度和内存的增大,数据量问题逐渐不再是问题。
-
除了纯粹的运算规模,也得考虑其他因素。对1 MIPS的机器,最适用的程序是能有效处理检测数据的手工程序。
- 12 more annotations...
15 Jan 08
Thinker: 資源管理與程式
-
001 int foo() {
002 char *p1, *p2, *p3;
003
004 p1 = p2 = p3 = NULL;
005
006 do {
007 p1 = (char *)malloc(...);
008 if(p1 == NULL) break;
009 if(sub1(p1) == ERR) break;
010
011 p2 = (char *)malloc(...);
012 if(p2 == NULL) break;
013 if(sub2(p1, p2) == ERR) break;
014
015 p3 = (char *)malloc(...);
016 if(p3 == NULL) goto error;
017 if(sub3(p1, p2, p3) == ERR) break;
018
019 free(p1); free(p2); free(p3);
020 return OK;
021 } while(0);
022
023 if(p1) free(p1);
024 if(p2) free(p2);
025 if(p3) free(p3);
026 return ERR;
027 } -
001 static int _foo(char *p1, char *p2, char *p3) {
002 if(sub1(p1) == ERR) return ERR;
003 if(sub2(p1, p2) == ERR) return ERR;
004 if(sub3(p1, p2, p3) == ERR) return ERR;
005 return OK;
006 }
007
008 #define xfree(p) (void)((p)? free(p): NULL)
009 int foo() {
010 char *p1, *p2, *p3;
011 int r;
012
013 p1 = (char *)malloc(...);
014 p2 = (char *)malloc(...);
015 p3 = (char *)malloc(...);
016
017 if(p1 && p2 && p3)
018 r = _foo(p1, p2, p3);
019
020 xfree(p1); xfree(p2); xfree(p3);
021 }
09 Sep 07
When will computer hardware match the human brain? by Hans Moravec
-
The processing power and memory
capacity necessary to match general intellectual performance
of the human brain are estimated. Based on extrapolation of
past trends and on examination of technologies under
development, it is predicted that the required hardware will
be available in cheap machines in the 2020s. -
Programs need memory as well as processing speed to do
their work. The ratio of memory to speed has remained
constant during computing history. - 15 more annotations...
Peek at 1998 Moravec book - Chapter 3. Power and Presence
-
Information handling capacity in computers has been growing about ten
million times faster than it did in nervous systems during our
evolution. The power doubled every two years in the 1950s, 1960s and
1970s, doubled every 18 months in the 1980s, and is now doubling each
year. - 3 more annotations...
1 - 19 of 19
Showing 20▼ items per page
Selected Tags
Related Tags
Sponsored Links
Ads by Google
Top Contributors
Groups interested in memory
Related Lists on Diigo
-
Mac
Items: 53 | Visits: 44
Created by: Joao Alves
-
My Favourite Links
Items: 19 | Visits: 66
Created by: blindwriter
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo








