由买买提看人间百态

topics

全部话题 - 话题: scale
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
a9
发帖数: 21638
1
goodbug说了,他们的影片推荐很牛。另外大数据分析也很牛。光说scale算什么。
另外前两天不有也有说netflix的转码分片很牛吗?
c******o
发帖数: 1277
2
他们不光scale用户直接用的数据的。
很多间接数据有关联性的。
n****a
发帖数: 174
3
你说全是read only就不对,比如你看到一个地方停掉,换台机器是可以继续看的,这
个就需要大量的写操作,这个scale不简单的
h******k
发帖数: 388
4
觉得Amazon,淘宝和中国铁路订票的scale最难做。因为有transaction而且volume起伏大
N********n
发帖数: 8363
5

不同用户的写操作之间如果无交集容易SCALE,基本上就是线性堆机器。一堆读
写都在同个记录上才是难点。
g*****g
发帖数: 34805
6
在一个数据中心里跑这一套是毫无难度的,除了S3以外我们基本只用IaaS 。简化的是
网管的任务。
事实上我们花了很大力气把东西一点点搬到AWS上,还要保持24*7。留在DC里多简单呀
,连这个活都省了。我
们纯粹不想全球去建几十个数据中心而已。AWS上可以想起一台机器就立马起,但scale
out还是得靠自己做。DC里不行还可以多花点钱买台好机器,AWS根本没这选项。
a9
发帖数: 21638
7
表在银行那儿又不让你访问,你得用他们的api,那是他们scale的事儿了。

表这
s*****r
发帖数: 43070
8
狗的scale out水平比Yahoo强十倍吧,大数据都是狗的几篇文章为开端
d*****0
发帖数: 144
9
强十倍夸张了 雅虎的轮子开源了 大家都用的不错
[在 swjtuer (灌水和coding都要敲键盘) 的大作中提到:]
:狗的scale out水平比Yahoo强十倍吧,大数据都是狗的几篇文章为开端

:...........
z****e
发帖数: 54598
10

yahoo就已经实现了世界上第一台搜索引擎
搜索引擎这种东西,scale out有个毛难度
既不是streaming也不是transaction
随便都可以divide & conquer下去
关键在于最后的结果是不是你想要的
google做的就是改善了这个结果
z****e
发帖数: 54598
11

