avatar
c*x
1
https://secure.unitedmileageplus.com/MP1101OPTM.jsp
Transfer miles between your United Mileage Plus and Continental OnePass
accounts to redeem for awards.
Next year, United Mileage Plus® and Continental OnePass® will be
combined into a single program. Until then, we've created this process to
make it easy for you to transfer your award miles between Mileage Plus and
OnePass.
Here are a few important things to remember:
*
You can transfer miles only once per day, in 1,000-mile increments
with a limit of 200,000 miles per transfer.
*
You can transfer miles only between accounts in your name.
*
If you change your mind, you can wait 24 hours and move the miles back
into their original account.
*
Transferring miles won't affect your elite status in either program.
*
Transferring miles does not consolidate your accounts.
You can also leave your miles in both accounts. Your accounts will not be
combined until the end of 2011.
avatar
g*u
2
注意时2016圣诞
一半圣诞 休息室24,25 把
我看了下 2016 圣诞 24,25 正好是 周六和周日
这个情况一般是 休息22,23 还是 26,27 呢?
avatar
c*k
3
T410s是耳机/麦克风两用接口,我有个带麦克的耳机,但是两个接头,是不是只插耳机
的接头到T410s,然后实际上用T410s屏幕上端的麦克通话啊?这样我耳机的麦克根本没
用上,看来也无法用上,对吗?谢谢指点。
avatar
w*g
4
学习了一晚上,总结一下
- slim似乎已经完蛋了。
- 现在high-level API是tf.layers。
- 但是tf.layers和tf.contrib.framework.arg_scope不兼容,所以还是得用tf.
contrib.layers。
- batch_norm在multiple gpu上似乎没有一个干净的解决方案。
- tf.variable_scope可以设default initializer,
但是用不用这个initializer看各个layer实现的喜好。比如,conv2d的weights和bias
是不服从这个默认值的。batch_norm的moving_mean和beta不服从,但是batch_norm的
moving_variance服从。这些东西文档里是没有的,得靠自己理解。
都是些什么乱七八糟的。最近发现官方slim的resnet干不过github上的鸡毛项目。
所以打算自己把常见的几个model撸一遍。然后就发现前面的路好艰难。
avatar
z*e
5
是说只能转400,000吗
avatar
o*r
6
In such situation: 12/23 12/26, so it's a 4-day
weekend.
avatar
g*y
7
.....

【在 c******k 的大作中提到】
: T410s是耳机/麦克风两用接口,我有个带麦克的耳机,但是两个接头,是不是只插耳机
: 的接头到T410s,然后实际上用T410s屏幕上端的麦克通话啊?这样我耳机的麦克根本没
: 用上,看来也无法用上,对吗?谢谢指点。

avatar
w*r
8
前几天刚把一个train.py改成了Multi gpu版本。按tf的教程例子,gpu还是单独算梯度
,然后导到cpu求平均,在appy回去
跨gpu做bn很重要吗?
avatar
a*n
9
per transfer

【在 z**e 的大作中提到】
: 是说只能转400,000吗
avatar
c*k
10
简单点说就是不想用T410s自带的麦克跟喇叭,就是想用自己的那高级的带麦克的耳机
,有办法吗? 再谢

【在 g****y 的大作中提到】
: .....
avatar
w*g
11
我前两天做了同样的事。然后碰到batch_norm就不知道怎么办了。
有人很aggresive,所有的layer之后全加batch_norm。
影响太大。

【在 w*****r 的大作中提到】
: 前几天刚把一个train.py改成了Multi gpu版本。按tf的教程例子,gpu还是单独算梯度
: ,然后导到cpu求平均,在appy回去
: 跨gpu做bn很重要吗?

avatar
i*2
12
这个可要顶阿
avatar
a*e
13
找转接头

【在 c******k 的大作中提到】
: 简单点说就是不想用T410s自带的麦克跟喇叭,就是想用自己的那高级的带麦克的耳机
: ,有办法吗? 再谢

avatar
l*m
14
arg_scope基本上也被抛弃了,太容易有bugs. 还是应该用 tf.layers.
其他frameworks也各自有问题,he kaiming 的最新的一片文章居然用了tf

:学习了一晚上,总结一下
avatar
f*s
15
太好了
普天同庆的好消息啊
avatar
w*g
16
我觉得arg_scope很有用,那怎么办?

