由买买提看人间百态

topics

全部话题 - 话题: topology
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c****t
发帖数: 19049
1
来自主题: JobHunting版 - deep learning到底是个什么
就是neural network又一次挣扎。neural network蛋生后在实用中因为不同原因被彻底
灭了3次了。因为没有体系,没有理论去决定到底怎么个topology是最好的。做model本
来就优化,再加上topology也要优化,这问题无解。学术大牛可以靠这发paper,拉
funding,找上米的工作。实用中你老板没强迫或面试不用的话,没用
f*******r
发帖数: 1086
2
来自主题: JobHunting版 - Google电面面经并求Bless
第二题应该就是topological sorting
首先将所有不同的字母找出来,作为directed graph的node,
然后给出的字符串代表了graph中的directed edge,比如fcp,说明有f-->c, c-->p两个
edges。这样就建立了一个directed graph
然后就可以做标准的topological sorting,得到的结果就是字母的顺序。
f*******r
发帖数: 1086
3
来自主题: JobHunting版 - G家onsite后求祝福
最近G家onsite了,希望可以得到大家的祝福,非常感谢!
因为签了NDA,不方便透露题目,但是对于去G家面试的同学给一个建议:
就是多准备复习一下图论相关的知识,DFS,BFS和topological sorting
这三个知识点在面试中出现的几率非常高,尽量争取做到可以白板coding出正确
的代码!关于最大流这种东西我觉得面试写code几乎不可能,只要知道基本意思
即可。
还有就是G家的题目感觉基本不太会遇到LEETCODE上面的原题,更多的情况是像
一个应用题,在一个基本算法的题目外边包了一层应用场景的外壳,所以一开始的
时候不要被外部的壳吓到,稳住仔细分析一下就会发现可以转化为一个基本的算法
问题,比如DFS或者topological sorting。
找工作的过程有太多东西无法控制,祝福大家也祝福自己都好运!
f*******r
发帖数: 1086
4
来自主题: JobHunting版 - onsite一题求解
这个应该就是有了graph结构之后做topological sorting吧,
但凡解决事件或者节点的先后顺序的时候,都可能和topological sorting相关。
r***s
发帖数: 737
5
来自主题: JobHunting版 - 面试不问算法,才能体现水平
我来试试

从你的描述来看系统是用 c++写的。要找出问题在哪里得看你在什么系统上有什么
profiling
的工具了。profiling的目的是找出 allocation site (src file/line number)of
the memory objects that take most memory. 然后我就没招了,只能读code看那个
allocated objects啥时候就不用了,再决定哪里做deallocate。
再有,啥叫大规模修改?如果不让改的话这种恶心问题我只能做reducency backup and
rolling restart.
首先得判定是否真的是网络造成的,就算是网络问题,哪些机器之间的网络问题? 这
个得先大概了解high level component dependency relationship,看看是不是cpu
memory disk都没有问题。 可以profile几个机器看看是不是 a lot of time spent
waiting for network calls.
判定是网络问题之后看是哪些components之间,或是某... 阅读全帖
z****e
发帖数: 54598
6
来自主题: JobHunting版 - 请问什么叫data modeling
关于data modelling我能想到稍微有点难度的应该算是topology
图论,算一维拓扑,这个算几何,牛逼了,进入主流了
当你需要integrate database的时候
你可以根据metadata建一个topology,然后用dp优化你的图
牛逼了,刷leetcode的东西总算也用上了
r******t
发帖数: 250
7
你自己说的问题不准确还敢继续秀?你以为 topological order 是什么?
你知道那个词是哪里来的吗?以你的实力你会的那叫有向图的 topological sort 明白?
j********g
发帖数: 5
8
来自主题: JobHunting版 - google onsite的套盒子题目