那是相似度理论
这个跟scale out没啥必然联系
yahoo,google,sun和palantir这几个都是斯坦福的校办工厂
g*****g
发帖数: 34805
12
什么东西上了scale都很难,要个人定制优化也很难。啥东西都是看着简单而已。
淘宝上200块还能买个购物网站的源码呢,难道你就赶上淘宝了?
t**********1
发帖数: 550
13
老Q。大家都知点廉耻好不好?
如果每天出票数1000万张,查询请求多100万倍。怎么办?
别忘了,我的核心机是抢票用的,保证数据一致性。
但是我还有无穷的外围机,你就说吧,外围机能不能同核心机状态一致?很简单,因为
每天出票就那么多。只要能够sync出来的票,当然外围机能同核心机状态一致了。算法
都一样。你可以argue外围机同核心机有几毫秒延迟。但是我下面会给你讲延迟不重要。
你不是说查组合么?我问你,这些外围机能干不能干?算法都一样的。慢点就慢点。但
是是不是无限scalable的?外围机搜票给用户几个选择。用户点一下鼠标去抢票,抢票
请求才真正送给核心机。
这些根本不用用户20分钟。核心机的目的,就是维护single source of truth。
我问你,这个single source of truth你给我scale out一下试试?
t**********1
发帖数: 550
14
你号称不掺和。问了那么多误导别人的问题咋算?
我们问你,我上一贴有没有回答你的问题?这个抢票核心是不是single source of
truth?你能scale out么?
请你直接回答。我假定你比古德霸和zhaoce知廉耻。
q*c
发帖数: 9453
15
最后一个帖子了, 以后不掺和你的这个问题
这个枪票核心我觉得就是 single source of truth, 你现在这个抢票器设计不能
scale out.
好了别问我了, 我忙的很啊。
t**********1
发帖数: 550
16
你行你上。你设计一个能scale out的抢票器。性能比我的好。
你一行代码不用写,能说明白就行。
n*****t
发帖数: 22014
17
来自主题: Programming版 - 关于抢票鸡的 scale out
刚才赵老师提出一个有趣观点,单节点的热备是浪费。毛主席说,浪费是可耻的,兄弟
干脆捎带解释一下怎么可以减少浪费。
老魏的核心节点实现抢票功能、并具备热备功能。具体来说,首级接到请求后,通过计
算,反馈给前端,并将消息传递给次级。次级根据计算结果,更新状态与首级保持一致
,并依次后传直至后端。任意一级发生故障,通过选举递增替补,排长变连长、连长变
营长。
在这种串行热备系统中,实际上仍然可以实现 scale out 来扩充系统容量。如首级来
不及计算,可以将待处理请求流向次级,次级处理结果反馈首级,首级以此更新状态保
证双向一致,并传回前端。这样的设计可以大大扩展处理能力。
另外还有复杂的架构,通过广播、仲裁,达到并行处理的目的。
c*******9
发帖数: 9032
18
来自主题: Programming版 - cnn 如何做到 scale invariant
translation invariant 是 cnn 强项。
但是scale invariant 好像只能pooling用成倍数量的模板,效率太低了吧。
w***g
发帖数: 5958
19
来自主题: Programming版 - cnn 如何做到 scale invariant
做不到. 所以现在有那么深的网络. 要能scale invariant了, 根本不需要那么深.
这个我以前发帖讨论过.
L****8
发帖数: 3938
20
来自主题: Programming版 - cnn 如何做到 scale invariant
说反了 应该是穷尽各种scale 变化输入 送给一个CNN
L****8
发帖数: 3938
21
本质是对各种scale translation进行穷举(convolution)
然后把结果综合起来
s********k
发帖数: 6180
22
来自主题: Programming版 - AWS上做Deep learning large scale design
自己顶一下,板上大牛说说要设计一个large scale的machine learning,有没有什么
可以参考的,比如一个model一台机子跑不下,怎么做分布式?然而训练数据和模型数
据分别存储在哪里?实际中怎么实现?如果上线之后需要更改model,A/B test的方案
是不是就可以了?

