1 Star 0 Fork 0

release/keras-yolo3-detection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 401 Bytes
一键复制 编辑 原始数据 按行查看 历史
wcl1 提交于 2019-01-03 11:43 . update
#!/usr/bin/env python
# -- coding: utf-8 --
"""
Copyright (c) 2018. All rights reserved.
Created by C. L. Wang on 2018/8/2
"""
from keras import backend as K
import tensorflow as tf
sess = K.get_session()
a = K.constant([[2, 4], [1, 2], [5, 6]])
print(a.shape)
b = K.max(a, -1)
print(b.shape)
c = K.cast(0.4 < 0.5, dtype=tf.float32)
print(sess.run(c))
# K.square(raw_true_wh - raw_pred[..., 2:4])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chinaolysongbo/keras-yolo3-detection.git
[email protected]:chinaolysongbo/keras-yolo3-detection.git
chinaolysongbo
keras-yolo3-detection
keras-yolo3-detection
master

搜索帮助