Create a graph: node is (length, width), there is an directed edge between
v1, v2 if v1 can be fit in v2. Topological sort the graph, and obtain a
topological sort array. From the array, find out the results.
d******4
发帖数: 132
9
来自主题: JobHunting版 - amazon onsite面经,已跪
position: machine learning scientist
backgournd: statistics phd.
leetcode 刷了3遍.
7个面试官,三个问统计和 machine learning,三个考编程.
1.hiring manager, 问了关于A/B testing 的问题,细节答的不好,我缺乏这方面实际
经验.
2. 阿三统计博士,上来就问我causal inference 的几个assumption,五年前上过这课
,后来从来没有用过,全部忘记了。其他都是一些常规的统计和machine learning问题。
3.白人计算机博士陪我吃中饭,聊了一些machine learning常规问题.
4.阿三计算机硕士,考了我一道graph sorting (Topological sorting )的题目,就是
关于tasks scheduling的 http://stackoverflow.com/questions/18314250/optimized-algorithm-to-schedule-tasks-with-dependency.
For... 阅读全帖
j********s
发帖数: 577
10
来自主题: JobHunting版 - amazon onsite面经,已跪
topological sort不会,说明你基本功不行啊。leetcode刷题的目的是拔高一下,基本
的cs fundamentals还要靠你自己积累。这次可以折在topological sort,下次没准就
会折在sweep line。
// 忠言逆耳, good luck!