balance
c*******v
发帖数: 2599
23
来自主题: Programming版 - 老魏的套路需要能scale才行
几个while,然后一些汇编自己写个yield什么的。
这个可以scale。我参与过好几个新的芯片都这个结构。
每年至少几十M的量出去。
我以前写过ROM里的库。还设计过一些异常处理。
后来是只写算法,代码别人写。
t******g
发帖数: 10390
24
来自主题: Software版 - Re: Question on scale changing with Excel
我研究出来的方法是先画两个曲线在一个图里,然后双击其中一个,
出现的曲线属性的框框,里面有关于坐标轴的选项,选成次要坐标轴,
两个曲线的scale就合适了.
当然你可以细调.
w******e
发帖数: 1187
25
来自主题: Biology版 - 求large scale RNA end biotinylation kit
想biotinylate aptamer做ELISA,之前用pierce的3' biotinylation kit,
一次只能label 50pmole。不知有没有kit能做large scale labeling。
我隐约记得有产品可以在RNA in vitro xcription的过程中把biotinylated
NTP加到sequence里,不知能不能做到只label 5'/3' end?otherwise
担心影响structure。
多谢!!
m***i
发帖数: 898
26
来自主题: Biology版 - postdoc salary new scale?
这个新的标准是从NIH最近发的一个招postdoc的广告上看来的,如果大部分大学遵守这
个SCALE,大家可以跟老板argue工资的事。
j******2
发帖数: 544
27
杂志不让用magnification,只让用scale bar。请问这应该用啥软件呢?photoshop?
imageJ?
非常感谢!!
j******2
发帖数: 544
28
杂志不让用magnification,只让用scale bar。请问这应该用啥软件呢?photoshop?
imageJ?
非常感谢!!
D***1
发帖数: 200
29
这里人多,有人认识 Chunhui Luo 的,请给人通知一声,文章被撤了都不知道。
Retraction Note to: Pilot-Scale Demonstration of In Situ
Chemical Reduction Technology at a Formerly Used Defense
Site
Chunhui Luo & Walter O’Niell & Valentine Nzengung
# Springer International Publishing Switzerland 2014
This article has been retracted because both Walter
O’Niell and Valentine Nzengung have indicated they
are not co-authors; they have not been involved in the
writing of the article.
In addition the corresponding author Chunhui Luo
may ... 阅读全帖
c*******x
发帖数: 438
30
【 以下文字转载自 Chemistry 讨论区 】
发信人: catalystx (催化剂X), 信区: Chemistry
标 题: Can anyone recommend a lab scale atomizer/vaporizer equipment?
发信站: BBS 未名空间站 (Fri Aug 24 16:21:51 2007)
Please provide me the name of the company. Thanks.
e****e
发帖数: 2740
31
【 以下文字转载自 Chemistry 讨论区 】
发信人: evence (IV), 信区: Chemistry
标 题: process scaling up design 和 research scientist哪个职业寿命长
发信站: BBS 未名空间站 (Mon Aug 29 16:27:07 2011, 美东)
都是R&D职位,虽然本质上讲
第一个好像算development
第二个算是research
工资底薪差不多,哪个职业寿命长呢?
e****e
发帖数: 2740
32
【 以下文字转载自 Chemistry 讨论区 】
发信人: evence (IV), 信区: Chemistry
标 题: process scaling up design 和 research scientist哪个职业寿命长
发信站: BBS 未名空间站 (Mon Aug 29 16:27:07 2011, 美东)
都是R&D职位,虽然本质上讲
第一个好像算development
第二个算是research
工资底薪差不多,哪个职业寿命长呢?
x*****9
发帖数: 68
33
thanks
我一般都放 5eq DCC, 1-2eq DMAP
以前normal scale反应都OK
h******g
发帖数: 600
34
对这个概念不是很清楚,如何计算这个值,比如说在400MHz,500MHz的基础生time
scale是多少?谢谢了。
t******t
发帖数: 3045
35
what is nmr time scale?
g*****n
发帖数: 36
36
NMR time scale 可以检测到的分子的运动时间尺度。
g**********f
发帖数: 68
37
The position is open for a motivated post doctoral candidate to study
oilfield scale control of mineral salt (carbonates, sulfates or sulfides)
nucleation, precipitation and inhibition in the oil and gas operations http://www.brinechem.rice.edu/. The ideal candidate should be versed in the aquatic and geochemistry and have experimental experiences in thermodynamics, kinetics and surface chemistry, self-motivated and genuinely interested in academic and industrial research. The candidate shall ... 阅读全帖
g**********f
发帖数: 68
38
The position is open for a motivated post doctoral candidate to study
oilfield scale control of mineral salt (carbonates, sulfates or sulfides)
nucleation, precipitation and inhibition in the oil and gas operations http://www.brinechem.rice.edu/. The ideal candidate should be versed in the aquatic and geochemistry and have experimental experiences in thermodynamics, kinetics and surface chemistry, self-motivated and genuinely interested in academic and industrial research. The candidate shall ... 阅读全帖
t****t
发帖数: 610
39
试着将一个刚做完的psd格式的图作为图层放到另外一个图里。然后用edit->transform
->scale拉大一点。但是一拉图就失真,只看到一个个马赛克。这种问题时有时无。比
如说,如果在原图里把图拉大,就不失真,然后再放到新图就没事。
而且,改变新图里原有的图层没有失真。
请问问题出在那里?
谢谢。
f******k
发帖数: 297
40
来自主题: Computation版 - large scale quadratic programming
请问有没有什么好的软件/程序能做large scale quadratic programming的?我现在的
问题有几百万个变量和不等式约束(以后有可能更多),但是所有的系数矩阵都是稀疏
矩阵,优化问题也是凸问题。Matlab的QP不支持sparse matrix。谢谢!
w****a
发帖数: 155
41
large scale Monte Carlo simulation都会遇到哪些技术难点?
s******y
发帖数: 260
42
我用一个CCD camera拍样品的照片,一般情况下10cm左右的样品我就放一个钢尺在里面
,拍完了比较一下就知道大小。但现在拍了1cm左右的小样品,钢尺的刻度在这个放大
倍数以后就显得很宽不准确了。想问问有没有什么公司卖这种1cm field of view的
calibrated scale的。
c*******t
发帖数: 174
43
来自主题: Engineering版 - 请问,autocad里scale的原理
请问,autocad里scale的原理,它是改变什么达到放大,缩小的目的?是长度还是坐标?
或者别的?如果是长度,请问如何获取物体的长度,宽,高度?谢谢。
x***[email protected]
g**********f
发帖数: 68
44
The position is open for a motivated post doctoral candidate to study
oilfield scale control of mineral salt (carbonates, sulfates or sulfides)
nucleation, precipitation and inhibition in the oil and gas operations http://www.brinechem.rice.edu/. The ideal candidate should be versed in the aquatic and geochemistry and have experimental experiences in thermodynamics, kinetics and surface chemistry, self-motivated and genuinely interested in academic and industrial research. The candidate shall ... 阅读全帖
g**********f
发帖数: 68
45
The position is open for a motivated post doctoral candidate to study
oilfield scale control of mineral salt (carbonates, sulfates or sulfides)
nucleation, precipitation and inhibition in the oil and gas operations http://www.brinechem.rice.edu/. The ideal candidate should be versed in the aquatic and geochemistry and have experimental experiences in thermodynamics, kinetics and surface chemistry, self-motivated and genuinely interested in academic and industrial research. The candidate shall ... 阅读全帖
g**********f
发帖数: 68
46
The position is open for a motivated post doctoral candidate to study
oilfield scale control of mineral salt (carbonates, sulfates or sulfides)
nucleation, precipitation and inhibition in the oil and gas operations http://www.brinechem.rice.edu/. The ideal candidate should be versed in the aquatic and geochemistry and have experimental experiences in thermodynamics, kinetics and surface chemistry, self-motivated and genuinely interested in academic and industrial research. The candidate shall ... 阅读全帖
w********h
发帖数: 12367
47
来自主题: Macromolecules版 - 人生scaling
在看de Gennes的scaling concept,
突然想到人也是可以按照时间的尺度来划分的。
3000年出现一次的,比如耶稣;
300年出现一次的,比如爱因斯坦,牛顿;
30年出现一次的,比如普朗克等等仅次于爱因斯坦的著名科学家,Flory和de Gennes应该
算这一类里面;
3年出现一次的,除上面两类之外的数目众多的Nobel奖得主中货真价实者;
3个月出现一次的,杰出faculty and researcher without Nobel prize or with but
not so important;
3天出现一次的,一般的faculty and researcher.
3小时出现一次的,博士学位拥有者或具有博士学位水平的博士candidate.
3分钟出现一次的,广泛受到大学或大学教育以上并且与之相符的人。
3秒钟出现一次的,除以上的人之外的金字塔基座。
Note:30年或以上出现一次的,后天奋斗是没用的,呵呵。
c*****e
发帖数: 238
48
来自主题: Macromolecules版 - 人生scaling
You are only talking about physics...
for math, more and more geniuses are appearing...

Well, for scientists, no one cares
I guess the scaling needs to be corrected, i.e., from Archimedes to Newton
it takes 2000 years, from Newton to Einstein, it takes 300, next should take
even shorter time.
Fermi, Heisenberg, Witten...are all above Flory/de Gennes level, although F/G are
definitely above a lot of others.
c******x
发帖数: 438
49
RT. Processing temperature similar to PEEK. Purpose: blend polymer with
additives during melting in lab scale level.
Thanks
O*****O
发帖数: 24
50
来自主题: Mathematics版 - multidimensional scaling clustering methods
I am learning the multidimensional scaling clustering methods
in a hurry. I am able to understand how the stress is minimized
and how the final configuration is computed. The configuration
is supposed to contain the information to project patterns from
a high-dimensional space to a low-dimensional space.
Can someone please tell me how I can use the configuration
to project a specific pattern to the low-dimensional space?
Is it just a matrix multiplication?
then how clusters are computed thereaft
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)