sky

Cannot fit er-example-server to TelosB

*爱你&永不变心* 提交于 2019-12-11 13:48:00
问题 I am trying to make 2 motes connect via a border-router, using the contiki 3 examples. I compiled er-example-client but it does not fit on my Crossbow TelosB mote. It comes up with error message: er-example-server.sky section '.text' will not fit in region 'rom' I am using Instant Contiki, which has msp430-gcc v4.7. The same seems to happen in Cooja as well, using Sky motes. 回答1: The application doesn't fit the Sky/TelosB ROM. Using the msp430-4.7.x provides a nice size reduction, but doesn't

RNN

泄露秘密 提交于 2019-11-27 13:35:37
RNN(Recurrent Neural Networks)循环神经网络 广泛应用于自然语言处理(NLP,Natural Language Processing) Back Propagation Through Time Vanishing gradient problem LSTM, 长期依赖,long term dependencies the clouds are in the sky,推测最后一个词sky I grew up in France...I speak fluent French,推测最后一个词French,间隔比较大 定向循环,可以持久化信息 人们阅读时,都是基于之前的积累来理解当前的词,而不总是从一片空白开始。 序列 参考链接: http://www.wildml.com/2015/09/recurrent-neural-networks-tutorial-part-1-introduction-to-rnns/ 来源: https://www.cnblogs.com/yangwenhuan/p/8046450.html

java 对象

淺唱寂寞╮ 提交于 2019-11-26 15:53:37
对象是类的实例,类是对象的抽象 对象的创建:类名 对象://声明一个对象(即变量) 类名 对象=new 类名()//在堆内存中为该对象分配内存 例:sky s1;//s1位于栈内存 sky s1=new sky(); 也可表述为: sky s1=new sky(); 来源: https://www.cnblogs.com/dream--sky/p/11325108.html