题。
c*****u
发帖数: 867
11
来自主题: JobHunting版 - 这题怎么解好?
看起来可以用topology sort来做。把格子看作点,如果一个格子里引用了另一个格子
,那么这两点间就有个有向边。建好图后做topology sort,如果没有环路就说明表格
有解。
不知有没有更巧妙的解法
a*******g
发帖数: 1221
12
来自主题: JobHunting版 - 这题怎么解好?
这个我觉得用topology sort有点大才小用了,就直接递归算就好了,在算的时候注意
一下如果有loop就跳出来吧。然后算完了及时把结果保存下来。用topology sort的话
这题我感觉写不完,并且不一定复杂度上还更优。主要的难度我觉得在于解析“B3-5+
C2”这样复杂的式子。
a*******g
发帖数: 1221
13
来自主题: JobHunting版 - 这题怎么解好?
为啥都要用topology sort呢?用topology sort解这题就跟用quick sort解一个数组的
最大值似的。这不是sort的问题,因为这里面没有排序,最后的要求是你要么输出“无
解”,要么输出一个最终解,没有排序。我说没有排序的原因是这里面你先算哪个格后
算哪个格没有关系的。直接递归O(MN)就出来了。如果用topo sort的话我想不出来能O(
MN)内能解决的,并且topo sort还得建一个dependency之类的东西,更麻烦。
def __init__(self):
# 这里面存着类似于{'A2':10, 'E3': 20}这种已经算好的值
self.cell2val = {}
self.computing = set()
self.icandoit = true
def compute(self, cell):
if not self.icandoit:
return None
if cell in self.cell2val:
return self.cell2val[cel... 阅读全帖
w*******r
发帖数: 14
14
来自主题: JobHunting版 - 内推 VMware NSX multi-cloud test/QE
Hi,
目前这个位置大概有4个openings,level大概从new grad 到senior (3-5年经验)。
职位的主要要求是QE mindset和testing 经验或者兴趣,然后要懂基本的编程,如果有
网络/cloud知识就最好。如果感兴趣,请把简历发到我的邮a class="__cf_email__" href="/cdn-cgi/l/email-protection" data-cfemail="9276313ee5fdfdf6fff3e0f6e0d2ebf3fafdfdbcf1fdff">[email protected]/* */
https://careers.vmware.com/job/palo-alto/qe-nsx-multicloud/1567/4004994
Job ID 81325BR
Date posted 02/15/2017
NSX Everywhere R&D – QE Automation framework developer
VMware NSX is a network virtualization platform th... 阅读全帖
e*********t
发帖数: 16
15
来自主题: JobMarket版 - Job openings: Power Electronics Engineer
Location: Phoenix, AZ
Skills: Design Engineer, Mosfet, Powered, Power Supplies
The role of a Staff Engineer is that of a highly competent and experienced
product design engineer. As such, the right candidate will be a key member
in the new Engineering organization in North America for Renewable Energy.
• Direct responsibility for the development of new state of the art
products in areas related to power electronics in the field of renewable
energy as a team member in one of the Desig... 阅读全帖
w********1
发帖数: 9
16
来自主题: JobMarket版 - Sr. Application Engineer Opening
hi
本公司有数个Sr. Application Engineer openning.
Specific responsibilities are
Research and define switching mode power supply topologies based on the
specialties of the company's products.
Work with IC designers on new product development and research new
applications for new generations of company IC products.
Design and develop switching power supply units (psu) using the company's
products for design ideas, data books or customer requirements such as
providing power supply unit (psu) prototype, b... 阅读全帖
t*******r
发帖数: 22634
17
来自主题: Parenting版 - BSO 儿子奥数班入门考试第一哦
其实讨论交流点东东还是有好处的。。。比如俺最近在思考,除了做练习
drill 之外,如何针对 spatial thinking kids,扬长避短提高将来
初中高中数学正确率的问题。。。我现在的想法是,我长话短说用个比方:
好比拧汽车轮子的螺母,手册要求按对角顺序。为了防止漏拧,一般大伙儿
采取两步。第一步,solution step,按对角顺序拧一遍,把所有螺母拧紧。
第二步,proof step,按圆周顺序拧一遍,同时数螺母数,并且所有螺母
都不应该被拧动。这里最重要的一点,是 proof step 的 spatial
path,和 solution step 的 spatial path,要求在 topological
space 里尽可能远离。
实际解数学题时,solution step 的 spatial path 解前很难预知的,
所以关键就在于 solution step 一旦产生,立即发现其对应的在
topological space 里尽可能远的,但是又 computationally
cheap enough 的 proof step 的 spatial path。... 阅读全帖
t*******r
发帖数: 22634
18
来自主题: Parenting版 - 陶哲轩又中大奖了 (转载)
【 以下文字转载自 Mathematics 讨论区 】
发信人: inflation (zigzag), 信区: Mathematics
标 题: 陶哲轩又中大奖了
发信站: BBS 未名空间站 (Tue Jun 24 01:16:49 2014, 美东)
首届数学突破奖,5人,每人300万美元
https://breakthroughprize.org/?controller=Page&action=news&news_id=18
Simon Donaldson, Stony Brook University and Imperial College London, for the
new revolutionary invariants of 4-dimensional manifolds and for the study
of the relation between stability in algebraic geometry and in global
differential geometry, both for bundles and for Fano variet... 阅读全帖
t******l
发帖数: 10908
19
欧几里德的大弟子同学您好。
但对于标准 n-polytope combinatroics 一招鲜搞法,如果只漆五角形面的话,
把一个五角形面放底部,另一个五角形面的顶部,当中两层五角形面构成两个环,
每个环是五个五角形面构成。
然后在如法炮制切矢状面的环,因为这个环是拓扑环,所以矢状面环不需要在一个真
正平面上,歪歪扭扭过去,看保证把足球切成对称的两半就行。
另一种办法是 topological modelling 干脆把当中两环的五角形面对准,只
要保证该 topological modelling 跟实际足球的 geometry 是一一对应的,
以及不改变旋转对称属性,就成。这样就可以直接让矢状面环在肉眼的平面上,
画图方便点。
这样一直到(用完某种颜色时)发生旋转固定,或者只能做极其有限的旋转(比如
沿某轴180 度啥的),然后剩下的面编号上排列组合公式。(当然还有可能可以
取巧不等某种颜色全用完)。
t******l
发帖数: 10908
20
欧几里德的大弟子同学您好。
但对于标准 n-polytope combinatroics 一招鲜搞法,如果只漆五角形面的话,
把一个五角形面放底部,另一个五角形面的顶部,当中两层五角形面构成两个环,
每个环是五个五角形面构成。
然后在如法炮制切矢状面的环,因为这个环是拓扑环,所以矢状面环不需要在一个真
正平面上,歪歪扭扭过去,看保证把足球切成对称的两半就行。
另一种办法是 topological modelling 干脆把当中两环的五角形面对准,只
要保证该 topological modelling 跟实际足球的 geometry 是一一对应的,
以及不改变旋转对称属性,就成。这样就可以直接让矢状面环在肉眼的平面上,
画图方便点。
这样一直到(用完某种颜色时)发生旋转固定,或者只能做极其有限的旋转(比如
沿某轴180 度啥的),然后剩下的面编号上排列组合公式。(当然还有可能可以
取巧不等某种颜色全用完)。
t******l
发帖数: 10908
21
我觉得还有一个,可能医学都没有大脑定位的,prototype-thinking 和 exemplar-
thinking 之间的桥梁。
http://en.wikipedia.org/wiki/Prototype_theory
http://en.wikipedia.org/wiki/Exemplar_theory
对于通解题而言,最终结果是需要 prototype-thinking 的,而且因为这通解题并不是
要证明组合公式和 LCM 公式、整数除法公式,所以有争议的说,在 phonological
thinking 方面,都是 prototype-thinking。
但是在灯泡上画点连多边形的 spatial-temporal-topological 的 mental picture 上
,不可能用 prototype-thinking,所以有争议的说,spatial-temporal-topological
thinking 是 exemplar-thinking。
但是 prototype-thinking 和 exemplar-thinking 之间,不是可以简单 tar-i... 阅读全帖
O****s
发帖数: 463
22
做过不少的拓扑学分析,譬如Lie algebra cohomology, BRST cohomology,计算超对
称规范场论和超引力中的topological integral invariants等等
目前考虑相关的凝聚态方向有两个:
1). topological insulator and superconductor
2). AdS/CMT 研究强关联体系
因为这两个方向老板没有connection,所以自己在找,但在physics today上很少见有
这方面的position...
大家都是怎么找的呢?从长远看 我这样转是否合适?是否还有其他好的选择方向?
[从物理版转了下]
e*********t
发帖数: 16
23
来自主题: Arizona版 - Job openings: Power Electronics Engineer
Location: Phoenix, AZ
Skills: Design Engineer, Mosfet, Powered, Power Supplies
The role of a Staff Engineer is that of a highly competent and experienced
product design engineer. As such, the right candidate will be a key member
in the new Engineering organization in North America for Renewable Energy.
• Direct responsibility for the development of new state of the art
products in areas related to power electronics in the field of renewable
energy as a team member in one of the Desig... 阅读全帖
S*******i
发帖数: 1529
24
☆─────────────────────────────────────☆
topology (猴宝宝) 于 (Tue Jan 27 19:38:01 2009) 提到:
放在天线后面调整好角度就可以收到indy的HD频道了。。。
☆─────────────────────────────────────☆
slan (人生充满意外|不靠谱男·飘来飘去) 于 (Tue Jan 27 19:42:44 2009) 提到:
有没有成人频道?