:arg_scope基本上也被抛弃了,太容易有bugs. 还是应该用 tf.layers.
avatar
s*r
17
感谢~
刚试了,真的很好使!
avatar
w*r
18
貌似我有重大理解错误啊。。。
我的理解是:同一个layer在不同gpu里面,tf的op的名字是不一样的(不同的name
scope)
,每个gpu里面,你都可以随便加bn,互不影响,只是不能跨gpu罢了。
刚刚穿凿了一下,貌似所有trainable的parameters都要发在cpu上。。。
难道不是这样?

【在 w***g 的大作中提到】
: 我前两天做了同样的事。然后碰到batch_norm就不知道怎么办了。
: 有人很aggresive,所有的layer之后全加batch_norm。
: 影响太大。

avatar
b*s
19
顶阿
avatar
l*m
20
arg_scope还在呀,tf.contrib.layers也在,只是最新的high level API不用arg_
scope了。把自己写的func放在里面更复杂。我以前也用arg_scope, 一个bug撸了两个
月才找到,现在又回到class了。
当然这本质是深学进入软件工程的一个问题,深学没有一个有效的utest的方法, 需要
e2e的验证。小数据集还好,大的如imagenet, 复现一个state of the art, 如果没有
大厂的计算资源,撸一次要几天或星期,几次就绝望了. 网络可能没写对,training
参数,还有data Aug。完全搞对十分不如容易。就像你说的,slim那帮人搞了两年了,
resnet还是训练不好,都是炼金术。

:我觉得arg_scope很有用,那怎么办?
avatar
s*r
21
晕,刚用掉UA的里程
avatar
w*g
22
tf的机制是这样的:一个variable声明到什么设备上,就定在什么设备上了。
然后声明在别的设备上的操作要用这个variable会自动拷过去。
所以多gpu的机制就是
- 在CPU或者第一个GPU上构造网络。所有的参数都会分配到这个设备上。
- 设置variable scope reuse
- 然后在别的设备上构造同样的网络。op会重新命名,但是所有的variable会reuse,
也就是引用第一个设备上的那套参数。
- 所以其实所有可训练参数只有一个版本。更新的时候也只要更新这个版本就行。
- 但是gradient所有的GPU都有自己的版本,需要merge。
batch_norm有moving average和variance。这个不是用gradient训练的。
我也不知道是什么机制。其实把graph打印出来查看可以看到具体情况。

【在 w*****r 的大作中提到】
: 貌似我有重大理解错误啊。。。
: 我的理解是:同一个layer在不同gpu里面,tf的op的名字是不一样的(不同的name
: scope)
: ,每个gpu里面,你都可以随便加bn,互不影响,只是不能跨gpu罢了。
: 刚刚穿凿了一下,貌似所有trainable的parameters都要发在cpu上。。。
: 难道不是这样?

avatar
M*n
23
Which one is better to redeem domestic tickets?
avatar
w*g
24
就是这么回事。那种大数据我根本不敢碰。生命只有一次。

【在 l*******m 的大作中提到】
: arg_scope还在呀,tf.contrib.layers也在,只是最新的high level API不用arg_
: scope了。把自己写的func放在里面更复杂。我以前也用arg_scope, 一个bug撸了两个
: 月才找到,现在又回到class了。
: 当然这本质是深学进入软件工程的一个问题,深学没有一个有效的utest的方法, 需要
: e2e的验证。小数据集还好,大的如imagenet, 复现一个state of the art, 如果没有
: 大厂的计算资源,撸一次要几天或星期,几次就绝望了. 网络可能没写对,training
: 参数,还有data Aug。完全搞对十分不如容易。就像你说的,slim那帮人搞了两年了,
: resnet还是训练不好,都是炼金术。
:
: :我觉得arg_scope很有用,那怎么办?

avatar
m*s
25
I bet CO

【在 M**********n 的大作中提到】
: Which one is better to redeem domestic tickets?
avatar
m*o
26
试一下selu?
https://arxiv.org/pdf/1706.02515
据说秒杀现阶段所有的activation function,连batch norm都变得可有可无。

【在 w***g 的大作中提到】
: tf的机制是这样的:一个variable声明到什么设备上,就定在什么设备上了。
: 然后声明在别的设备上的操作要用这个variable会自动拷过去。
: 所以多gpu的机制就是
: - 在CPU或者第一个GPU上构造网络。所有的参数都会分配到这个设备上。
: - 设置variable scope reuse
: - 然后在别的设备上构造同样的网络。op会重新命名,但是所有的variable会reuse,
: 也就是引用第一个设备上的那套参数。
: - 所以其实所有可训练参数只有一个版本。更新的时候也只要更新这个版本就行。
: - 但是gradient所有的GPU都有自己的版本,需要merge。
: batch_norm有moving average和variance。这个不是用gradient训练的。

