Parameter 和 ParameterTensor 有什么区别?

What is the difference between Parameter and ParameterTensor?

继CNTK docs(修订日期2016年8月27日)之后,提到创建参数的方式是

x = ParameterTensor {dim}

同样在 Frank Seide 的 specific docs about parameters this is the only mentioned way of doing it. Still, in the first docs mentioned and also on the talk 上,参数构造是通过

完成的
x = Parameter (dim)

这两者有什么区别?后者是否已弃用?

此外,这些 docs 还提到 Parameter 不接受可变数量的参数,因此应将其用作 Parameter(dim,1)。我想这是版本之间的一个重大变化(修订日期是 2016 年 9 月,包含一个参数调用的谈话和示例早了几个月)。

是参数已弃用。请改用 ParameterTensor。也对重大更改感到抱歉。