由买买提看人间百态

topics

全部话题 - 话题: segment
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
j**********e
发帖数: 442
1
来自主题: Business版 - CompuStat: Segment
谢谢!可是那个文件有每个segment的信息啊?
COMP:NA:segment [ /wrds/comp/sasdata/na/segment ]
seg_annfund Segment Annual Item
seg_afndfn Segment Annual Footnote
seg_ann Segment Annual Descriptor
seg_customer Segment Customer
seg_geo Segment Geographic Code
seg_naics Segment NAICS
seg_product Segment Product
seg_type Segment Detail
j**4
发帖数: 10425
2
It was supposed to be one of those feel-good segments on a local television
newscast: A rescued dog. A grateful owner. The hero firefighter who pulled
the pulled the dog from the ice. But that's not how it turned out.
The dog, an Argentine mastiff named Gladiator Maximus, attacked Kyle Dyer,
anchorwoman at NBC's KUSA Denver affiliate, during a live, in-studio segment
on Wednesday that was meant to celebrate the dog's rescue from an icy lake
the day before.
Dyer was shown petting the mastiff duri... 阅读全帖
s*******a
发帖数: 42
3
来自主题: JobHunting版 - paging和 segmentation有什么区别?
抛砖引玉一下,没有查相关资料
Paging 和 segmentation 是两种内存划分策略,在linux下都有,segmentation主要是
划区,这样才会出现segmentation fault的说法,就是你访问了另一个进程的内存,越
出了自己的segmentation。每个segmentation有自己的表供查询。
Paging划分更细,一般是4K,适用于虚拟内存,方便内存与硬盘的swapping,大小可以
改。
W***o
发帖数: 6519
4
【 以下文字转载自 Programming 讨论区 】
发信人: Wardo (Wardo), 信区: Programming
标 题: Java 问题,请教如何找出一个array里的duplicate segments?
发信站: BBS 未名空间站 (Sat Sep 14 00:11:22 2013, 美东)
比如我有一个这样的array {1, 2, 3, 3, 3, 3, 5, 6, 8, 8, 8, 8, 8, 9, 9, 9, 9}
,我希望找出里面的duplicate segment {3, 3, 3, 3} {8, 8, 8, 8, 8} {9, 9, 9, 9}
我的想法是用两个指针i,j。i 初始化在index 0, j 在 N - 1最后一个index. 保持i不
懂,用j从用往左扫描,如果没找到,让j停在i + 1的位置,然后increment i to i+1,
j to N-1. 如此反复,如果j找到了一个duplicate segment的最右端, 此时test[i] =
= test[j] true,这个时候打印出这个segment. 然后increm... 阅读全帖
m**********t
发帖数: 385
5
来自主题: JobMarket版 - Segment Innovation Manager
Organization Description:
Philips Research is the source of many advanced developments in Healthcare,
Lifestyle and Technology. Building on 90 years’experience in industrial
research and our world-leading patent position,we’re dedicated to
meaningful innovations.In the healthcare domain,we are enhancing imaging and
monitoring systems,as well as exploring innovative personal healthcare.In
lifestyle,we’re helping people see, hear,remember and share content,
anywhere and anytime.Our vision focuses... 阅读全帖
W***o
发帖数: 6519
6
【 以下文字转载自 Programming 讨论区 】
发信人: Wardo (Wardo), 信区: Programming
标 题: Java 问题,请教如何找出一个array里的duplicate segments?
发信站: BBS 未名空间站 (Sat Sep 14 00:11:22 2013, 美东)
比如我有一个这样的array {1, 2, 3, 3, 3, 3, 5, 6, 8, 8, 8, 8, 8, 9, 9, 9, 9}
,我希望找出里面的duplicate segment {3, 3, 3, 3} {8, 8, 8, 8, 8} {9, 9, 9, 9}
我的想法是用两个指针i,j。i 初始化在index 0, j 在 N - 1最后一个index. 保持i不
懂,用j从用往左扫描,如果没找到,让j停在i + 1的位置,然后increment i to i+1,
j to N-1. 如此反复,如果j找到了一个duplicate segment的最右端, 此时test[i] =
= test[j] true,这个时候打印出这个segment. 然后increm... 阅读全帖
W***o
发帖数: 6519
7
【 以下文字转载自 Programming 讨论区 】
发信人: Wardo (Wardo), 信区: Programming
标 题: Java 问题,请教如何找出一个array里的duplicate segments?
发信站: BBS 未名空间站 (Sat Sep 14 00:11:22 2013, 美东)
比如我有一个这样的array {1, 2, 3, 3, 3, 3, 5, 6, 8, 8, 8, 8, 8, 9, 9, 9, 9}
,我希望找出里面的duplicate segment {3, 3, 3, 3} {8, 8, 8, 8, 8} {9, 9, 9, 9}
我的想法是用两个指针i,j。i 初始化在index 0, j 在 N - 1最后一个index. 保持i不
懂,用j从用往左扫描,如果没找到,让j停在i + 1的位置,然后increment i to i+1,
j to N-1. 如此反复,如果j找到了一个duplicate segment的最右端, 此时test[i] =
= test[j] true,这个时候打印出这个segment. 然后increm... 阅读全帖
c********t
发帖数: 5706
8
哦,target是个区间啊
sort and merge. Then use binary search check. 其实time complexity 是一样的,
space complexity还更好 O(n)。我总觉得segment tree 没什么用。有没有哪道题需要
用segment tree?
A segment tree for a set I of n intervals uses O(n log n) storage and can be
built in O(n log n) time
W***o
发帖数: 6519
9
比如我有一个这样的array {1, 2, 3, 3, 3, 3, 5, 6, 8, 8, 8, 8, 8, 9, 9, 9, 9}
,我希望找出里面的duplicate segment {3, 3, 3, 3} {8, 8, 8, 8, 8} {9, 9, 9, 9}
我的想法是用两个指针i,j。i 初始化在index 0, j 在 N - 1最后一个index. 保持i不
懂,用j从用往左扫描,如果没找到,让j停在i + 1的位置,然后increment i to i+1,
j to N-1. 如此反复,如果j找到了一个duplicate segment的最右端, 此时test[i] =
= test[j] true,这个时候打印出这个segment. 然后increment i to j + 1, j to N-
1,再反复这个过程直到 i = j然后跳出循环。
最近脑袋比较浆糊,写了下面这个代码,但是不work,请各位来点播一下思路。谢谢了
int[] test = new int[] {1, 2, 3, 3, 3, 3, 5, 6, 8, 8, 8, 8, 8, 9, 9, ... 阅读全帖
m******e
发帖数: 89
10
不同segment 的 model score/probabilty 能较吗?
company 的risk model 有10 个segments. 我在做strategy 时,能把它们的score/
probabilty 合在一起做,还是要分开在每个segment 上做。
我觉得应该分开做,然后在合到一起。因为PROBABILITY 只在它们所代表的POPUL
ATION 上有效。但看到过去的一些SCORE CUTOFF 是合在一起做的。
谢谢!
f*******n
发帖数: 2665
11
可以合在一起做,但你先要做alignment, 也就是对每个segment 上的score作线性变化
,alignment之后同样的Score值在每个Segment上对应相同的风险。这样10个Segment就
可以在一起做Cutoff和Strtegy了。
g**********l
发帖数: 214
12
请问具体是怎么做alignment呢?
用那个你们说的做例子
actual 10% bad rate is group/segment-wide metric.
500分 is individual-wide metric.
这两个怎么凑在一起呢
还有,另外两个segments have only 5% and 1% bad rate (as a segment-wide
metric). they can never have 10% bad rate as a grTFFFoup. sorry i am not
seeing how to align them at 10%.
thanks a lot!
b***m
发帖数: 22
13
来自主题: _Graphics版 - how to draw a segment on a natural image
i have to draw a segment between two points(x1,y1;x2,y2) on a natural
image(.raw or .bmp, etc). so, what i wanna do is to highlight all the points
on the segment(change the intensities of those points to brightest). the
question is how to figure out the coordinates of the points on the segment,
given the coordinates of the start and end points.
maybe, first work out the formula y=ax+b with x1,y1,x2,y2, and, try every
possible X between x1 and x2, and figure out the according Y, and get all the
p
s**********g
发帖数: 14942
14
leetcode常见题型的话
能用segment tree的题基本都有其他替代品
光说tree就有神马BIT tree啊啥的
但segment tree的确可以灵活解决不少问题
未必能提供面试时的最优solution
但能解决问题 complexity也不差

be
l*****f
发帖数: 1
15
在临床、基础医学、生物学研究及新药研发中,迫切需要操作简单、快捷的软件对人体
或动物组织、培养的细胞等进行自动定量分析,以研究疾病的病理机制、药物疗效等。
这可以通过图像 color segmentation, post-processing and calculation来实现。可
以先从本人熟知的领域开始,如果您精通image color segmentation,应该能在4-6个月
内推入市场,然后逐步向其他方向扩张。
软件服务对象:医学、生物学研究工作者,制药公司新药研发人员等。
关于我自己:多年从医经验,来美从事基础医学研究10年。
合作方式:co-founder 或者contractor。
也欢提供意见、建议或讨论。
Email: z*******[email protected]
P****4
发帖数: 831
16
来自主题: Travel版 - UA 几个segment可以换机票
刚开始跟LD异地,经常坐UA飞来飞去,路程不远,里程积得不多,但segment会比较多,
在网上没找到segment换机票的信息,望知情者指教,谢谢先!
P****4
发帖数: 831
17
来自主题: Travel版 - UA 几个segment可以换机票
谢谢各位,看来UA没法用segment换,记得southwest和airtran好像是可以累计segment
换机票的。
s*j
发帖数: 7
18
来自主题: Programming版 - SIGSEGV,Segmentation fault in Cygwin
【 以下文字转载自 Unix 讨论区 】
发信人: sjj (漂), 信区: Unix
标 题: SIGSEGV,Segmentation fault in Cygwin
发信站: BBS 未名空间站 (Thu Aug 2 18:48:03 2007), 转信
在xp下装了一个Cygwin,用gdb debug一个小例子程序,设了断点后,就出现了上面的错
误。。Program received signal SIGSEGV, Segmentation fault. 这个程序拿到其他装
Cynwin的机子上debug,没有什么问题。
google了一下这个问题,看到说 You need to simplefy your PATH. The main probl
em you're having is that you're
mixing UNIX TOOL PACKAGES. 建议add `export
PATH=/bin:/usr/bin:/usr/local/bin:/what/ever/other/paths:." to your ~/.bashr
c file。加了以后,好
f*****r
发帖数: 229
19
I want write a program about process and thread migratre in solaris,
but I don't know how to get a process's code segment and data segment from user program.
Please Big Nas can give me some advices. Thank you very much.
B******o
发帖数: 496
20
来自主题: Biology版 - Prism怎么插入Y axis segment?
double clicks on Y axis ---> Gaps and direction ---> choose two segments
to change the label, again, double click on the segment you want to modify,
and then change the value.
baozi~~~~
j**********e
发帖数: 442
21
来自主题: Business版 - CompuStat: Segment
大牛们:请教如何在CompuStat上找到各公司的business segment info?
Larry Lang(94)说:All our data come from Compustat. The Business
Information file of Compustat provides information for firms disaggregated
for up to 10 different industry segments.
我找啊找啊找不到,郁闷致死。。。
a*****3
发帖数: 601
22
请教有在database marketing行业做过的谈谈如何做customer segmentation/
profiling ? 我知道的方法有:
1.customer RFM
2.customer Life time value method
3.logistic regression
这三种方法有何优缺点? 平时大家在工作中如何做segmentation的?
答案有一定信息的,有伪币答谢。
a*****3
发帖数: 601
23
仅仅是retail.以上方法我都学习了下相关资料,可惜我能找到的资料都语焉不详。
对于RFM 方法(recency,frequency,money),【1】说对每个变量打分say from 1 - 5
,每个客户得到532,154, etc,我很怀疑这个方法,因为【1】没有描述是什么算法得到
1,2,3,4,5的;同时也看不到是如何customer segmentation的。【2】是本好书,给出
了具体程序,在245-246页列了一张表,罗列出由rfm方法导出的变量,一共37个,但这
些变量是什么意思,怎么由客户的购买记录得到的,书上也没仔细说。然后【2】用这
37个变量做回归,可惜书上也没写回归结果。(我也懒得下源代码运行)。
【3】的作者是lifetimevalue的创始人,对customer life value method写了370页,
我到目前研究了一半;感觉虽然有道理,能计算出 net present value,可是这个不能
算customer segmentation.没有解觉实际问题。
***************************************... 阅读全帖
r***w
发帖数: 35
24
来自主题: Statistics版 - 为啥做了segmentation后模型fit更差?
1. Segmentation时的predictor在fitting时被重复使用了,也就是你认为有
interaction, 那么model的complexity增加了
2. Segmentation的目的是减少bias,之后fitting的model应该用ensemble的model比较
合适。
你可以先用clustering去寻找natural structure,比如比较简单的k-means, 到比较复
杂的spectral,之后再fitting,结果有可能会好一些(经验)。
希望有帮助吧。
T*******I
发帖数: 5138
25
来自主题: Statistics版 - 为啥做了segmentation后模型fit更差?
In my opinion, the current methods in segmentation for regression analysis
have a big issue for they employing optimization approaches. This is a
violation to randomness, i.e. random correspondence.
The segmentation model you built with an optimization is only a "random
point" model, just like you use a random variable's value (here it is the
models' parameter matrices) which is corresponding to the maximum or minimum
of another random variable (here it is the optimizer you used in the method
).... 阅读全帖
A*******s
发帖数: 3942
26
来自主题: Statistics版 - 为啥做了segmentation后模型fit更差?
明白了,其实根源是你不应该拿每个segment单独的performance,和segmentation之前
基于整个sample的performance来做比较,这个根本就是apple vs. orange。
要拿任何一个statistic(r^2, adj r^2, AIC, BIC, AUC, whatever)来指导
model selection,这些statistics都是对同一个sample得出来的才有意义。
c********h
发帖数: 330
27
严谨的说,如果每个segment的distribution不一样,是不可以pool together的。
就算这些segment的observed variables are comparable,也不能避免有很多其他的
unobserved variables。
直接pool together会有很大的hidden bias
g**********l
发帖数: 214
28
还不是太清楚,望能解释一下。
suppose i have 3 segments, high risk, med risk, low risk, with bad rate 10%,
5%, 1%. each segment has its own model and scores.
请问您说的是用这3个bad rate (10/5/1%) 去 adjust/align these 3 sets of scores?
how do you do that?
thanks!
f*******n
发帖数: 2665
29
这个人是我们公司(银行)在印度的modeling team的Sr Manager。他说他们做的
segmented logistic regression (有时多达50个segmentation)效果比一个logistic
regression好很多,而且:
1。他们的model结果就是一个probability,不用转换成score。(我很难想象银行不用
score而用一个介于0和1之间的小数来表示风险)
2。他们把50个model的结果直接放在一起,没有任何转换。(我觉得不可以,一位每个
model给出的estimated probability所对应的实际risk不相同,需要调整)
3。以上做法都通过了model validation。
此人的职务和在我们公司的经历不会有假。但他的话实在让我惊讶。请有相关经验的人
给评一评。
g******r
发帖数: 3
30
来自主题: _Graphics版 - segmentation
The volume segmentation is part of my current project. For a simple example,
I need to extract a human brain grey matter volume segment from the
3-D human brain gray-scale image. The process is done by highlighting a
volume of interested 2D region on the 3D gray-scale image, then the
corresponding 3D volume is extracted to a new window frame for viewing. In
addition, the extracted 3D volume is viewed as a color 3D image.
Anyone know certain papers(examples) related to my project, please,
m******r
发帖数: 6963
e**c
发帖数: 95
32
来自主题: JobHunting版 - paging和 segmentation有什么区别?
paging和 segmentation有什么区别?
a**********k
发帖数: 1953
33
来自主题: JobHunting版 - paging和 segmentation有什么区别?
paging is for fixed sized memory chunk translation while segmentation is for
variable sized memory chunk translation.
d**f
发帖数: 264
34
void swap( char* cA, char* cB)
{
char ct = *cA;
*cA = *cB;
*cB = ct;
}
int main(int argc, char* argv[])
{
char *a = "a";
char *b = "b";
swap(a, b);
}
貌似问题出在 *cA = *cB;?
如果是char a = 'a'; char b = 'b'; swap(&a,&b);不会有segment fault.
d**e
发帖数: 6098
35
前面ihasleetcode有个贴应该也解释过类似的。
char * a = "a"
定义的是一个c-string constant,不能修改它的值。所以在swap就出现segment fault
了。
f*****e
发帖数: 210
36
就是leetcode的题目:
Best time to sell and buy stock II 的问题。
int maxProfit(vector & prices){
int profit=0;
for(int i=0; i if(prices[i+1]>prices[i]){
profit += prices[i+1]-prices[i];
}
}
return profit;
}
如果 prices=[], 会有segmentation fault。我用gdb查了下,代码会执行到prices[i
+1]>prices[i]这一行,说明i 就能过
int maxProfit(vector & prices){
int profit=0;
int size=prices.size();
for(int i=0; i if(prices[... 阅读全帖
n******7
发帖数: 99
37
来自主题: JobHunting版 - segment tree size 是固定的吗
看到网上一些例题都是预先确定size再build tree,之后进行update和query。如果数
据不断增加和删除,还能用segment tree来进行log(n)的range query吗?增加或删
除node要重新build tree吗?多谢
x***7
发帖数: 11
38
来自主题: JobHunting版 - segment tree size 是固定的吗
segment tree没有添加删除Node这个操作吧
J*****v
发帖数: 314
39
可以先merge,再看merged之后的区间没有包含给定的target区间,这样得花o(nlogn)
时间。
不过segment tree往往能给出最好的解法
s**********g
发帖数: 14942
40
segment tree的空间cost未必能太好
l******t
发帖数: 2113
41
来自主题: Travel版 - UA 几个segment可以换机票
segment多只是对提升status有帮助
j***g
发帖数: 11325
42
来自主题: Travel版 - UA 几个segment可以换机票
UA换票还是看里程,和Segment无关
t******n
发帖数: 6861
43
来自主题: Travel版 - UA 几个segment可以换机票
现在也变成点数了

segment
z*******i
发帖数: 2904
44

这个agent还特别自信重复了两次delete a segment won't change something.
代大的意思是,还得继续打电话,碰见一个靠谱的agent更新一下机票并给一个新的票
号?
z*******i
发帖数: 2904
45
今天终于成功找到一个靠谱的agent,把这段成功的删去,receipt改动了,重新出的票
,是新票号。被hold了30min,估计她业务不熟练,找supervisor 学习去了;这期间一
度收到一个新的行程,不仅要删去的还在,回美国的两段飞机都出现了duplicate
segments,真担心啊。不过还好,最后顺利搞定了。
k*****n
发帖数: 9823
46
来自主题: PhotoGear版 - [合集] DSLR的multi segment metering
☆─────────────────────────────────────☆
baren (岜人) 于 (Sun May 27 22:41:23 2007) 提到:
在小DC上有没有相应的实现?
这个跟spot metering在拍摄上会带来什么不同的效果?
☆─────────────────────────────────────☆
phunter (程式猎人) 于 (Sun May 27 22:43:10 2007) 提到:

我几乎不用这种multi segment metering,因为根本不能掌握它到底测成什么样,还不
如自己测
☆─────────────────────────────────────☆
baren (岜人) 于 (Sun May 27 22:44:39 2007) 提到:
自己怎么测?
☆─────────────────────────────────────☆
phunter (程式猎人) 于 (Sun May 27 22:46:21 2007) 提到:
就是中央重点或者点测
☆──────────────
c*****a
发帖数: 145
47
来自主题: Arts版 - SEGMENT: Laylah Ali in "Power"
最近看Laylah Ali的画,虽然觉得好看,却看不懂,然后找到这个采访视频,觉得很有
意思
http://www.pbs.org/art21/watch-now/segment-laylah-ali-in-power
z**r
发帖数: 17771
48
来自主题: EmergingNetworking版 - 如何解决Data Center micro-segmentation
新版aci加了micro segment功能。
z**r
发帖数: 17771
49
来自主题: EmergingNetworking版 - 如何解决Data Center micro-segmentation
新版aci加了micro segment功能。
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)