c****u 发帖数: 584 | 1
OK that is the same thing as bounded. So we use 4 or 3 levels model to
study laser.
Of course there is a certain temperature if the system is in thermo equilibrium
That is not assumption. It is true there are many ways to do in experiment,
in NMR they inverse the magnet field. In laser they pump the media or using
Q switch to build up the inverse...I don't care. As long as you prepare a
negative
temperature system, that system should obey the thermodynamic laws. And
1/T=dS/dE is the definiti |
|
s**u 发帖数: 383 | 2 "check model" and "load data"没问题,一complie就显示
expected multivariate node
那位有经验的讲讲这个是什么错误?
model {
for (i in 1:k-1) {
for (j in i+1:k){
win1[i,j] ~ dbin(p[i,j], n)
logit(p[i,j]) <- d[i]-d[j]}
}
d[1:k] ~dmnorm(dmu[ ], prec.Sigma[,])
## Inverse Wishart Prior for Sigma
dmu[1:k] <-0
prec.Sigma[1:k,1:k] ~dwish(Omega[,],k)
Sigma[1:k,1:k]<-inverse(prec.Sigma[,])
for (i in 1:k){ Omega[i,i] <- 0.001}
}
Data:
... 阅读全帖 |
|
s**u 发帖数: 383 | 3 "check model" and "load data"没问题,一complie就显示
expected multivariate node
那位有经验的讲讲这个是什么错误?
model {
for (i in 1:k-1) {
for (j in i+1:k){
win1[i,j] ~ dbin(p[i,j], n)
logit(p[i,j]) <- d[i]-d[j]}
}
d[1:k] ~dmnorm(dmu[ ], prec.Sigma[,])
## Inverse Wishart Prior for Sigma
dmu[1:k] <-0
prec.Sigma[1:k,1:k] ~dwish(Omega[,],k)
Sigma[1:k,1:k]<-inverse(prec.Sigma[,])
for (i in 1:k){ Omega[i,i] <- 0.001}
}
Data:
... 阅读全帖 |
|
s**u 发帖数: 383 | 4 经高手指导,compile 没有问题了, 但是initial 又出问题了, 说是NIL
dereference (read), 查了manual, 说是 'NIL dereference (read)' can occur at
compilation in some circumstances when an inappropriate transformation is
made, for example an array into a scalar.用gen initial也出现同样的error.
请高人指导,谢谢。
model {
for (i in 1:k-1) {
for (j in i+1:k){
win1[i,j] ~ dbin(p[i,j], n)
logit(p[i,j]) <- d[i]-d[j]}
# p[i] <- phi(d[ind1[i]] - d[ind2[i]])
}
d[1:k] ~dmnorm(dmu[ ]... 阅读全帖 |
|
F******n 发帖数: 160 | 5 In that case, it is not a trivial problem, but it could be done by applying
the incremental SVD algorithm.
This efficient/adaptive algorithm was originally given by a guy (Matthew)
from Mitsubishi research lab. You can easily google that paper.
The main point relevant to the LS regression:
b = (X'X)^(-1) (X'y) (1)
is that, matrix inversion (X'X)^(-1) is essentially an SVD problem. As your
new data come in, you should sort of have an updated X and y, and
consequently an updated X'X. In abov... 阅读全帖 |
|
l*********g 发帖数: 177 | 6 向各位请教一下:
本人在sas中进行gmm estimation,用的是proc model的功能。但是现在有个麻烦的问
题就是, 根据我需要estimate的model,在我写gmm 的每个moment condition
equations 的时候会需要用到matrix的计算(比如inverse, multiplication等)。然
而似乎在proc model中写那些moment condition equations 只能写成用1维的量表达的
式子,这就造成我的问题:如果把比如matrix inverse之类的计算用1维的式子表示会
变得极为繁琐和庞大。
我知道sas中有个iml进行矩阵运算的,但是那个iml并没有和proc model联系在一起。
请问有没有人知道根据我的情况,能怎样在proc model中实现gmm还能用矩阵来方便描
述我的moment condition equations 啊?
谢谢帮助! |
|
o****o 发帖数: 8077 | 7 two approaches using PROC REG
1. ODS OUTPUT INVXPX=INVERSED;
PROC REG DATA=URDATA NOPRINT SINGULAR=1E-17;
MODEL Y = X1-X10 /I NOINT;
RUN;QUIT;
2. PROC REG DATA=URDATA2 NOPRINT OUTEST=INVERSED SINGULAR=1E-17;
MODEL I1-I10 = X1-X10 /NOINT;
RUN;QUIT;
check here:
http://www.sas-programming.com/2011/10/obtain-trace-of-projecti
baozi pls |
|
m**c 发帖数: 88 | 8 有个问题一直没解决,找不到人问,发上来希望能有高手指点一下.很简单的模型,线性高
斯模型, Y = A0 + A*X + e, 已知观测向量Y(5维的),系数矩阵 (A0,A)以及方差矩阵(V
),估计X(7维的). 现在的问题是,X维数太高,采样不收敛. 降低X的维数,比如我只估计X
[1],X[2],其他X分量的先验分布的方差设置的很小,这样相当于其他分量为固定值了,这
时后采样效果较好,算法收敛,但是进一步提高X的维数,比如下面这段程序里,估计X[1],
X[2],X[4],X[5],X[7],结果很不好.
想问问大家我这个程序这样写有没有问题?有没有办法改进,使得估计高维的X是结果仍
然可以接受?
model{
for (i in 1:n){
y[i,1:5]~ dmnorm( mu[], T[,] )
}
# computing the mu
for (i in 1:P){
mu[i] <- inprod(A[i,],x[,])+ A0[i,1]
}
... 阅读全帖 |
|
c*****a 发帖数: 16 | 9 First step: run a probit equation of participation using all the
observations. The estimates of from this probit model are then used to
construct consistent estimates of the inverse Mills ratio term.
Second step: Include the inverse Mills ratio and run the original regression
equation.
Question: do these two equations have to include the SAME control variables
(except IV)? |
|
k****n 发帖数: 165 | 10 如果1000个健康人都是unique的(没有用一个健康人match2个或以上病人的情况),可
以take average of the 2 matched control observations within each pair.
Besides,why use 1:2? Ppl use 1:K when they have a rich control set but
usually K is much larger than 2. Do pay attention the balance of the
propensity score in each matched pair for observations from treatment and
control group. This is the advantage of using matching versus inverse
weighting as it is obvious for you to check whether you have good matched
pairs. For binary treatme... 阅读全帖 |
|
X*****s 发帖数: 2767 | 11 William %R: Developed by Larry Williams, Williams %R is a momentum
indicator that is the inverse of the Fast Stochastic Oscillator. Also
referred to as %R, Williams %R reflects the level of the close relative to
the highest high for the look-back period. In contrast, the Stochastic
Oscillator reflects the level of the close relative to the lowest low. %R
corrects for the inversion by multiplying the raw value by -100. As a result
, the Fast Stochastic Oscillator and Williams %R produce the exact... 阅读全帖 |
|
b*****h 发帖数: 3386 | 12 There are too many pre-prototype of double-bottoms, inverse head&shoulders
in a downtrend. Those kind of inverse patterns work better at the end of
5-wave structure. Now it is more like in the middle of the wave.
Just grab a 15 min spx chart, and see. |
|
q********g 发帖数: 10694 | 13 Sobereva
Department of Chemistry, University of Science and Technology Beijing,
Beijing 100083, China
前言:本文主要介绍过渡态、反应路径的计算方法,并讨论相关问题。由于这类算法极
多,可以互相组合,限于精力不可能面面俱到展开,所以只介绍常用,或者实用价值有
限但有启发性的方法。文中图片来自相关文献,做了一定修改。由于本文作为帖子发布
,文中无法插入复杂公式,故文中尽量将公式转化为文字描述并加以解释,这样必然不
如公式形式严谨,而且过于复杂的公式只能略过,但我想这样做的好处是更易把握方法
的梗概,有兴趣可以进一步阅读原文了解细节。对于Gaussian中可以实现的方法,文中
对其在Gaussian中的使用进行了一些讨论,希望能纠正一些网上流传的误区。虽然绝大
多数人不专门研究计算方法,其中很多方法也不会用到,但多了解一下对开阔思路是很
有好处的。
文中指的“反应”包括构象变化、异构化、单分子反应等任何涉及到过渡态的变化过程
。“反应物”与“产物”泛指这些过程的初态和末态。“优化”若未注明,... 阅读全帖 |
|
c******a 发帖数: 600 | 14 刚才我用inverse kinematics和Trajectory搜索了一下,感觉很可能还都是比较合适的,
节后好好读读 :)
我做的是一个偏底层(硬件)的东西。比如以一个Inverse Kinematics介绍的网页上的
例子
torque = Mag(f) * SinVect(a, f) * SinVect(b, f) * sign(CosVect(r, f)) *
Sensitivity
那么这个等式就会用到Sin和Cos运算,如果不考虑查表的情况,那么CPU在进行一个三
角函数计算的时候,实际上是通过其他的方法(比如将其分解为泰勒级数)展开计算。
所以执行时间会比较长。当然也可以把这种计算投射到硬件加速器上处理(类似协处理
器),但是用硬件进行这种运算实际上开销较大(比如硬件乘法器,在一个FPGA上可能
也就最多几十个)
现在合作组做成的工作是能够将这种比较复杂的算式用一些耗用资源很少的电路实现,
这样在并行处理多个任务时会有速度和资源的优势。打个比方,假如有20个关节要同时
控制,用单个CPU可能满足不了实时性的要求(overload),全部用硬件控制(并行处理)
实时性没有 |
|
a*****c 发帖数: 3525 | 15 【 以下文字转载自 Military 讨论区 】
发信人: agostic (π-packing), 信区: Military
标 题: (中英文)原子弹下无冤魂:B29飞行员查尔斯•斯韦尼将军1995国会演讲
发信站: BBS 未名空间站 (Wed Aug 15 20:13:42 2012, 美东)
只有记忆才能带来真正的原谅,而遗忘就可能冒重复历史的危险。
One can only forgive by remembering. And to forget, is to risk repeating
history.
学英文是为了更好地了解历史。文章很长,有兴趣学英语同时了解历史的同学,希望耐
心地看完(也可以拷贝下来仔细研读)。不仅仅是学英语,更重要的是学如何写作,如
何摆事实,讲道理,反驳质疑。可以学的东西(中英文)原子弹下无冤魂:B29飞行员查
尔斯•斯韦尼将军1995国会演讲很多,就看你是否能够用心去领悟。这是一篇难
得的informative/historical/linguastic article. Enjoy and welcome to ... 阅读全帖 |
|
v****i 发帖数: 779 | 16
北京时间3月22日凌晨消息,周一美国股市小幅收涨,道指微涨0.12%连续第七天创下年
内新高,为一年来最长连续上涨纪录。美联储两位高官表示有可能在4月份加息。油价
收高,抹平了上周五的大部分跌幅。
道琼斯工业平均指数上涨21.30点,报17623.60点,涨幅为0.12%;标准普尔500指数上
涨1.99点,报2051.57点,涨幅为0.10%;纳斯达克综合指数上涨13.23点,报4808.87点
,涨幅为0.28%。
盘面上,医疗保健板块走高,能源和原材料板块领跌。
旧金山联储主席约翰·威廉姆斯(John Williams)称,如果经济数据的表现继续符合
他的预期,那么他将支持美联储在4月份或6月份政策会议上加息。
威廉姆斯称,美国经济目前的状况“看起来很不错”,并表示如果不是因为全球因素的
话,那么该行原本会以更快的速度加息。“在其他所有因素都相同的情况下,同时经济
数据继续符合我的期望和预期,那么4月份或6月份加息当然是有可能的。”
亚特兰大联储主席洛克哈特(Dennis Lockhart)周一表示,美联储很可能最快在4月
FOMC会议上加息,表明美国的政策制定者倾向于采取与... 阅读全帖 |
|
v****i 发帖数: 779 | 17 北京时间3月22日凌晨消息,周一美国股市小幅收涨,道指微涨0.12%连续第七天创下年
内新高,为一年来最长连续上涨纪录。美联储两位高官表示有可能在4月份加息。油价
收高,抹平了上周五的大部分跌幅。
道琼斯工业平均指数上涨21.30点,报17623.60点,涨幅为0.12%;标准普尔500指数上
涨1.99点,报2051.57点,涨幅为0.10%;纳斯达克综合指数上涨13.23点,报4808.87点
,涨幅为0.28%。
盘面上,医疗保健板块走高,能源和原材料板块领跌。
旧金山联储主席约翰·威廉姆斯(John Williams)称,如果经济数据的表现继续符合
他的预期,那么他将支持美联储在4月份或6月份政策会议上加息。
威廉姆斯称,美国经济目前的状况“看起来很不错”,并表示如果不是因为全球因素的
话,那么该行原本会以更快的速度加息。“在其他所有因素都相同的情况下,同时经济
数据继续符合我的期望和预期,那么4月份或6月份加息当然是有可能的。”
亚特兰大联储主席洛克哈特(Dennis Lockhart)周一表示,美联储很可能最快在4月
FOMC会议上加息,表明美国的政策制定者倾向于采取与其他... 阅读全帖 |
|
s****r 发帖数: 31686 | 18 or Fourier Inverse Transform |
|
k***g 发帖数: 7244 | 19 其实政治学里作中国基层研究的挺多的,不过好像在国内没有什么影响力;
也许是因为写得太学术了使得一般的读者失去兴趣了,主要是一方面要试图
放进西方政治、社会学的理论框架,引入大量的一般人不懂的术语和专有名
词,另一方面大量的使用计量的方法,没有相关背景的人很难理解,比如给
一个 estimation 结果和一个 Hessian matrix,一般的读者不会明白如何用
Hessian inversion 的 diagonal 来解读 estimation 的 coefs;
而这个又是由于期刊的审稿制度导致的,如果你只是讲一个story,没有 th
eory 和 相应的 方法,很难发表在好的期刊上;
自然科学其实也有这样的问题。
《美国政治学评论》近十年来唯一篇关于中国国内政治的文章(印象如此)
,就是关于中国农村的 public goods 的问题:如果非民选的官员的 accou
ntability 很弱的话(因为没有选举束缚)? 那么他们如何给人民提供 pub
lic goods,他们为什会有这样的 incentive ? 社会的稳定是如何实现的?
这篇文章其实回答的是《中县干部》里问题... 阅读全帖 |
|
k***g 发帖数: 7244 | 20 其实政治学里作中国基层研究的挺多的,不过好像在国内没有什么影响力;
也许是因为写得太学术了使得一般的读者失去兴趣了,主要是一方面要试图
放进西方政治、社会学的理论框架,引入大量的一般人不懂的术语和专有名
词,另一方面大量的使用计量的方法,没有相关背景的人很难理解,比如给
一个 estimation 结果和一个 Hessian matrix,一般的读者不会明白如何用
Hessian inversion 的 diagonal 来解读 estimation 的 coefs;
而这个又是由于期刊的审稿制度导致的,如果你只是讲一个story,没有 th
eory 和 相应的 方法,很难发表在好的期刊上;
自然科学其实也有这样的问题。
《美国政治学评论》近十年来唯一篇关于中国国内政治的文章(印象如此)
,就是关于中国农村的 public goods 的问题:如果非民选的官员的 accou
ntability 很弱的话(因为没有选举束缚)? 那么他们如何给人民提供 pub
lic goods,他们为什会有这样的 incentive ? 社会的稳定是如何实现的?
这篇文章其实回答的是《中县干部》里问题... 阅读全帖 |
|
s******8 发帖数: 7105 | 21 RDS-37 was the Soviet Union's first "true" (staged) hydrogen bomb, first
tested on November 22, 1955. The weapon had a nominal yield of approximately
3 megatons. It was scaled down to 1.6 megatons for the live test.
It was a multi-stage thermonuclear device which utilized radiation implosion
called Sakharov's "Third Idea" in the USSR (the Teller–Ulam design in the
USA). It utilized a dry lithium deuteride fusion fuel, with some of it
replaced with a "passive material" to reduce its total yield. ... 阅读全帖 |
|
c****e 发帖数: 3522 | 22 以前在一个老美老太太家中住过,人说了
生了儿子就可以keep family name,
那叫做family honer, 在美国,上次调查是
60%多的人要男孩,20%多的人无所谓
剩下的要女孩
look at this article
http://www.theatlanticwire.com/national/2011/06/twice-many-amer
Twice as Many Americans Want Sons Over Daughters
A new book, "Unnatural Selection," by Science writer Mara Hvistendahl
looked at the tremendous shortage of women, particularly in Asia, due to
sex selection. Hvistendahl focused on the West's role in exacerbating the
disparity by exporting abortion technologies, and ... 阅读全帖 |
|
a*****c 发帖数: 3525 | 23 【 以下文字转载自 Military 讨论区 】
发信人: agostic (π-packing), 信区: Military
标 题: (中英文)原子弹下无冤魂:B29飞行员查尔斯•斯韦尼将军1995国会演讲
发信站: BBS 未名空间站 (Wed Aug 15 20:13:42 2012, 美东)
只有记忆才能带来真正的原谅,而遗忘就可能冒重复历史的危险。
One can only forgive by remembering. And to forget, is to risk repeating
history.
学英文是为了更好地了解历史。文章很长,有兴趣学英语同时了解历史的同学,希望耐
心地看完(也可以拷贝下来仔细研读)。不仅仅是学英语,更重要的是学如何写作,如
何摆事实,讲道理,反驳质疑。可以学的东西(中英文)原子弹下无冤魂:B29飞行员查
尔斯•斯韦尼将军1995国会演讲很多,就看你是否能够用心去领悟。这是一篇难
得的informative/historical/linguastic article. Enjoy and welcome to ... 阅读全帖 |
|
k*****r 发帖数: 21039 | 24 毛是个得天道,而违人意的伟人.
他知道中国要复兴,中国人要在这个地球上生存下去,必须做艰苦的精神改造. 这才是文
化大革命的motivation.
邓癌就是老毛的inverse. |
|
H****g 发帖数: 14447 | 25 The Triumphant Restoration
http://positions.dukejournals.org/cgi/reprint/13/3/659
Alain Badiou
So it is that Deng Xiaoping, this Louis XVIII of all the bureaucrats whom
the Cultural Revolution had turned into internal political émigrés, wants
to signal his restoration with a great “trial,” where history will be made
to
appear before a handful of obedient judges.
Like the Moscow trials, of which they represent the farcical imitation that
follows in the wake of tragedy, the Peking trials aim to tu... 阅读全帖 |
|
c***l 发帖数: 2395 | 26 这几段讨论中国人的有点意思
engchina 07:21 AM on 10/27/2010
130 Fans
China is a nation of WE can do to make our nation stronger.
The US is a nation of ME and only ME.
The Chinese are building a middle class while government inaction ,overt
avarice and greed is destroying the American middle class.
It's that simple.
EngChina
DutchmanJunior 07:25 AM on 10/27/2010
16 Fans
1 billion people working together can do amazing things.
300 million divided can't accomplish much.
Watching China 02:52 PM on 10/28/201... 阅读全帖 |
|
m**********r 发帖数: 887 | 27 ”This portfolio is a half-step away from a cellar-full of canned goods and nine-millimeter rounds,”
【 以下文字转载自 Investment 讨论区 】
发信人: mygoldfinger (金手指), 信区: Investment
标 题: Ron Paul's personal investment portfolio
发信站: BBS 未名空间站 (Fri Jan 6 09:17:10 2012, 美东)
According to Wall Street Journal
http://blogs.wsj.com/totalreturn/2011/12/21/the-ron-paul-portfo
He owns no bonds or bond funds and has only 0.1% in stock funds. Furthermore
, the stock funds that Rep. Paul does own are all “short,” or make... 阅读全帖 |
|
l**i 发帖数: 8144 | 28 简单地讲 就是谋事在人 成事在天
认为社会发展沿着某个预定方向发展的理论 都是傻逼理论
--------------------------------------
Anthropic principle
From Wikipedia, the free encyclopedia
In astrophysics and cosmology, the anthropic principle is the philosophical
argument that observations of the physical Universe must be compatible with
the conscious life that observes it. Some proponents of the argument reason
that it explains why the Universe has the age and the fundamental physical
constants necessary to accommodate conscious life. As a ... 阅读全帖 |
|
L*******o 发帖数: 895 | 29 1. Isaac Newton - English. Quantified and Qualified laws of motion and
gravity. Invented the reflecting telescope. Explained the concept of light
dispersion and co-invented the Calculus.
2. Albert Einstein - German/Swiss/American - Developed Theories of Special
and General Relativity. Described Brownian Motion. Nobel Prize winner for
his work on the photoelectric effect. Showed mass-energy equivalence.
3. Galileo Galilei - Italian - Discovered the law of Uniformly accelerated
motion. Improved on... 阅读全帖 |
|
a*****c 发帖数: 3525 | 30 只有记忆才能带来真正的原谅,而遗忘就可能冒重复历史的危险。
One can only forgive by remembering. And to forget, is to risk repeating
history.
学英文是为了更好地了解历史。文章很长,有兴趣学英语同时了解历史的同学,希望耐
心地看完(也可以拷贝下来仔细研读)。不仅仅是学英语,更重要的是学如何写作,如
何摆事实,讲道理,反驳质疑。可以学的东西(中英文)原子弹下无冤魂:B29飞行员查
尔斯•斯韦尼将军1995国会演讲很多,就看你是否能够用心去领悟。这是一篇难
得的informative/historical/linguastic article. Enjoy and welcome to comment.
(中英文)原子弹下无冤魂:B29飞行员查尔斯•斯韦尼将军1995国会演讲
英文版来源:
http://www.archive.org/stream/smithsonianinsti00unit/smithsonia
Fulltext of Charles W. Sweeney's Hea... 阅读全帖 |
|
h******t 发帖数: 872 | 31 FDTD analysis/design, Maxwell 's equation.
based on this shap, you can use inverse FDTD design the shape of airplane(
DOE,diffractive optical element). a fast approach would be .... .only I know
! |
|
w****2 发帖数: 12072 | 32 摘要: 德威克曾用10年时间对400名五年级小学生进行实验,发现被夸聪明的孩子更容
易放弃、缺乏自信、不敢冒险。后来,她在重复实验时, ...
(Po Bronson/文)心理学家卡罗•德威克(Carol Dweck)发现,相信“天生
智力决定成功”的人会低估努力的重要性。这些人的逻辑是:我很聪明,我不需要努力
实践。如果让别人知道了自己是靠努力才获得的成功,那简直就是对天赋的侮辱。
德威克曾用10年时间对400名五年级小学生进行实验,发现被夸聪明的孩子更容易
放弃、缺乏自信、不敢冒险。后来,她在重复实验时,将每个社会经济阶层都纳入了自
己的实验,都发现了同样的结果,不论男女。尤其对最聪明的女孩影响更大(她们在大
部分失败的测试中都崩溃了)。连学龄前的孩子也未能幸免于被表扬聪明后带来的负面
效应。
研究归研究,实践归实践
吉尔•亚伯拉罕(Jill Abraham)是纽约斯卡斯代尔镇三个孩子的母亲,她
的观点很典型。我告诉了她德威克关于表扬的实验,她断然表示对于没有长期跟踪的研
究结果不感兴趣。亚伯拉罕相信表扬自己孩子聪明很重要。她... 阅读全帖 |
|
d*********o 发帖数: 6388 | 33 http://www.bbc.co.uk/zhongwen/simp/science/2013/02/130222_uk_co
最新研究发现,多喝含咖啡因多的饮料,将减少死于像心脏病、中风、糖尿病等疾病的
风险。
一直以来,人们都以为太多的咖啡因不利健康,但是对近50万名老人做的一项研究发现
,喝咖啡次数多的人,如一天喝咖啡达到或超过六杯的人,死亡几率会减少10%到15%。
英国全国癌症研究所(National Cancer Institute)的弗里德曼医生说,“我们发现
喝咖啡与死亡风险之间存在着一种反向结合或逆关联(an inverse association)。”
他说,“对于男人和女人来说,这种逆关联是相似的,喝得越多,风险就越少。不过,
对于一天喝三杯咖啡的人来说,他们也能达到类似的效果。
科学家想要展开更多的研究,以确认咖啡中所含的看似保护生命的化学元素。
这项以美国为基地的研究持续了12年,参与研究的老人年龄从50到71岁不等。研究显示
,多喝咖啡可以带来更加长寿,更加健康的生活。
但是,科学家也提醒人们注意,多喝咖啡的人更容易染上诸如吸烟、贪酒和吃红肉等不
良健康习惯... 阅读全帖 |
|
R****a 发帖数: 6858 | 34 大棋局与9/11
来源: ognc 于 2013-02-22 16:08:44[档案] [博客] [旧帖] [转至博客] [给我悄悄
话] 本文已被阅读:63次
字体:调大/调小/重置 | 加入书签| 打印| 所有跟帖 | 加跟贴| 查看当前最热讨论主题
The Moral Decoding of 9-11
By Prof. John McMurtry
(Journal of 9/11 Studies) - I was sceptical of the 9-11 event from the first
time I saw it on television. It was on every major network within minutes.
All the guilty parties were declared before any evidence was shown. The
first questions of any criminal investigation were erased. Who had the most
compelling motives for... 阅读全帖 |
|
P*****t 发帖数: 4978 | 35 Inverse reinforcement leaning, not neural network. |
|
m*********y 发帖数: 389 | 36 wiki上的词条解释给出了几种可能性:
http://en.wikipedia.org/wiki/Bystander_effect
The bystander effect is a social psychological phenomenon that refers to
cases in which individuals do not offer help to a victim. The probability of
help is inversely related to the number of bystanders. In other words, the
greater the number of bystanders, the less likely it is that any one of them
will help. Several variables help to explain why the bystander effect
occurs. These variables include: ambiguity, cohesiveness and d... 阅读全帖 |
|
n*****n 发帖数: 5277 | 37 其实还是要做profiling,分析每个任务的最长执行时间(wcet),然后就可以用real
time scheduler调度,多用rate monotonic 算法,因为比较简单,EDF的实现就比较复
杂了,用的不多。 由此你看到了由于要做profiling,这种real time算法多半在通用
OS上不好使。
real time os还有一块是real time synchronization,就是说用来做同步的api要支持防
止死锁和priority inversion的功能。
哥在这方面折腾过一阵,弄得灰头土脸,这方面research和工业界脱节比较厉害,因为
工业界多是军方项目。学术界关税现象严重。 |
|
s***d 发帖数: 15421 | 38 还ti intel 前段时间面试intel 被裁的 连mismatch inverse proportiobal to sqare
root of WL都不知道。 感情intel的foundry 和tsmc 不一样。
★ 发自iPhone App: ChineseWeb 7.8 |
|
s***d 发帖数: 15421 | 39 还ti intel 前段时间面试intel 被裁的 连mismatch inverse proportiobal to sqare
root of WL都不知道。 感情intel的foundry 和tsmc 不一样。
★ 发自iPhone App: ChineseWeb 7.8 |
|
e***i 发帖数: 58 | 40 Bandwidth is proportional to inverse of frequency
4G faster than 3G
Visible light is THz vs Wireless <100 GHz/satellite
Optical fiber infrared light, that's your bone of high speed network
But range /medium is the limitation for optical com |
|
c***u 发帖数: 4107 | 41 感觉这个故事, 也没啥稀奇的
这种江姐儿子跑美国故事的inverse版本, 共产党也有, 一把把的.
被共产党打死的张灵甫遗孀和独子, 放弃了美国和台湾的优厚待遇, 依然回到上海支援
国家建设
当年89年在香港留圆举办的大型歌唱会"民主歌声献中华", 那些台面上的明星, 有一个
算一个, 只要是没死的, 现在都在共产党的政协里面, 都在吃共产党装共产党的 |
|
o*****k 发帖数: 169 | 42 四舍五入 round half up
直角边平方和等于斜边平方 square of hypotenus equals sum of squares of
adjacent and opposite
学然后知不足 learning uncovers ignorance
甲乙之并集取反 inverse of A union B
文责自负, 有 respondeat superior, (雇主责任) 可以说 "respondeat author"
(作者责任) 信+达+雅. 只是一般不这么说。
英语简练的也有啊:
port side: 前进方向左侧
GSM: 全球移动通信系统
finders keepers :谁找到的归谁
qed : 证明完毕 |
|
o*****k 发帖数: 169 | 43 四舍五入 round half up
直角边平方和等于斜边平方 square of hypotenus equals sum of squares of
adjacent and opposite
学然后知不足 learning uncovers ignorance
甲乙之并集取反 inverse of A union B
文责自负, 有 respondeat superior, (雇主责任) 可以说 "respondeat author"
(作者责任) 信+达+雅. 只是一般不这么说。
英语简练的也有啊:
port side: 前进方向左侧
GSM: 全球移动通信系统
finders keepers :谁找到的归谁
qed : 证明完毕 |
|
b********n 发帖数: 38600 | 44 I don’t buy into Philip Rushton’s racist bullshit about the inverse
relationship between brain power and penis size. How, exactly, did he carry
out his oh-so-scientific research? It must be annoying to hear people who
don’t know you (and have most certainly never looked in your pants, and
quite possibly never into the pants of any Asian man) comment on the size of
your penis. “I heard Asian men have small dicks.” Yeah? Well I’ve heard
that Asian men have big dicks. What’s it to you?
Anti-miscege... 阅读全帖 |
|
Y****N 发帖数: 8694 | 45 【 以下文字转载自 Faculty 讨论区 】
发信人: Highly (高妹), 信区: Faculty
标 题: 我为尹希教授做的专访
发信站: BBS 未名空间站 (Wed Sep 23 14:31:24 2015, 美东)
Interview with Dr. Xi Yin
--- By Fiona Rawsontile, Sept 2015
This interview was inspired by an earlier interview of Dr. Yin I saw on the
Internet, which made me think that we can’t expect someone who normally
writes for entertainment to understand a physicist. To “provoke” a
scientist, we need another scientist. So I volunt... 阅读全帖 |
|
|
m**c 发帖数: 7349 | 47 Marx clearly recognized that machinery, technological innovation directly
enhanced the productivity of labour. Thus: 'the greater the productivity of
labour, the less labour time is involved in the production of the commodity,
and the lesser will be its value, or the lower will be the price of the
commodity.' Or: 'The value of a commodity ... varies directly as the
quantity [of labour] and inversely as the productiveness of the labour
incorporated in it.' |
|
x********e 发帖数: 35261 | 48 你是问基因在哪个strand上的概率问题? 从进化上看染色体的translocation和
inversion那么多,不会都朝一个方向的。一段DNA两条strand上都有基因都可转录的情
况也存在。 |
|
b***y 发帖数: 14281 | 49 其实房贷就是存钱。来了就inverse mortgage提出。
★ 发自iPhone App: ChineseWeb 11 |
|
s********i 发帖数: 17328 | 50 这东西我是专家。时髦的词儿叫inversion。就是为了避税。无论多少个子公司最终要
跨国企业去报税。 |
|