avatar
j*e
27
太好了,我的United快过期了,是不是只要随便转进或转出点miles就能又延期了?
avatar
s*V
28
TF我搞了半天也是稀里糊涂,还以为是自己笨,看到大牛也有同感,心里终于平衡了。

bias

【在 w***g 的大作中提到】
: 学习了一晚上,总结一下
: - slim似乎已经完蛋了。
: - 现在high-level API是tf.layers。
: - 但是tf.layers和tf.contrib.framework.arg_scope不兼容,所以还是得用tf.
: contrib.layers。
: - batch_norm在multiple gpu上似乎没有一个干净的解决方案。
: - tf.variable_scope可以设default initializer,
: 但是用不用这个initializer看各个layer实现的喜好。比如,conv2d的weights和bias
: 是不服从这个默认值的。batch_norm的moving_mean和beta不服从,但是batch_norm的
: moving_variance服从。这些东西文档里是没有的,得靠自己理解。

avatar
M*n
29
Do you lose any miles during the transfer? Can I transfer back and forth?
avatar
L*8
30
cool

【在 m****o 的大作中提到】
: 试一下selu?
: https://arxiv.org/pdf/1706.02515
: 据说秒杀现阶段所有的activation function,连batch norm都变得可有可无。

avatar
w*3
31
为啥我登陆一直说密码不对……
avatar
x*u
32
为啥不用keras?

bias

【在 w***g 的大作中提到】
: 学习了一晚上,总结一下
: - slim似乎已经完蛋了。
: - 现在high-level API是tf.layers。
: - 但是tf.layers和tf.contrib.framework.arg_scope不兼容,所以还是得用tf.
: contrib.layers。
: - batch_norm在multiple gpu上似乎没有一个干净的解决方案。
: - tf.variable_scope可以设default initializer,
: 但是用不用这个initializer看各个layer实现的喜好。比如,conv2d的weights和bias
: 是不服从这个默认值的。batch_norm的moving_mean和beta不服从,但是batch_norm的
: moving_variance服从。这些东西文档里是没有的,得靠自己理解。

avatar
w*3
33
发现了
是onepass要输入那个4位的pin……

【在 w******3 的大作中提到】
: 为啥我登陆一直说密码不对……
avatar
w*g
34
但是这个东西没有imagenet或者别的比较有名的
benchmark的分数啊。

【在 L****8 的大作中提到】
: cool
avatar
B*g
35
ding

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
g*u
36
好像tf自己也发展了一些高级函数 和keras类似,并且 keras现在也是tf的了
整体感觉 就是tf的 高级函数了。两者既有融合又有点区别 但是感觉整合为一的样子
比较大

【在 x****u 的大作中提到】
: 为啥不用keras?
:
: bias

avatar
b*d
37
哪里设的4位的pin,总提示我密码错误

【在 w******3 的大作中提到】
: 发现了
: 是onepass要输入那个4位的pin……

avatar
h*c
38
Keras这种东西的意义是啥?费老大劲在别人的API上又包装一层API?
avatar
a*x
39
转了有啥好的?

be
to
and

【在 B*****g 的大作中提到】
: ding
avatar
x*u
40
keras的api变化比底层小就是卖点,现在keras和tf都是G家的了

【在 h**c 的大作中提到】
: Keras这种东西的意义是啥?费老大劲在别人的API上又包装一层API?
avatar
w*0
41
我也是,总说我的united密码不对。。。

【在 b********d 的大作中提到】
: 哪里设的4位的pin,总提示我密码错误
avatar
s*i
42
多谢,刚刚订了两张回国票,爽啊,这下联航那点历程总算派上用场了
包子送上,大伙要订票的赶快

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
B*g
43
I only need united points as DC-Beijing

【在 a***x 的大作中提到】
: 转了有啥好的?
:
: be
: to
: and

avatar
a*x
44
不是通过co也可以定ua的票吗?

【在 B*****g 的大作中提到】
: I only need united points as DC-Beijing
avatar
a*e
45
CO现在卡还可以申吗?
avatar
B*g
47
两边加起来才够

【在 a***x 的大作中提到】
: 不是通过co也可以定ua的票吗?
avatar
a*x
48
你真圡

