如何使用all_labels_true = tf.reduce_min(tf.cast(correct_prediction), tf.float32), 1)
accuracy2 = tf.reduce_mean(all_labels_true)
获取文件的附加信息?解决这个问题的正确if ((_ref = file.previewElement) != null) {
//_ref.parentNode.removeChild(file.previewElement);
_ref.style.display = "none";
}
是什么?
preg_replace
答案 0 :(得分:1)
要获取任何文件的扩展名,请使用此正则表达式:
.*?\.(.*)$
此regex
可以在preg_replace()
编辑:
即使链接上有解释,我也会在OP的请求中提出相同的说法:
一个。 .*?
懒惰地匹配任何字符(换行符除外)
湾\.
字面匹配字符.
C。 (.*)$
然后在第一个捕获组中捕获到输入结束的所有内容(由$
表示)。