☆─────────────────────────────────────☆
topology (猴宝宝) 于 (Tue Jan 27 19:47:41 2009) 提到:
不好意思。。只有abc nbc cbs fox pbs。。
☆─────────────────────────────────────☆
moonsspring (Aro) 于 (Tue Jan 27 19:45:05 2009) 提到:
哈哈,谁还记得易拉罐串成排做天线的时代??
☆───────────────────────
e*********t
发帖数: 16
25
来自主题: Ohio版 - Job opening: Lead Power Engineer
Location: Delaware, OH
Skills: Power Electronincs, SMPS, Inverters, Uninterruptable Power Supply
ESSENTIAL FUNCTIONS:
• Assume responsibility for technical assignments that will satisfy
management requirements for completion date, cost and quality, and the
customer’s requirement for delivery, performance, reliability and cost.
• Develop test procedures and generates Design Verification Test (DVT)
reports for new products or variations of products.
• Responsible for original pr... 阅读全帖
h****n
发帖数: 298
26
Tester will work on Blackberry Enterpriser Server (BES) testing, including
Functional Testing, Writing and executing End-End Test cases, manage Test
Topologies, troubleshoot/fix Topology and network issues.
3+ years experience as Tester with experience in test automation.
Experience with Scripting, ActiveDirectory/Exchange and PowerShell.
Experience in diagnosing and fixing issues with Networks, DNS, load
balancers etc. Experience with Blackberry a plus.
有意向的发邮件到n**[email protected]
x*****8
发帖数: 10683
27
来自主题: WashingtonDC版 - 我刚失去一个学生 (转载)
【 以下文字转载自 Military 讨论区 】
发信人: xiaxie8 (我爱美女), 信区: Military
标 题: 我刚失去一个学生
发信站: BBS 未名空间站 (Sat Jul 26 17:10:27 2014, 美东)
我先是学生化,后来学计算机,自以为数学很不错。
上个星期六,一个初中学生暑假学习网上几何课程。要考的那章叫做Topology,几何课
本上没有,他老师提供了单独的讲义。
我学习分子生物学的时候学过几个星期的DNA/RNA topology,所以我就直接给他教课并
解答其12道练习题。
结果我100%错!他随后取消了在我们教育中心的所有课程。
大家知道为什么?
在核酸拓扑学中,每次我们都要把核酸链转360度再对接。而几何拓扑学中,对于
Mobius strip,任何180度的整数倍都可以。
我没有注意到转一圈和转半圈的区别,再加上年纪大了,脑筋转不过弯来,所以答案全
部搞错!
教训:停止研究美女,改而研究数学各个分支,争取在1-2年内达到北京大学数学系本
科毕业生水平。
k**0
发帖数: 19737
28
来自主题: TVGame版 - 正在犹豫要不要买张NVIDA 5XX卡
PCIe 2.0 delivers 5 GT/s, but employs an 8b/10b encoding scheme which
results in a 20 percent overhead on the raw bit rate. PCIe 3.0 removes the
requirement for 8b/10b encoding and instead uses a technique called "
scrambling" in which "a known binary polynomial is applied to a data stream
in a feedback topology. Because the scrambling polynomial is known, the data
can be recovered by running it through a feedback topology using the
inverse polynomial"[17] and also uses a 128b/130b encoding sche... 阅读全帖
e**********n
发帖数: 359
29
来自主题: WaterWorld版 - 关于学习英语的想法
Two languages describing the same matter are like two differential
structures on the same manifold, or even more abstractly, two topological
structures (open sets) on the same topological space. One can work within
each set of structure without knowing how to translate from one language to
another. To translate, one needs the transition functions, i.e. a dictionary
, which is usually not well defined and often ambiguous in natural languages
.
t******n
发帖数: 2939
30
来自主题: WaterWorld版 - [合集] 关于学习英语的想法
☆─────────────────────────────────────☆
ppzhang07 (ppzhang) 于 (Thu Apr 5 17:16:14 2012, 美东) 提到:
这篇文章主要源于与面包的对话,最近在看的书,还有一些其他的谈话。
前两天面包让我帮他写一段话,表达一件事。我写完之后他截取了其中一句话,问那句
话翻译成中文怎么说,为什么像绕口令一样。当时我给他翻译了一下,然后说之所以像
绕口令是因为中英文结构不同,同样的事让我用中文说是另一种样子,虽然两者要表达
的意思是一样的。我还说学习语言相当于学习一种文化思想,不是简单的用一种文字替
代另一种文字,如果你把什么话都从英文翻到中文来记,八成英文学不好中文也要走样
。面包说怎么听起来这么复杂。
然后我问他是否记得小时候怎么学的中文,肯定不是通过另一种文字关联起来的吧。我
想估计没人记得自己是怎么学会母语的,如果谁想说“大环境”,“耳濡目染”,八成
也是看别人说的。我很喜欢Vygotsky的理论,所以这里引用他的说法。首先学习的方法
不同,学母语是感官和语言通力合作形成各种概念。你指着一个东西问这是什... 阅读全帖
l***e
发帖数: 136
31
汉字的简化,其实和韩国的拼音文字什么的,有什么区别啊?
都是篡改历史的行为
有人说,蒋介石时代已经有简化方案了,甚至简体字都是古代就有的
尼玛,国民党还差点跟苏联混了呢。有简体方案,最终意识到这是一种去中国化的行为
,当然要喊cut了。
少部分简体字,确实在古代就有,但在当时就是俗字,难登大雅之堂。其他的简体字,
都是瞎整出来的,完全割断历史。
还有人说,咋不恢复甲骨文啊?首先来说,甲骨文也是繁体字,不是简体字。甲骨文、
篆书、隶书、草书、行书、楷书……都是各个不同时期的笔画形式而已。就字的
topology而言,完全没有变化。
但简体字,是彻彻底底的改变了汉字的topology,和改用拼音文字,只是半步之遥。
所以,但凡支持简体字的人,耻笑越南、韩国去中国化,你们本身就是在去中国化。
p*e
发帖数: 6785
32
来自主题: Joke版 - 我刚失去一个学生
【 以下文字转载自 Military 讨论区 】
发信人: xiaxie8 (我爱美女), 信区: Military
标 题: 我刚失去一个学生
发信站: BBS 未名空间站 (Sat Jul 26 17:10:27 2014, 美东)
我先是学生化,后来学计算机,自以为数学很不错。
上个星期六,一个初中学生暑假学习网上几何课程。要考的那章叫做Topology,几何课
本上没有,他老师提供了单独的讲义。
我学习分子生物学的时候学过几个星期的DNA/RNA topology,所以我就直接给他教课并
解答其12道练习题。
结果我100%错!他随后取消了在我们教育中心的所有课程。
大家知道为什么?
在核酸拓扑学中,每次我们都要把核酸链转360度再对接。而几何拓扑学中,对于
Mobius strip,任何180度的整数倍都可以。
我没有注意到转一圈和转半圈的区别,再加上年纪大了,脑筋转不过弯来,所以答案全
部搞错!
教训:停止研究美女,改而研究数学各个分支,争取在1-2年内达到北京大学数学系本
科毕业生水平。
p*********g
发帖数: 9527
33
来自主题: Joke版 - 我刚失去一个学生 (转载)
【 以下文字转载自 Military 讨论区 】
发信人: xiaxie8 (我爱美女), 信区: Military
标 题: 我刚失去一个学生
发信站: BBS 未名空间站 (Sat Jul 26 17:10:27 2014, 美东)
我先是学生化,后来学计算机,自以为数学很不错。
上个星期六,一个初中学生暑假学习网上几何课程。要考的那章叫做Topology,几何课
本上没有,他老师提供了单独的讲义。
我学习分子生物学的时候学过几个星期的DNA/RNA topology,所以我就直接给他教课并
解答其12道练习题。
结果我100%错!他随后取消了在我们教育中心的所有课程。
大家知道为什么?
在核酸拓扑学中,每次我们都要把核酸链转360度再对接。而几何拓扑学中,对于
Mobius strip,任何180度的整数倍都可以。
我没有注意到转一圈和转半圈的区别,再加上年纪大了,脑筋转不过弯来,所以答案全
部搞错!
教训:停止研究美女,改而研究数学各个分支,争取在1-2年内达到北京大学数学系本
科毕业生水平。
z*********e
发帖数: 10149
34
不懂,但是感觉很牛
http://tech.sina.com.cn/d/i/2017-07-21/doc-ifyihrit1116695.shtml
撰文 | 吕浩然
7月21日,学术期刊《科学》(Science)在线发表了由美国加利福尼亚大学洛杉矶
分校(UCLA)王康隆课题组主导,斯坦福大学张守晟课题组及上海科技大学寇煦丰课题
组等8家单位合作完成的一项研究成果——研究团队首次在磁性拓扑绝缘体薄膜与超导
体结合的异质结构中发现了一维手性马约拉纳费米子存在的证据[1]。此次工作也是继
去年6月上海交通大学贾金锋课题组发现基态马约拉纳费米子存在的证据之后,该领域
又一重大发现,这让我们距离彻底揭开马约拉纳费米子的神秘面纱又近了一步。
粒子世界有两大家族:费米子家族和玻色子家族,它们分别以物理学家恩利克·费
米(Enrico Fermi,1901—1954)和萨特延德拉·纳特·玻色(Satyendra Nath Bose
,1894—1974)的名字命名。人类已知的所有基本物质粒子都是费米子,是构成物质的
原材料(电子、夸克、中微子),而传递作用力的粒子(光子、介子、胶子、W和Z玻色
子... 阅读全帖
b******l
发帖数: 1632
35
来自主题: Thoughts版 - 买买提小圈子研究?
然后把时间尺度和空间尺度分别加进来。空间尺度定义为版面,时间尺度定义为这个
network topology 的 dynamic change。后者可以做成动画。
以 network topology 为基础,可以进一步分析各版的内在联系,比如说哪些是属于某
个小圈子的(比如说 thoughts 版是 mean 人集中营,过去的棒子连也是),哪些版是
两个小圈子互相交流或碰撞的(8 区的老将小将,比如说 -- 靠,其实老将和小将可能
属于同一个小圈子)。这样,目光就可以透过一个个版面的表面阻隔,看清下面流动的
小圈子间的动态关系。
c*********t
发帖数: 2921
36
是不是NS2很适合packet level的仿真?比如可以创建topology, 然后看traffic (如
TCP, or UDP)的packet 的loss, delay。这种是很微观的simulation.
如果想做很宏观的simulation比如在flow level, 比如只关心link capacity 的usage,
available bandwidth, 多少个不同的connections, 网络上traffic的动态的情形(一
些new flow come, 一些old flow finish),或者是动态的topology(some links are
up, and some links are down), 能用Ns2 来做这方面的simulation吗?
好像很多人自己写discrete event driven simulation来仿真。
谁有好的建议。谢谢!
S***k
发帖数: 370
37
Someone of my company scheduled a full backup each hour and diff backup
every 5 minutes using a sql 2005 third party VDI backup software, and
claimed it’s a recommended backup topology.
The backup files are on the same physical disk with the database data files
and grow 17 GB each day.
Any idea who may recommend such topology?
r*****e
发帖数: 52
38
big deal. all just terminalogy differences. bottom line is: both
routing and bridging are just multi-hop forwarding.
stp and any routing protocol all build some forwrading topologies.
stp builds a tree, routing protocol builds a mesh. then individual
route is the shortest path (or whatever path) within corresponding
topology. one real difference is that routing supports route (or
path) aggregation while all routes (or paths) in stp are per-host.
there are people selling layer 3 switches (o
T********i
发帖数: 2416
39
来自主题: Programming版 - 顺便和nod101说说做产品
I wouldn't expect any trust from anybody at all.
I just want to make sure you are capable of making reasonable assumption
beyond reasonable doubt.
For example, I claim my 抢票核心 kernel is composed of a chain of monolithic
servers. Only the head of capable of making decision. Once the head granted
one ticket that single transaction is started by passing a message (as
trans log in the mean time) long the chain. Once the message reaches the
last node of the chain an ACK message will be generated and ... 阅读全帖
l******6
发帖数: 340
40
来自主题: Programming版 - 做题了做题了,集合分组问题
1. 把 == 关系都元素合并到一个node。否则不能确定无环, 把相等元素归并到一个集
合也满足要求
2 以 < 和 <= 的关系建立有向图(想不到 a <= b <= c <= a 成环的例子 , 如果能
成环只能取等, 会归到1里面吧)
3. topological sort
4. 按topological 的顺序做dfs, 访问的点归为一个子集并从图中删除或者标为不可
再访问。
c********l
发帖数: 8138
41
来自主题: Programming版 - AWS Kinesis Client Library for Python
Announcing Amazon Kinesis Client Library for Python
Dear Amazon Web Services Customer,
This week we announced the release of two new enhancements to Amazon Kinesis
. The first is the release of the Amazon Kinesis Client Library (KCL) for
Python developers. The KCL handles complex issues such as adapting to
changes in stream volume, load-balancing streaming data, coordinating
distributed services, and processing data with fault-tolerance. Python
developers can use the library to easily stream dat... 阅读全帖
t**r
发帖数: 3428
42
来自主题: Programming版 - hn首页文章,is heron killing storm?
Twitter don’t use Storm anymore.
At Twitter, Storm has been decommissioned and Heron is now the de-facto
streaming system. It has been in production for several months and runs
hundreds of development and production topologies in multiple data centers.
These topologies process several tens of terabytes of data, generating
billions of output tuples…. results from an empirical evaluation of Heron
demonstrate large reductions in CPU resources when using Heron, while
delivering 6-14X improvement... 阅读全帖
t**********m
发帖数: 205
43
来自主题: Astronomy版 - 拓扑与理论物理 (图)
mmiittbbss网友 kennkqzhang 有一个关于数学和物理的问题:
“原来那个写了一本非常好的‘calculus’书的,是个做differential geometry的;
相信他的书都写得很好;
不过,原本以为场论里面都是代数,both classical linear space algebra and
modern abstract algebra;
没想到,又是geometry,跟广义相对论很相似?
需要 albegraic topology,differential topology?
数学太乱了;
物理世界真的有这么复杂码??

本人就是从纯数学转到理论物理的七七级大学生。你要问我为什么学理论物理,答案很
简单:数学没有诺贝尔奖。
本人根本就不是什么天才,但从小就有打破砂锅问到底的决心!
1. 微积分
你提到Spivak的‘calculus’,真是绝了!我在中国教了十一年书,痛恨微积分的教材
,这些教材把当年牛顿的思想忘得一干二净!所以我写了一本微积分的教材,企图复辟
牛顿的思想,但没有出版该教材(因为我要花时间争取获诺贝尔奖)。所幸的是,六年
之后,在华中科技
y**********n
发帖数: 478
44
有很大关系吧。证明进化是有方向的并不难,排除进化是随机的这个null Hypothesis
就可以了。看文章结论 (文章也指出有些因素比如horizontal gene transfer确实是随
机分布的):
Prokaryotic genomics revealed the wide spread of HGT in the prokaryotic
world and is often claimed to
‘‘uproot’’ the TOL (Doolittle, 1999). Indeed, it is now well established
that HGT spares virtually no genes
at some stages in their history (Gogarten and Townsend, 2005), and these
findings make obsolete a
‘‘strong’’ TOL concept under which all (or the substantial majority) of
the genes would... 阅读全帖
l**********1
发帖数: 5204
45
来自主题: Biology版 - 关于进化树有根无根的问题
plus
The General Time Reversible model (GTR) (Waddell and Steel 1997)
can be applied to unrooted trees from it allows base composition and
substitution rates to vary but the rate of change from A to B must equal the
rate of change from B to A.
from that 2012 PhD dissertation:
>HTTP double dot //eprints.nuim.ie/4517/1/SineadHamiltonPhDThesis2012.pdf
its pp 33
cited
>1.3.4 Choosing a Matrix Model
pp34
>often does not fit the data very well (Keane et al. 2004). The Jukes and
>Cantor model (JC69... 阅读全帖
l**********1
发帖数: 5204
46
That guy did topological Hopf link
Pls check,
http://en.wikipedia.org/wiki/Skein_relation
not your times calculation..
Btw,
it is relative to DNA topology/Computing
knot theory,
http://www2.imperial.ac.uk/~dbuck/Hiring.html
or
http://en.wikipedia.org/wiki/Tangle_(mathematics)
l**********1
发帖数: 5204
47
That guy did topological Hopf link
Pls check,
http://en.wikipedia.org/wiki/Skein_relation
not your times calculation..
Btw,
it is relative to DNA topology/Computing
knot theory,
http://www2.imperial.ac.uk/~dbuck/Hiring.html
or
http://en.wikipedia.org/wiki/Tangle_(mathematics)
s******9
发帖数: 283
48
NCBI protein database一般都有标注吧。
FEATURES Location/Qualifiers
source 1..503
/organism="Homo sapiens"
/db_xref="taxon:9606"
gene 1..503
/gene="TGFBR1"
/gene_synonym="ALK5"
/gene_synonym="SKR4"
Protein 1..503
/gene="TGFBR1"
/gene_synonym="ALK5"
/gene_synonym="SKR4"
... 阅读全帖
s***e
发帖数: 911
49
来自主题: Biology版 - 2015年影响因子新出炉
其实我觉得如果把focal adhesion定义放宽点就没有什么特别大的debate了。Focal
adhesion的形貌和intracelluar actin network的3D组织有关,而actin network的形
成又和ECM的力学和几何形貌有关。比如在表面上,fibrinectin coated surface的大
小,形状都影响actin network形貌和细胞形状。从二维到三维, 拓扑上的改变更为剧
烈。所以看不见通常在二维成像上定义的focal adhesion斑块也属正常。
可能更重要的问题应该是调控二维表面focal adhesion形成和稳定性的蛋白们是否也调
控三维cell-ECM相互作用和cell migration. 在三维, 过去已经知道会形成
pseudopodia. 这个结构调控细胞migration, 而这个结构的形成又被focal adhesion
proteins调控。如果宽泛地把通常的二维focal adhesion和三维pseudopodia看作同一
套调控cell-
ECM相互作用的蛋白在不同topology下的表现形式,那么就没有那... 阅读全帖
c*********t
发帖数: 2921
50
是不是NS2很适合packet level的仿真?比如可以创建topology, 然后看traffic (如
TCP, or UDP)的packet 的loss, delay。这种是很微观的simulation.
如果想做很宏观的simulation比如在flow level, 比如只关心link capacity 的usage,
available bandwidth, 多少个不同的connections, 网络上traffic的动态的情形(一
些new flow come, 一些old flow finish),或者是动态的topology(some links are
up, and some links are down), 能用Ns2 来做这方面的simulation吗?
好像很多人自己写discrete event driven simulation来仿真。
谁有好的建议。谢谢!
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)