哎唯巴蒂
Introduction --------------------------------------------------------------------“神经网络”这个词实际是来自于生物学,而我们所指的神经网络正确的名称应该是“人工神经网络(ANNs)”。在本文,我会同时使用这两个互换的术语。一个真正的神经网络是由数个至数十亿个被称为神经元的细胞(组成我们大脑的微小细胞)所组成,它们以不同方式连接而型成网络。人工神经网络就是尝试模拟这种生物学上的体系结构及其操作。在这里有一个难题:我们对生物学上的神经网络知道的不多!因此,不同类型之间的神经网络体系结构有很大的不同,我们所知道的只是神经元基本的结构。The neuron ----------------------------------------------------------------------虽然已经确认在我们的大脑中有大约50至500种不同的神经元,但它们大部份都是基于基本神经元的特别细胞。基本神经元包含有synapses、soma、axon及dendrites。Synapses负责神经元之间的连接,它们不是直接物理上连接的,而是它们之间有一个很小的空隙允许电子讯号从一个神经元跳到另一个神经元。然后这些电子讯号会交给soma处理及以其内部电子讯号将处理结果传递给axon。而axon会将这些讯号分发给dendrites。最后,dendrites带着这些讯号再交给其它的synapses,再继续下一个循环。如同生物学上的基本神经元,人工的神经网络也有基本的神经元。每个神经元有特定数量的输入,也会为每个神经元设定权重(weight)。权重是对所输入的资料的重要性的一个指标。然后,神经元会计算出权重合计值(net value),而权重合计值就是将所有输入乘以它们的权重的合计。每个神经元都有它们各自的临界值(threshold),而当权重合计值大于临界值时,神经元会输出1。相反,则输出0。最后,输出会被传送给与该神经元连接的其它神经元继续剩余的计算。Learning ----------------------------------------------------------------------正如上述所写,问题的核心是权重及临界值是该如何设定的呢?世界上有很多不同的训练方式,就如网络类型一样多。但有些比较出名的包括back-propagation, delta rule及Kohonen训练模式。由于结构体系的不同,训练的规则也不相同,但大部份的规则可以被分为二大类别 - 监管的及非监管的。监管方式的训练规则需要“教师”告诉他们特定的输入应该作出怎样的输出。然后训练规则会调整所有需要的权重值(这是网络中是非常复杂的),而整个过程会重头开始直至数据可以被网络正确的分析出来。监管方式的训练模式包括有back-propagation及delta rule。非监管方式的规则无需教师,因为他们所产生的输出会被进一步评估。Architecture ----------------------------------------------------------------------在神经网络中,遵守明确的规则一词是最“模糊不清”的。因为有太多不同种类的网络,由简单的布尔网络(Perceptrons),至复杂的自我调整网络(Kohonen),至热动态性网络模型(Boltzmann machines)!而这些,都遵守一个网络体系结构的标准。一个网络包括有多个神经元“层”,输入层、隐蔽层及输出层。输入层负责接收输入及分发到隐蔽层(因为用户看不见这些层,所以见做隐蔽层)。这些隐蔽层负责所需的计算及输出结果给输出层,而用户则可以看到最终结果。现在,为免混淆,不会在这里更深入的探讨体系结构这一话题。对于不同神经网络的更多详细资料可以看Generation5 essays尽管我们讨论过神经元、训练及体系结构,但我们还不清楚神经网络实际做些什么。The Function of ANNs ----------------------------------------------------------------------神经网络被设计为与图案一起工作 - 它们可以被分为分类式或联想式。分类式网络可以接受一组数,然后将其分类。例如ONR程序接受一个数字的影象而输出这个数字。或者PPDA32程序接受一个坐标而将它分类成A类或B类(类别是由所提供的训练决定的)。更多实际用途可以看Applications in the Military中的军事雷达,该雷达可以分别出车辆或树。联想模式接受一组数而输出另一组。例如HIR程序接受一个‘脏’图像而输出一个它所学过而最接近的一个图像。联想模式更可应用于复杂的应用程序,如签名、面部、指纹识别等。The Ups and Downs of Neural Networks ----------------------------------------------------------------------神经网络在这个领域中有很多优点,使得它越来越流行。它在类型分类/识别方面非常出色。神经网络可以处理例外及不正常的输入数据,这对于很多系统都很重要(例如雷达及声波定位系统)。很多神经网络都是模仿生物神经网络的,即是他们仿照大脑的运作方式工作。神经网络也得助于神经系统科学的发展,使它可以像人类一样准确地辨别物件而有电脑的速度!前途是光明的,但现在...是的,神经网络也有些不好的地方。这通常都是因为缺乏足够强大的硬件。神经网络的力量源自于以并行方式处理资讯,即是同时处理多项数据。因此,要一个串行的机器模拟并行处理是非常耗时的。神经网络的另一个问题是对某一个问题构建网络所定义的条件不足 - 有太多因素需要考虑:训练的算法、体系结构、每层的神经元个数、有多少层、数据的表现等,还有其它更多因素。因此,随着时间越来越重要,大部份公司不可能负担重复的开发神经网络去有效地解决问题。NN 神经网络,Neural Network ANNs 人工神经网络,Artificial Neural Networks neurons 神经元 synapses 神经键 self-organizing networks 自我调整网络 networks modelling thermodynamic properties 热动态性网络模型 英文翻译Introduction ---------------------------------------------------------------------- Neural network is a new technology in the field of fashion vocabulary. Many people have heard of the word, but few people really understand what it is. The purpose of this paper is to introduce all the basic neural network functions, including its general structure, related terms, types and applications."Neural network" actually came from biology, and neural networks we refer the correct name should be "Artificial Neural Networks (ANNs)". In this article, I will also use the two interchangeable terms. A real neural network is a few to a few billion cells called neurons (composed of tiny cells in our brains) are composed of, they are different ways to connect and type into the network. Artificial neural network is trying to model this biological system structure and its operation. There is a problem here: we biological neural networks do not know much! Thus, between different types of neural network architecture is very different, we know only the basic structure of neurons. The neuron ---------------------------------------------------------------------- While already recognized in our brain, about 50 to 500 kinds of different neurons, but most of them are based on special cells in the basic neuron. Contains the basic neural synapses, soma, axon and dendrites. Synapses between neurons responsible for the connection, they are not directly physically connected, but they have a very small gap between to allow electronic signals from one neuron to another neuron. Then the electrical signals to the soma will be an internal electronic signal processing and its processing result will pass axon. The axon of these signals will be distributed to dendrites. Finally, dendrites with these signals and then to the other synapses, and then continue to the next cycle. As a basic biological neurons, artificial neural networks have basic neurons. Each neuron has a specific number of inputs, will be set for each neuron weight (weight). Weight is the importance of the information entered an indicator. Then, neurons calculates the weight of the total value (net value), while the total weight of all the input value is multiplied by the total of their weights. Each neuron has their own threshold (threshold), while the power is greater than the critical value of the total value of weight, the neuron will output 1. On the contrary, the output 0. Finally, the output can be transmitted to the neuronal connections with other neurons to the remaining calculations. Learning ---------------------------------------------------------------------- As written above, at issue is the critical value of the weight and how to set it? The world has many different training methods, as much as the network type. But some well-known, including back-propagation, delta rule and Kohonen training mode. Because of different structural systems, training is not the same rules, but most of the rules can be divided into two broad categories - regulatory and non-regulated. Supervising the training rules need to be "teachers" tell them how a particular input to the output should be. Then the training rule to adjust the weight of all the needs of value (this is a very complex network), and the whole process would start again until the correct data can be analyzed by the network. Regulatory approach of the training model includes back-propagation and the delta rule. The rules of non-regulatory approach without teachers, because they produce the output will be further evaluated. Architecture ---------------------------------------------------------------------- In the neural network, comply with the rules clear word is the most "obscure" the. Because there are too many different types of networks, from simple Boolean networks (Perceptrons), to the complex network of self-adjustment (Kohonen), to the thermal dynamic network model (Boltzmann machines)! These have to comply with the standards of a network architecture. A network including multiple neurons, "layer", the input layer, hidden layer and output layer. Input layer to receive input and distribute to the hidden layer (because the user can not see the layers, so do see the hidden layer). The hidden layer is responsible for the necessary calculations and output to the output layer, the user can see the final result. Now, to avoid confusion, would not be here more in-depth study architecture talking about it. Different neural networks for more detailed information can be read Generation5 essays, including a multiple neural network "layer", the input layer, hidden layer and output layer. Input layer to receive input and distribute to the hidden layer (because the user can not see the layers, so do see the hidden layer). The hidden layer is responsible for the necessary calculations and output to the output layer, the user can see the final result. Now, to avoid confusion, would not be here more in-depth study architecture talking about it. Different neural networks for more detailed information can be seen Generation5 essays. Although we discussed the neurons, training and architecture, but we do not know what the actual neural network. The Function of ANNs ---------------------------------------------------------------------- Neural networks are designed to work with patterns - they can be divided into two categories-type or association type. Category-type network can accept a few, and then classified. For example, ONR program accepts a number of the image and the output figure. Or PPDA32 program accepts a coordinate and to classify it as Class A or B (type of training provided by the decision). More practical use can be seen Applications in the Military in the military radars, the radar could pick out a vehicle or tree. Lenovo model to accept a group of numbers and the output of another group. HIR procedures such as acceptance of a 'dirty' image and the output of a learned and the closest it an image. Lenovo model also can be used in complex applications such as signature, face, fingerprint recognition. The Ups and Downs of Neural Networks ---------------------------------------------------------------------- Neural network in this area has many advantages, making it more popular. It is in the type classification / recognition is very good. Neural networks can handle the exception and not the normal input data, which are important for many systems (such as radar and sonar systems). Many neural networks are mimic biological neural networks, that is their mode of operation modeled on the work of the brain. Neural networks also have to help the development of neuroscience, it can, like humans, accurate identification of objects and the speed of computers! The future is bright, but now ... Yes, the neural network are also some bad points. This is usually because of lack of sufficiently powerful hardware. Power derived from the neural network to process information in parallel, that is, a number of data simultaneously. Therefore, to simulate a serial parallel processing machines is very time-consuming. Another problem with neural networks is a problem in building a network of defined conditions are not - there are too many factors to consider: training algorithms, architecture, number of neurons in each layer, the number of layers, data show, etc. There are other additional factors. Therefore, more and more important over time, most companies can not afford to repeat the development of neural network to effectively solve the problem.不知道是不是 我随便找的
明鑫花卉
Network Pruning Network pruning offers another approach for dynamically determining an appropriate network topology. Pruning techniques(see [40] for an excellent survey) begin by training a larger than necessary network and then eliminate weights and neurons that are deemed redundant. Constructive algorithms offer several significant advantages over pruning-based algorithms including,the ease of specification of the initial network topology,better economy in terms of training time and number of training examples, and potential for converging to a smaller network with superior generalization [27]. In this paper we will focus primarily on constructive learning algorithms. In Section IV we show how a local pruning step can be integrated into the network construction process to obtain more compact networks.
荷塘荔色
思想,一般也称“观念”,也是关系着一个人的行为方式和情感 方法 的重要体现。那么你知道思想用英语怎么说吗?下面跟我一起学习思想的英语知识吧。
thought
idea
ideology
自由思想 Libre-pensée ; freethought
中心思想 main ideas ; Central idea ; The main idea ; controlling idea
思想改造 ideological remoulding ; thought reform ; ideological remolding
解放思想 free our minds ; emancipate our minds ; das Denken befreien
儒家思想 Confucianism ; Confucian thoughts ; Confucian ideas ; Confucianist thought
思想史 intellectual history ; history of thought ; History of Ideas ; Ideological History
思想库 think tank ; thinking bank ; the brain trust ; Policy Planning Staff
1. Professor Baker is unacquainted with the idea of representative democracy.
贝克教授并不熟悉“代议制民主”这一思想。
2. He is loathed by some of the more traditionally minded officers.
他为某些思想较守旧的官员所憎恶。
3. Her literary criticism focuses on the way great literature suggests ideas.
她的文学批评集中关注的是伟大的文学作品表达思想的方式。
4. Without continued learning, graduates will lose their intellectual vitality.
如果不继续学习, 毕业 生就会失去思想上的活力。
5. The college has brought me into contact with western ideas.
上大学使我接触了西方的思想。
6. She applauds the fact that they are promoting new ideas.
他们在宣传新思想,对此她表示赞许。
7. Mainline feminism was arguing for the inherent beauty of the natural woman.
主流女权主义思想倡导女性天生的自然美。
8. He continues to insulate his country from the contagion of foreign ideas.
他继续使本国远离外来思想的侵袭。
9. Her actions and thoughts became distorted. So did her behavior.
她的行动和思想变得扭曲了,她的态度也是。
10. This served to hide the confusion and imprecision in their thinking.
这个被用来掩盖他们思想的混乱和不准确。
11. During the war his pacifist leanings were not helpful.
战时他的和平主义思想派不上用场。
12. She is known to have liberal views on divorce and contraception.
众所周知,她在离婚与避孕方面思想很开明。
13. Priestley's rational outlook in science carried over to religion.
普里斯特利在科学上的理性世界观延伸到了宗教思想上。
14. He's trying to bring together various strands of radical philosophic thought.
他正试图把各种激进的哲学思想综合在一起。
15. The interchange of ideas aids an understanding of family dynamics.
思想的交流有助于理解家庭动态。
In the movie Self/Less,which hits theaters July 10th,Sir Ben Kingsley transfers his consciousness to Ryan Reynold's body in an effort to stay alive forever,and effectively become immortal in a process called'shedding'.
7月10日上映的电影《非我》 (又名换命法则)中,本.金斯利为了延续生命,将自己的意识转移到了瑞恩.雷诺兹的身体中,这个帮他延长寿命的过程叫“换命”。
Which sounds pretty awesome,I mean who wouldn't want more time to accomplish their dreams and goals in a younger body of your choice?Try being a professional athlete or solve the world's greatest problems.But is shedding actually plausible?Could you really be immortal in this way?
听起来好像很厉害的样子,谁不希望有机会借用一具自己选择的年轻肉体,获得更多时间来完成梦想和目标?例如成为一个职业运动员或解决世界上最牛逼的难题。但这种“换命”有可能成真吗?我们是否真的可以借这种方法获得永生?
First,we need to understand how memories are stored.Your brain is a three-pound lump of fatty tissue that contains about 86 billion brain cells called neurons.By passing electricity or chemicals between them,neurons can send signals to each other.Most neuroscientists believe memory is stored as a network of neurons that form links with each other and all fire at the same time.
首先,我们得知道记忆的存储方式。大脑是一块重3磅的脂肪组织,其中含有约860亿名为神经元的脑细胞。通过传递电流和化学物质,神经元之间可以互相发送信号。神经系统学家大多认为记忆是以神经元网络的形式存储的,当神经元彼此连接并且同时活动时就形成了记忆。
Each time a memory is recalled,the same network of neurons fires together.In fact,scientists have shown that if you stimulate certain parts of the brain with electricity,you can cause an individual to recall certain memories-for example,the smell of burnt toast.So to download a memory,we could simply track which neurons are activated when you're thinking about it.
每次回忆时,同一个神经元网络就会同时发送信号,事实上,科学家已经证明了,如果用电刺激大脑的特定部位,就能让该个体回忆起特定的记忆,例如,面包烤焦的味道。因此,要下载记忆,我们只要在回忆时追踪正在活动的神经元即可。
And,as we explained in a previous video,scientists have already done this.By using computers to match these patterns of firing neurons with real images or scenes,we can already read people's minds to a limited degree.Many scientists believe it should one day be possible to create a kind of map of all the neurons in the brain and the connections between them:this map would be called a "connectome."
正如之前其他视频所介绍的,科学家们已经着手进行这项工作了。通过电脑模拟这些神经元活动的方式,生成真实的图像或感觉,我们已经能在一定程度上读出人的思想了。许多科学家都相信有朝一日我们可以,组建出大脑中所有神经元的地图,并能随意将它们连接在一起:这地图可以命名为“连接体”。
Both the United States and the European Union have launched major research programs with this goal specifically in mind,much like the organizations in Self/Less.This task will likely take decades,but once it's done,scientists should be able to build a computer model of the connectome,a kind of virtual brain that would be able to send signals between neurons through artificial synapses.
美国和欧联都已启动,有关这个目标的重要研究项目,就像《非我》里的研究组织一样。这个任务可能需要耗时数十年,一旦完成,科学家们就能建出连接体的电脑模型,一个能够通过人造突触,在神经元之间传递信号的虚拟大脑。
So if downloading memories is possible,what about uploading? That too is becoming a reality thanks to a technique called optogenetics.This involves injecting specific neurons with DNA from algae that causes them to produce a light-sensitive protein on their cell surface.When light is shone into the brain,it stimulates the protein and activates only those neurons that express it.
如果下载记忆是可能的,那么上传呢?由于一种名为光遗传学的技术,上传也可能实现。向特殊的神经元中注入,藻类的DNA 让它们可以,在细胞表面生成一种光敏蛋白质。当光照进大脑时,会刺激该蛋白质并且激活与之有关的那些神经元。
In this way,scientists can artificially activate groups of neurons assoc'''iated with particular memories.All this may sound pretty scary,and may make you think that a scenario like that found in Self/Less can't be far off.But there a few reasons to relax.Our brains are unbelievably complex,perhaps too complex to copy.The number of synapse connections is a thousand times bigger than the number of stars in the Milky Way galaxy.
通过这种方式,科学家们可以人为激活,与特殊记忆有关的神经元。这听起来很可怕,甚至可能会让你认为《非我》中的那种情景很快就会成真。不过事情并没那么简单。我们的大脑超级复杂,复杂到很可能根本无法复制。突触间的连接方式,可能是银行系中星星数量的100多倍。
On top of that,your brain is constantly remodeling itself,creating new connections and letting old ones expire.It's a reflection of who you are at this specific moment in time,and it took your entire lifetime to create.A copy of your mind would be just an imitation.And the second it started integreating new thoughts,memories and experiences,it would become someone else.
此外,大脑还在不停地自我重塑,建立新的关联并且消亡旧的关联。它是某个时间对你个人的一种即时映射,需要你用整个人生去塑造。思维复制得到的可能只是一件副本。从这个副本开始形成新的思想.记忆和经历的那一刻起,它就成了其他人。
Which in a way helps us appreciate how unique we truly are.But with increasingly sophisticated technology.who knows what the future may hold!Perhaps a world like Self/Less isn't too far away.
某种程度而言,这增加了我们的独特性。随着尖端科技的不断发展,谁知道未来会变成什么样!没准不久后我们就会迎来《非我》的世界。
猜你喜欢:
1. 理念用英语怎么说
2. 司机英语怎么说
3. 关于“看”的各种英文表达
4. 如何用英语简单句表达复杂思想
5. “别绕弯子、直说”用英语怎么表达
6. 思想家用英语怎么说
瑞贝卡tt
fever1、fever 英['fi:və(r)] 美[ˈfivɚ] n. 发热,发烧;热病;一时的狂热;激动不安 vt. 引起发热;使狂热;使患热病 vi. 发热或变得发热;狂热;患热病 [例句]Fever and rash were common symptoms.发烧和出疹是常见症状。 2、nevernever 英['nevə(r)] 美[ˈnɛvɚ] adv. 从不,从来没有;一点也不,决不;<口>不会…吧,没有;不曾 [例句]Never give up , " he says ."“永不放弃,”他说。3、lever lever 英['li:və(r)] 美[ˈlɛvɚ, ˈlivɚ] n. 杠杆;操作杆;工具 vt. 用杠杆撬动 名词复数:levers [例句]The second lever is the system of mortgage financing.第二种杠杆是抵押贷款融资系统。 4、seversever 英['sevə(r)] 美[ˈsɛvɚ] vt. 分离或分开;切制;分离:断决(例如,关系) vi. 切开:切开或打开;分开:相互分开或分离 第三人称单数:severs;过去分词:severed;现在分词:severing;过去式:... [例句]But personalised filters sever the synapses in that brain.但是个性化过滤,切断了突触的大脑。 5、everyevery 英['evrɪ] 美[ˈɛvri] adj. (与单数名词连用,指整体中的)每一个;每…一次的;所有可能的;完... [例句]On the road : once every 6weeks出差频率:每6周一次 6、everything/everybody/everyone/everytime/everyday 7、evergreenevergreen 英['evəɡri:n] 美[ˈɛvɚˌɡrin] n. 常绿植物,常绿树;常绿树枝 adj. [植] 常绿的;永葆青春的 。。。。。。有不少呢,就举这些吧!
优质英语培训问答知识库