z****e 发帖数: 54598 | 1 填充跟图形本身无关
你可以用来填充线或者圆形或者你想要什么图形都可以
问题在于,你如何画出这个图形来
如果是不规则的多边形
用polygon应该就可以了
以下是shape的实现类列表,找你喜欢的
Arc, Circle, CubicCurve, Ellipse, Line, Path, Polygon, Polyline, QuadCurve,
Rectangle, SVGPath, Text |
|
p***o 发帖数: 1252 | 2 Sounds like if you are given a convex polygon, it means
the points are given in either clockwise or counter
clockwise order. Otherwise, you just have a point set,
where many polygon can be constructed with the same
vextex set but being non-convex. In such case, you have
to generate the convex hull first ... |
|
w***g 发帖数: 5958 | 3 从SSD随机读。我写picpac就是专门为了对付这种情况。
我现在正在大改版,主要是用C++重写imgaug那套东西。你要不要试试?
config = {"db": "train.spoly.db", #事先导入到存在SSD上的db文件。
"loop": True,
"shuffle": True,
"annotate": True,
"channels": 1,
"dtype": "float32",
"transforms": [
{"type": "augment.flip", "horizontal": True, "vertical":
True},
{"type": "augment.rotate", "min":-180, "max":180},
{"type": "augment.scale... 阅读全帖 |
|
G****e 发帖数: 11198 | 4 http://www.nobelprize.org/nobel_prizes/chemistry/laureates/2011
Press Release
5 October 2011
The Royal Swedish Academy of Sciences has decided to award the Nobel Prize
in Chemistry for 2011 to
Daniel Shechtman
Technion - Israel Institute of Technology, Haifa, Israel
"for the discovery of quasicrystals"
A remarkable mosaic of atoms
In quasicrystals, we find the fascinating mosaics of the Arabic world
reproduced at the level of atoms: regular patterns that never repeat
themselves. However, the con... 阅读全帖 |
|
m******d 发帖数: 3 | 5 Let the point be (x, y).
Line up the vertices(DingDian) as (x1, y1), (x2, y2), ..., (xn, yn).
Calculate
ci=det(matrix
x y 1
xi yi 1
x(i1) y(i+1) 1
)
for i=0, 1, ..., n-1. Of course, denote (x0, y0) = (xn, yn).
If all the ci's are positive, or all are negative, the point is
in the polygon. Otherwise, i.e., some positive and some negative,
the point is not in the polygon.
坐标, |
|
x*****w 发帖数: 8 | 6 My situation is finding outline of a model ,no holes. For your problem, I
only can give you some advice:
1. find shared point: a point has more than 1 point connect it. May need a
flag array, size=number of boundary nodes.
2. start from any share point,when a line hits another share point, stop.
3. Your have some line segments after searching. Try using some methods to
find best combination, such as two segments share same points. I don't
believe it is possible that all polygons connect more th... 阅读全帖 |
|
x*****w 发帖数: 8 | 7 My situation is finding outline of a model ,no holes. For your problem, I
only can give you some advice:
1. find shared point: a point has more than 1 point connect it. May need a
flag array, size=number of boundary nodes.
2. start from any share point,when a line hits another share point, stop.
3. Your have some line segments after searching. Try using some methods to
find best combination, such as two segments share same points. I don't
believe it is possible that all polygons connect more th... 阅读全帖 |
|
a*****g 发帖数: 19398 | 8 Fla. school incorporates song and dance into math, reading
http://www.news-journalonline.com/article/20140410/NEWS/1404199
概要翻译:
美国佛罗里达一所小学的五年级学生通过歌曲和舞蹈学数学概念。
这个项目是从前的一位老师开发的,
里面包括诸如“八边形或者其他多边形里面有多少个边”之类的问题。
Students at an elementary school in Florida are using song and dance to
remember key math and reading concepts. Students use the program --
developed by a former teacher -- to learn concepts, including how many sides
are in an octagon and other polygons. "It's a great way for the children to... 阅读全帖 |
|
g*******l 发帖数: 77 | 9 这个问题应该比较chanllenging,希望高手指点一下,多谢。 |
|
|
m*l 发帖数: 507 | 11 对于算法懂的很少,如果能说一下为什么要算这个,可能会找到更多的解决方案。GIS
有很多常用的算法做各种优化。比如
Voronoi diagram
解决的是下面的问题,有几个商店分布在城市当中,划分每一个商店的服务范围。
看看VORONOI DIAGRAM的算法,也许有点希望吧。 |
|
a****o 发帖数: 264 | 12 这是个GIS的应用问题吧,
FACILITY是一个或多个点层,census tract是个POLYGON层, 两个叠在一起. 你现在需要解
决每一个点在哪一个POLYGON里面.
以我入门级的GIS知识看,你不需其他信息了.似乎要做点编程工作或是GIS里面有什么小
技巧.
tract
census |
|
G*******s 发帖数: 76 | 13 in ArcGIS, add a field to attribute table, then setup transparency value for
each polygon.
right-click your polygon layer-> Features-> Symbol -> Transparency-> select
a field to set up % of transparency....done |
|
s***t 发帖数: 195 | 14 how to define a polygon from many points? is it the convex hull of the
points? or something else.
and a polygon can be defined by inequalies. check if the inequalities are
satisfied. |
|
r****o 发帖数: 1950 | 15 各位牛人好,我在思考一个简单的几何问题。
假定某矩形平面上有n个服务点,这些服务点根据就近原则管理整个矩形平面。所谓就
近就是说取平面上任意点,该点由其最近的服务点管理。
那么能不能证明这n个服务点把平面分为n个凸polygon,也就是每个服务点管理一个凸
polygon?
说的不是很清楚,不知道各位有没有明白我的意思? |
|
u*****l 发帖数: 444 | 16 我开会碰到一个低年级PHD,是我见过最牛B的PHD, 本科的时候发了一堆paper了,包括
Ann of Math. 这人刚从普林毕业,在斯坦福第一年还是第二年,刚做了Hilbert--Smith
conjecture for three-manifolds.做的领域也相当广,代数几何,拓扑,概率都做. 个人
感觉这个人比同时期的TAO要强.
The Hilbert--Smith conjecture for three-manifolds. Submitted. (April 2012).
The link concordance invariant from Lee homology. Algebr. Geom. Topol. 12 (
2012), no. 2, 1081--1098. Published Version. MR2928905.
(with János Kollár). Algebraic varieties with semialgebraic universal
cover. J. Topol. 5 (2012), no. 1, 199--212. Publi... 阅读全帖 |
|
N******t 发帖数: 11 | 17 A regular polygon with 2n + 1 sides is inscribed in a circle. Three of the
polygon's vertices are selected at random and the triangle formed by
connecting these vertices is drawn. Prove that the probability that the
center of the circle lies inside the triangle is (n+1)/(2(2n-1)). |
|
e****0 发帖数: 678 | 18 Screening
Pap smear for vervical cancer is 21 yo
DM
24-28 weeks
One hour 50 grams oral glucose tolerance test. BG > 140
Three hours glucose tolerance test (if two or more are positive)
1. Fasting BG > 95
2. One hour BG > 180
3. Two hours BG> 155
4. Three hours BG > 140
• Dysfunctional uterine bleeding (DUB)
Heavy vaginal bleeding occurs in the absence of structural or
organic disease
Endometrial biop... 阅读全帖 |
|
D**u 发帖数: 204 | 19 On a 2-dim plane, G is a function defined on all
polygonal region P, and satisfies the following properties:
1. G has 平移不变性, but 旋转不变性 is not guaranteed.
2. finite additivity: If P is the union of 2 disjoint polygonal regions P1
and P2, then G(P) = G(P1)+G(P2)
Question:
If D1 and D2 are 2 rectangulars with the same area, show that G(D1) = G(D2). |
|
l*******l 发帖数: 248 | 20 5.Let X be a random variable. What is bigger, E(e^X) < e^(E(X))? Why?
6.Suppose you have a polygon with n vertices. In how many ways can one
triangulate this polygon? (Points for thinking of recursion right away,
points for setting it up in such a way that there is no overcount, many
points for deriving this recursion, extra points for solving it. The latter
is hard, but can be done using "generating functions". Knowing what is
Catalan's number helps) |
|
y**t 发帖数: 205 | 21 你有x和y,假设y的CI是(lb,ub),lb=f(x),ub=g(x)。如果你的x取得间隔很小,那你就
可以在lb和ub之间用polygon上色。具体code你可以google一下polygon in R。 |
|
o****o 发帖数: 8077 | 22 都可以用基本的几个画图命令来完成,就是比较麻烦
根据数据,图3先plotcurve,然后用polygon来填充那个band,
背景色设置成灰色,用abline画白线
图4就是用plot+points,色彩根据点的归属设定
图5跟图三的原理差不多,overlay多个曲线和polygon
反正如果是我我就是这么搞,肯定比较麻烦,高手来说说更简便的方法吧
14 |
|
z*******n 发帖数: 1034 | 23 http://gamerboom.com/archives/84276
每日观察:关注手机应用被抛弃率等消息(6.16)
发布时间:2014-06-16 10:56:25 Tags:Disney Infinity,Don Mattrick收入,THQ商标
,应用被抛弃率
1)Localytics最新数据显示,20%的Android和iOS应用中就有一者仅被开启过一次,比
2013年的数据下降了2%,比2010年的情况低6个百分点。
数据指出游戏和体育类应用的这种被抛弃率分别达到22%和23%,Localytics指出这两个
领域竞争激烈,以及首次印象的重要性是造成这种现象的主要原因。
2014-category-chart(from localytics)
社交网络应用的被抛弃率较低,仅有11%,天气追踪应用在Localytics所调查的所有应
用类型中留存率最高,其被抛弃率仅为9%。
2014-platform-chart(from localytics)
Android应用的平均一次性使用抛弃率仅有16%,而iOS应用的这一比例高达23%。
从长期用户粘性来看,20147年39%的... 阅读全帖 |
|
F**********y 发帖数: 10265 | 24 小朋友们正在学几何图形,啥叫polygon。老师给我3个问题,最后一题问pentagon有几
个边几个角。
基本上都能回答正确是5个。
我又加问了一下,有没有可能一个polygon的边比角多,或者角比边多?
这下,差不多的小朋友都傻眼了。于是我让他们回家自己去思考,就得意洋洋的回来了.
只有小菜,狐疑的看着我,我只好悄悄说,告诉你吧,不可能。
小菜大叫:I knew it! You trick me again!! |
|
x*n 发帖数: 305 | 25
visualman? interesting, One of my former labmate's nickname is hapticman.
Yes this is exactly what we need know, how to get the texture coordinates
after polygonization.
An indian labmate asked me about this. I said polygonization is needed for
using that function, he said maybe not.
I think there should be some red book examples for him to check out.
Is it another function or a toolkit? |
|
O**X 发帖数: 1119 | 26 你从哪里看出理和据?
如果说谁离的近就该是谁的话,国家的边界应该是thiessen polygons.而不是现在这样
的不规则多边形
如果说上述理论不成立,那当然还是要看历史记载,这方面当然是中国有理,你不服不
行啊
还是那句话,老将要避免水平低下,首先要跳出为反而反的套子。不然死路一条 |
|
c*****1 发帖数: 3240 | 27 才看到,不是葛剑雄跟harvard的人在做?
http://www.fas.harvard.edu/~chgis/
其中明清县界的polygon层,我已经看到有人论文在用了
google那个history map overlay我之前也看到过,
很简单,不过只能是georeference的投影才行,但是说实话没什么用,因为只是image
的话跟其他图层信息陪不起来。其他你说的应用网上很多,你可以在google map里面搜
一下,不过真用gis图层信息做的很少。
俺自己做个一个平台,有兴趣私下聊:) |
|
D*****i 发帖数: 8922 | 28 这里有个说明图,C图就是埃及凹槽柱子。
这个C被划分为埃及柱子类--The polygonal column, plain or fluted. 这个算fluted
,我前面还贴了plain(多棱柱)的那种。
要说Doric没山寨这个,说得过去吗?
100 |
|
n******7 发帖数: 12463 | 29 看到太多次这种说法,但是我一直觉得不太对
比如食道,为什么就不能写成foodchannel,这不是一眼就明白了?
看过一个解释是,这样做合成词最后会很长,但是拉丁语系的语言不是很多词根吗,多
用用词根造词不就好了。其实很多我们觉得难认的单词都是可以有词根来猜测它们的意
思的,就是我们连词根也不知道罢了。以前我们组的欧洲傻妞都知道好多奇怪词怎么来的
另外,我觉得发音可能是更重要的原因,而不是文字。比如X边形,其实英语词挺
intuitive了,就是表数的词头penta/hexa/hepta+gon,跟五边/六边/七边+形一回事。
但是为什么pentagon不叫five sides polygon,还不是因为“五”、“边”、“形”这
几个意思说起来都比汉语啰嗦? |
|
p*****n 发帖数: 30 | 30 【 以下文字转载自 ChinaNews 讨论区 】
发信人: polygon (Yan Du Han Tan), 信区: ChinaNews
标 题: 宁波开投61岁董事长贺松青“坠楼”真像调查 (zz)
发信站: BBS 未名空间站 (Sat May 8 08:50:01 2010, 美东)
以下文字转自中原网
http://www.zynews.com/news/2010-05/06/content_711001.htm
宁波开投61岁董事长“坠楼”调查
宁波开投资产超百亿元,旗下有宁波热电(600982)(600982.SH)等10 多家企业。
在留下一封简短的遗书后,5月4日,宁波开发投资集团有限公司(下称宁波开投)
党委书记、董事长贺松青从公司所在的天宁大厦20楼“坠楼”,死时61岁。当天下午,
宁波市公安局海曙分局对外通报称具体情况正在进一步调查中。
宁波开投系宁波国资委下属4大投资性公司之一,资产超百亿元,旗下有宁波热电
(600982.SH)等10多家企业。贺松青此番出事,在宁波引发极大震动。相关新闻在宁
波和浙江都被严格封锁。
在宁波开投公司员工眼中,贺松青长相清 |
|
p*****n 发帖数: 30 | 31 【 以下文字转载自 ChinaNews 讨论区 】
发信人: polygon (Yan Du Han Tan), 信区: ChinaNews
标 题: 中国万岁!
发信站: BBS 未名空间站 (Sat Oct 9 21:51:24 2010, 美东)
我中华民族,我中国万古长青! |
|
y****g 发帖数: 36950 | 32 【 以下文字转载自 PDA 讨论区 】
发信人: yugong (愚公挖坑), 信区: PDA
标 题: 华为的4核拿到手了
发信站: BBS 未名空间站 (Mon Oct 8 00:19:48 2012, 美东)
国庆期间在上海订购了华为4核手机,用起来感觉不错,试了2个3D游戏,和同事的三星
S3比没啥区别。谁推荐个压力大点的3D游戏我来试试?
但是华为国内版本rom是4.04,删除了google服务的,装上google play也连不上,而系
统内置的华为云,里面中文软件应有尽有,但有很多英文软件比如Linkedin, 暴雪的手
机安全令什么的找不到的,到所以拿到手玩了一会就root了,然后再网上下了标准
android的一些服务文件copy到系统目录里,还要改改属性,这样google就可以同步了
,google play也可以登录了,但是华为云本身提供上传空间什么的也不舍得删,这样
机器就同步2个账户,可能有点浪费内存。
暂时不打算再折腾,等4.1rom出来以后再弄,电池2600毫安,确实比以前的HD2那1300
毫安的经用。玩了几天没出现死机什么的不正常现象。这个机器只有... 阅读全帖 |
|
x*******e 发帖数: 1517 | 33 列治文歧视并驱逐非国语业委会成员
列治文威灵顿花园(Wellington Court)的业主代表卡嘎(Andreas Kargut)代表若干
小区业主,向BC省人权特别法庭(Human Rights Tribunal)投诉被新任业主委员会歧
视,该投诉已获得立案调查。
卡嘎投诉的内容是: 该业委会开会只用普通话,不提供英语口译服务,并且在今年夏
天投票把非普通话成员驱逐出业委会。
威灵顿花园是列治文市区花园城市公园旁边的一个54户城市屋小区,由POLYGON公司开
发。
根据卡嘎的说法,威灵顿小区一直是个很和谐的小区,但自从发现一些木梁腐烂需要更
新时出现了问题,一些业主对粉刷工作提出很多问题,认为粉刷费用过高。然后一些业
主开始盛传非国语业委会成员“偷”了应急基金(Contingency Fund)。
在业主大会投票时,有业主一下子拿出37张代表票(Proxy Votes),从而驱逐了非普
通话业委会成员,还解聘了资深物业管理公司。
现任物业管理主任毛先生(Ed Mao)在邮件中说,我们不会在12月8日的业主委员会议
中使用英语,因为普通话是业委会团队最高效的沟通方式。
卡嘎以观察员... 阅读全帖 |
|
w*******e 发帖数: 15912 | 34 退读清华、康奈尔 印第安纳大学博士 王垠:牛校生脑子貌似有病
文章来源: 王垠 于 2015-03-05
人物简介:王垠
1997年,考入四川大学计算机系97级。
2001年,保送清华大学计算机系软件所硕博连读,主要进行集成电路布线算法的研究。
2003年发表《完全用Linux 工作》、《写给支持和反对<完全用Linux工作>的人们》,
痛陈windows弊端、宣扬linux。
2004年8月,发表网络文摘《完全用linux工作》、《写给支持和反对<完全用Linux工作
>的人们》,痛陈windows弊端、宣扬linux,文章在中国的计算机和linux阵营引起极大
轰动效应,成为水木清华linuxapp版和中国多个linux社区的偶像级人物。
2005年,发表学术论文“The polygonal contraction heuristic for rectilinear
Steiner tree construction” 。
2005年9月22日在水木社区BLOG上发表了《清华梦的粉碎--写给清华大学的退学申请》
明确要求退学,痛斥国内高等教育弊端。
2006年8月,从清华退学后考G... 阅读全帖 |
|
K******i 发帖数: 530 | 35 写得不错。
退读清华、康奈尔 印第安纳大学博士 王垠:牛校生脑子貌似有病
文章来源: 王垠 于 2015-03-05
人物简介:王垠
1997年,考入四川大学计算机系97级。
2001年,保送清华大学计算机系软件所硕博连读,主要进行集成电路布线算法的研究。
2003年发表《完全用Linux 工作》、《写给支持和反对<完全用Linux工作>的人们》,
痛陈windows弊端、宣扬linux。
2004年8月,发表网络文摘《完全用linux工作》、《写给支持和反对<完全用Linux工作
>的人们》,痛陈windows弊端、宣扬linux,文章在中国的计算机和linux阵营引起极大
轰动效应,成为水木清华linuxapp版和中国多个linux社区的偶像级人物。
2005年,发表学术论文“The polygonal contraction heuristic for rectilinear
Steiner tree construction” 。
2005年9月22日在水木社区BLOG上发表了《清华梦的粉碎--写给清华大学的退学申请》
明确要求退学,痛斥国内高等教育弊端。
2006年8月,从... 阅读全帖 |
|
w****5 发帖数: 46 | 36
王垠那篇“The polygonal contraction heuristic for rectilinear
Steiner tree construction” 在ASP-DAC 2005会议上灌了个best paper award.
想知道虎肉专职灌水多年,灌出过几篇这种量级的paper? |
|
s******r 发帖数: 5309 | 37 Maryam Mirzakhani, Stanford mathematician and Fields Medal winner, dies
Stanford mathematics professor Maryam Mirzakhani, the first and to-date only
female winner of the Fields Medal since its inception in 1936, died July 15
after a long battle with cancer. Mirzakhani was 40 years old.
BY ANDREW MYERS AND BJORN CAREY
Stanford mathematics professor Maryam Mirzakhani, the first and to-date only
female winner of the Fields Medal since its inception in 1936, died July 15
after a long battle with can... 阅读全帖 |
|
发帖数: 1 | 38 王同学是看人家不顺眼总换。
我是看得差不多换一个,不会认为人家不行, 而是觉得美国博士就那么回事, 也就跟
我们农民种地差不多, 你认真做肯定错不了。
1997年,考入四川大学计算机系97级。
2001年,保送清华大学计算机系软件所硕博连读,主要进行集成电路布线算法的研究。
2003年发表《完全用Linux 工作》、《写给支持和反对<完全用Linux工作>的人们》,
痛斥windows弊端、宣扬linux。
2004年8月,发表网络文摘《完全用linux工作》、《写给支持和反对<完全用Linux工作
>的人们》,痛斥windows弊端、宣扬linux,文章在中国的计算机和linux阵营引起极大
轰动效应,成为水木清华linuxapp版和中国多个linux社区的偶像级人物。
2005年,发表学术论文“The polygonal contraction heuristic for rectilinear
Steiner tree construction” [2] 。
2005年9月22日在水木社区BLOG上发表了《清华梦的粉碎--写给清华大学的退学申请》
明确要求退学,痛斥国内高等教育... 阅读全帖 |
|
c**i 发帖数: 6973 | 39 Do not peek at the answer at the lower right corner, which in the print of
report below is printed upside down. Here is hte question.
http://www.nytimes.com/imagepages/2010/04/15/us/15math_CA0.html
Note:
(a) parallelogram (n): "a quadrilateral with opposite sides parallel and
equal"
* quadrilateral (n): "a polygon of four sides"
(b) bisect (vt): "to divide into two usually equal parts" |
|
P******l 发帖数: 1648 | 40
你提到 启示录7:1
"7:1 此后我看见四位天使站在地的四角,执掌地上四方的风,叫风不吹在地上,海
上和树上。"
圣经讲到地有四角的问题,容易回答。这地的四角的话只出现在以赛亚书十一章十二节
(中文译为四方)及启示录七章一节。这个词在启示录二十章八节译为四方。这种译法更
与希伯来文(KANAPH)及希腊文(GONIA)的意思相合。地理上分成四个象限,以观察者的
位置为原点,是一切测量及航海的标准作法。希腊文GONIA的字义为『角度』,构成一
些英文字如POLYGON, HEXZAGON的字尾。地的四角简单的说就是地的四方。将这个明显
的意思扭曲,说,那是教导人,地是四方形,乃是不可原谅的说法。
有兴趣的是,虽然这并非这些经文的意思,现代大地测量研究,出人意外的已经证
明,地球实在有四个『角』或突出点,使地球面正常的弧线中断。(地球的实际形状并
非精确的球形,而是扁圆的球体,因地球转动的离心力在赤道凸出,在两极扁平。这四
个地球面的突出点的位置如下,以经纬度表示之。注五1.北纬55度,西经10度(近爱尔
兰)2.南纬50度,东经48度(近南非)3.北纬15度,东经140度(近菲... 阅读全帖 |
|
d*********r 发帖数: 11979 | 41 Wal-Mart got scammed into selling PS4 consoles for $90
Customers have used Wal-Mart's price-matching promotional in order to
purchase $400 PlayStation 4 consoles for a fraction of the retail price
using third-party sellers on Amazon.com, CNBC reports.
Earlier this month, the retailer announced it would begin a price-match
promotion with select online retailers including Amazon; However, the
website allows any Amazon user with a registered selling account to create
authentic-looking sales pages.
... 阅读全帖 |
|
o*******p 发帖数: 722 | 42 polygon is ok if you spread the transactions in 60 days. |
|
|
c**j 发帖数: 103 | 44 这个太牛了!big cong!
能问下 数学这方面怎么准备吗?
你那个数学方面的题 大概是 概率的? 几何的? (求点线距离,点在polygon内这
样的)
还是 线代 高数的? 认识个印度人(master)google intern被问了differential
equation.. 数学这方面就是把大学的全都再看看? |
|
c**j 发帖数: 103 | 45 这个太牛了!big cong!
能问下 数学这方面怎么准备吗?
你那个数学方面的题 大概是 概率的? 几何的? (求点线距离,点在polygon内这
样的)
还是 线代 高数的? 认识个印度人(master)google intern被问了differential
equation.. 数学这方面就是把大学的全都再看看? |
|
G******i 发帖数: 5226 | 46 ☆─────────────────────────────────────☆
guangyi ( 光一) 于 (Sat Oct 29 00:10:37 2011, 美东) 提到:
**********************************
M:
phone interview (1 round):
why MS?
biggest challenge
why like coding and algorithm?
what is good code?
your longest code
biggest accomplishment
if you don't want some functions to be modified in java, what to do?
does java allow multiple inheritance?
what does synchronized keyword mean in java?
CEO wants a book, you find it in the system of a nearby bookshop. You ... 阅读全帖 |
|
t********e 发帖数: 1169 | 47 onsite有个job talk,
然后有五六轮聊天面试吧,题目有难的有简单的
记得的问题有
1. Given a set of 10,000 popular search queries every month, find a unique
page on the Amazon website to target for each keyword -- given page types:
detail, browse, search
2. How would you implement a queue with two stacks
3. Given an array of points in 2D, find the subset of the points on the
convex hull. The convex hull is the minimal convex polygon that encloses all
the points.
4. How would you store a your NeuralNetwork structure to a file? |
|
t********e 发帖数: 1169 | 48 onsite有个job talk,
然后有五六轮聊天面试吧,题目有难的有简单的
记得的问题有
1. Given a set of 10,000 popular search queries every month, find a unique
page on the Amazon website to target for each keyword -- given page types:
detail, browse, search
2. How would you implement a queue with two stacks
3. Given an array of points in 2D, find the subset of the points on the
convex hull. The convex hull is the minimal convex polygon that encloses all
the points.
4. How would you store a your NeuralNetwork structure to a file? |
|
|
|