- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在偏差 + 权重上实现 L1 范数。为此,我尝试将它们连接在一起并取平均值。
也就是说,我有一个偏差 b1
(形状:[1,1]
)和权重 W1
(形状:[ 1, xlen]
).所以我天真地尝试沿着第一维连接:
self.W1 = tf.Variable(tf.truncated_normal([1, self.xlen], stddev=0.1), name="weight")
self.b1 = tf.Variable(tf.constant(0.1, shape=[1, 1]), name="bias")
...
l1_penalty = tf.reduce_mean(tf.abs(tf.concat(1, (self.W1,self.b1) ) ))
但是我得到:
---> 53 l1_penalty = tf.reduce_mean(tf.abs(tf.concat(1, (self.W1,self.b1) ) ))
54
55 tot_loss = l2_loss + self.ALPHA * l1_penalty
/usr/local/lib/python3.4/dist-packages/tensorflow/python/ops/array_ops.py in concat(concat_dim, values, name)
304 # TODO(mrry): Change to return values?
305 if len(values) == 1: # Degenerate case of one tensor.
--> 306 return identity(values[0], name=name)
307 return gen_array_ops._concat(concat_dim=concat_dim,
308 values=values,
/usr/local/lib/python3.4/dist-packages/tensorflow/python/ops/gen_array_ops.py in identity(input, name)
313 A `Tensor`. Has the same type as `input`.
314 """
--> 315 return _op_def_lib.apply_op("Identity", input=input, name=name)
316
317
/usr/local/lib/python3.4/dist-packages/tensorflow/python/ops/op_def_library.py in apply_op(self, op_type_name, g, name, **keywords)
419 values = ops.convert_to_tensor(
420 values, name=input_arg.name, dtype=dtype,
--> 421 as_ref=input_arg.is_ref)
422 except ValueError:
423 # What type does convert_to_tensor think it has?
/usr/local/lib/python3.4/dist-packages/tensorflow/python/framework/ops.py in convert_to_tensor(value, dtype, name, as_ref)
522 for base_type, conversion_func in funcs_at_priority:
523 if isinstance(value, base_type):
--> 524 ret = conversion_func(value, dtype=dtype, name=name, as_ref=as_ref)
525 if not isinstance(ret, Tensor):
526 raise RuntimeError(
/usr/local/lib/python3.4/dist-packages/tensorflow/python/ops/constant_op.py in _constant_tensor_conversion_function(v, dtype, name, as_ref)
176 as_ref=False):
177 _ = as_ref
--> 178 return constant(v, dtype=dtype, name=name)
179
180
/usr/local/lib/python3.4/dist-packages/tensorflow/python/ops/constant_op.py in constant(value, dtype, shape, name)
159 tensor_value = attr_value_pb2.AttrValue()
160 tensor_value.tensor.CopyFrom(
--> 161 tensor_util.make_tensor_proto(value, dtype=dtype, shape=shape))
162 dtype_value = attr_value_pb2.AttrValue(type=tensor_value.tensor.dtype)
163 const_tensor = g.create_op(
/usr/local/lib/python3.4/dist-packages/tensorflow/python/framework/tensor_util.py in make_tensor_proto(values, dtype, shape)
382 if numpy_dtype == dtypes.string and not isinstance(values, np.ndarray):
383 proto_values = _FlattenToStrings(values)
--> 384 tensor_proto.string_val.extend([compat.as_bytes(x) for x in proto_values])
385 return tensor_proto
386
/usr/local/lib/python3.4/dist-packages/tensorflow/python/framework/tensor_util.py in <listcomp>(.0)
382 if numpy_dtype == dtypes.string and not isinstance(values, np.ndarray):
383 proto_values = _FlattenToStrings(values)
--> 384 tensor_proto.string_val.extend([compat.as_bytes(x) for x in proto_values])
385 return tensor_proto
386
/usr/local/lib/python3.4/dist-packages/tensorflow/python/util/compat.py in as_bytes(bytes_or_text)
41 return bytes_or_text
42 else:
---> 43 raise TypeError('Expected binary or unicode string, got %r' % bytes_or_text)
44
45
TypeError: not all arguments converted during string formatting
添加名称参数没有帮助。
作为替代方案,tf.reduce_sum
与我一起工作,但是 tf.concat
有什么问题?
最佳答案
这个问题似乎是由 this line of the tf.concat()
implementation 上的错误引起的.目前——与大多数其他可变 TensorFlow 运算符不同——tf.concat()
仅接受张量的列表,并且不能正确处理元组。如果您将代码更改为以下内容,它应该可以工作:
l1_penalty = tf.reduce_mean(tf.abs(tf.concat(1, [self.W1, self.b1])))
同时,我会修复这个bug并提交到上游,以便在下一个版本中处理。
关于 tensorflow 连接错误 : a cryptic string formatting issue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34533424/
我在运行 GNU Visual Debugger 1.2.6 的 XP 虚拟机上尝试打开 Ada 文件 (.adb),但不断出现以下错误: not in executable format: File
我正在尝试获取 io:format/1 的输出结果。 我知道io_lib中也有类似的函数,io_lib:format/2,但是输出不一样。事实上,它根本没有做任何事情。 如果我尝试绑定(bind) i
我在 documentation 中找不到任何内容, 甚至 BreakBeforeBraces: Allman格式化我已经拆分的单行函数 void foo() { bar(); } 我想要类似的东西
请考虑函数f: open Format let rec f i = match i with | x when x () | i -> pp_open_hovbox std_form
如何在列表中的每三个参数后添加一个回车符(使用 ~%)? 例如,我现在: (format nil "~{~a ~}" (list '"one" '"two" '"three" '"four" '"fi
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 6 年前。 Improve
当我尝试在 Ubuntu 上编译 fprintf(stderr,Usage) 时,我遇到了这个错误: error: format not a string literal and no format
运行 cv2.getRectSubPix(img, (5,5), (0,0)) 抛出错误: OpenCV Error: Unsupported format or combination of for
我正在 cocos2d-x-2.1.4 上开发游戏,但是,当我尝试在 Android 上构建它时,它失败并出现错误:格式不是字符串文字且没有格式参数 [-Werror=format-安全] 在文件 C
运行时: $ clang-format -style=Google -dump-config > .clang-format 文件后附有省略号 (...)。 TabWidth: 8 Us
我想在纯函数中将 double 型转换为字符串。我很困惑为什么这不是纯粹的: wstring fromNumber(double n) pure { import std.format;
Common Lisp 的 format 是否有一个特别容易阅读的实现? 我找到了 SBCL's version ,但由于 SBCL 以 性能 Common Lisp 实现而著称,我想知道是否有一个更
嗨,我正在尝试在 JSP 页面上格式化字符串,它给了我错误,正如我在标题中提到的,我的代码是, String header=""; header = 12-29-2011 15;
clang-format 将我的行拆分为 80 列。有没有办法让停止断线? documentation似乎没有解决这个问题。 最佳答案 负责它的配置选项称为 ColumnLimit .您可以通过将其设
我有一个Angular 11项目,试图集成SpreadJS Designer,但在ngcc步骤Compiling @grapecity/spread-sheets-designer-angular :
我正在使用 clang-format 4.0.0来对齐我的个人项目。 我将以下配置用于 clang-format 。 Language: Cpp BreakBeforeBraces: A
我正在使用- char str[200]; ... sprintf(str,"%s", val) msg(str); sprintf(str, "%s: %s",timestr,"\n recv -"
我有这个 double 值: var value = 52.30298270000003 当我将它转换为 string 时,它失去了它的精度: var str = string.Format("{0}
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
如何使用 clang-format 始终将冒号左对齐。我不希望它被禁用:1234,但禁用:1234。 #pragma warning(disable: 1234) 最佳答案 我猜你需要这个。 Spac
我是一名优秀的程序员,十分优秀!