【在 B*****g 的大作中提到】
: 两边加起来才够
avatar
b*8
49
mark!
avatar
l*x
50

请问是从UA向CO转合适还是反过来合适?
另外,这个CO的卡是American Express卡吗?如果是的话,是不是用来买东西可以延长
warranty?谢谢。

【在 t****d 的大作中提到】
: http://www.continental.com/web/en-US/content/products/chase/con
: 刚看了一下,还有效

avatar
i*m
51
就等着这个呢,太好了~

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
m*c
52
mark之
avatar
l*y
53
赞!提前了~

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
k*a
54
mark
avatar
c*z
55
CO的miles没有 expire日期,united的18个月后就expire了,转成united后不太爽啊

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
a*x
56
94

be
to
and

【在 c**z 的大作中提到】
: CO的miles没有 expire日期,united的18个月后就expire了,转成united后不太爽啊
avatar
D*E
57
UA → CO

【在 l***x 的大作中提到】
:
: 请问是从UA向CO转合适还是反过来合适?
: 另外,这个CO的卡是American Express卡吗?如果是的话,是不是用来买东西可以延长
: warranty?谢谢。

avatar
P*9
58
CO是不是不能用里程定单程机票?
avatar
c*r
59
哈哈,这个真的太及时了。UA里面有19835 miles,还有一个月就过期了,现在正好转
到CO了,co没有过期日期吧?

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
h*u
60
My UA name is "MR ABC", CO name is "ABC", then can't move. 看来得打电话了。
avatar
s*s
61
link不好用啊??

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
a*w
62
大好消息!

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
l*m
63
mark

to
and

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
M*c
64
I prefer to transfer miles from UA to CO.

【在 c*****x 的大作中提到】
: https://secure.unitedmileageplus.com/MP1101OPTM.jsp
: Transfer miles between your United Mileage Plus and Continental OnePass
: accounts to redeem for awards.
: Next year, United Mileage Plus® and Continental OnePass® will be
: combined into a single program. Until then, we've created this process to
: make it easy for you to transfer your award miles between Mileage Plus and
: OnePass.
: Here are a few important things to remember:
: *
: You can transfer miles only once per day, in 1,000-mile increments

avatar
b*n
65
到了明年彻底合并之后呢?

【在 c*******r 的大作中提到】
: 哈哈,这个真的太及时了。UA里面有19835 miles,还有一个月就过期了,现在正好转
: 到CO了,co没有过期日期吧?

avatar
b*n
66
那肯定是你不会用
非常好用
1分钟搞定,不到5分钟里程就显示了

【在 s******s 的大作中提到】
: link不好用啊??
avatar
r*e
67
从co转1000过来就继续18个月啊

【在 c*******r 的大作中提到】
: 哈哈,这个真的太及时了。UA里面有19835 miles,还有一个月就过期了,现在正好转
: 到CO了,co没有过期日期吧?

avatar
t*y
68
问一下大伙,我转怎么老不成功?密码和号码都对阿
avatar
s*s
69
嗯,不知道为什么chrome里面打不开。换成firefox就好了。

【在 b*******n 的大作中提到】
: 那肯定是你不会用
: 非常好用
: 1分钟搞定,不到5分钟里程就显示了

avatar
l*u
70
mark
avatar
k*8
71
mark
avatar
f*a
72
请问最近United有50K的deal吗?
avatar
s*b
73
Sweet. 冲着这个好消息刚刚申请了CO卡,instant approved。希望里程数顺利拿到
avatar
m*2
74
Great! Thanks.
avatar
g*q
75
CO网站没有单程的option?

【在 m*****s 的大作中提到】
: I bet CO
avatar
g*q
76
最后两个都会改成18个月过期的.

【在 c**z 的大作中提到】
: CO的miles没有 expire日期,united的18个月后就expire了,转成united后不太爽啊
avatar
f*y
77
謝謝lz分享訊息, 用chrome試試轉了些過去, 湊夠65000再說:)
avatar
d*7
78
mark
avatar
m*s
79
单程是ua比co唯一有利的一点

【在 g*q 的大作中提到】
: CO网站没有单程的option?
avatar
p*d
80
这个4位的大家怎么弄的?

【在 w******3 的大作中提到】
: 发现了
: 是onepass要输入那个4位的pin……

avatar
y*0
81
re
avatar
c*u
82
mark
avatar
c*7
83
Mark
avatar
c*a
84
mark
avatar
b*z
85
re
avatar
x*a
86
这个要顶
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。