资源简介
将keras的.h5权重文件转换成darknet的weights,需要有模型结构文件
代码片段和文件信息
from keras.models import load_model
import configparser
import io
from collections import defaultdict
from keras.models import Model
import numpy as np
from yolo3.model import yolo_body yolo_loss
from keras.layers import Input Lambda
num_anchors = 9
num_classes = 20
input_shape = (416416)
image_input = Input(shape=(None None 3))
model_body = yolo_body(image_input num_anchors//3 num_classes)
h w = input_shape
y_true = [Input(shape=(h//{0:32 1:16 2:8}[l] w//{0:32 1:16 2:8}[l] \
num_anchors//3 num_classes+5)) for l in range(3)]
def get_anchors(anchors_path):
‘‘‘loads the anchors from a file‘‘‘
with open(anchors_path) as f:
anchors = f.readline()
anchors = [float(x) for x in anchors.split(‘‘)]
return np.array(anchors).reshape(-1 2)
anchors_path = ‘yolo_anchors.txt‘
anchors = get_anchors(anchors_path)
model_loss = Lambda(yolo_loss output_shape=(1) name=‘yolo_loss‘
arguments={‘anchors‘: anchors ‘num_classes‘: num_classes ‘
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-02-01 23:25 h5_to_weight_yolo3-master\
目录 0 2019-02-01 23:20 h5_to_weight_yolo3-master\.idea\
文件 453 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\convert_weight_file.iml
文件 138 2019-02-01 20:08 h5_to_weight_yolo3-master\.idea\encodings.xm
目录 0 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\inspectionProfiles\
文件 809 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\inspectionProfiles\Project_Default.xm
文件 288 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\misc.xm
文件 290 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\modules.xm
文件 180 2018-12-11 14:58 h5_to_weight_yolo3-master\.idea\vcs.xm
文件 9899 2019-02-01 23:20 h5_to_weight_yolo3-master\.idea\workspace.xm
文件 6701 2019-02-01 21:09 h5_to_weight_yolo3-master\check_weight.py
文件 13 2018-12-11 14:58 h5_to_weight_yolo3-master\voc_classes.txt
文件 8336 2018-12-11 14:58 h5_to_weight_yolo3-master\yolo.cfg
目录 0 2019-02-01 21:07 h5_to_weight_yolo3-master\yolo3\
文件 16491 2018-07-31 07:42 h5_to_weight_yolo3-master\yolo3\model.py
文件 3843 2018-07-31 07:42 h5_to_weight_yolo3-master\yolo3\utils.py
目录 0 2019-02-01 21:07 h5_to_weight_yolo3-master\yolo3\__pycache__\
文件 12884 2019-02-01 21:06 h5_to_weight_yolo3-master\yolo3\__pycache__\model.cpython-36.pyc
文件 3860 2019-02-01 21:07 h5_to_weight_yolo3-master\yolo3\__pycache__\utils.cpython-36.pyc
文件 76 2018-07-31 07:42 h5_to_weight_yolo3-master\yolo_anchors.txt
- 上一篇:SIPInspector 模拟发包工具
- 下一篇:微信小程序-大学占座小程序
相关资源
- 李晓峰通信原理.zip
- 图解西门子S71200PLC入门到实践(清晰
- AI拓客商家联盟V2.1.3前端+后端.rar
- echarts大数据领导仓demo.rar
- [C51单片机开发工具Keil.UV4].Keil.C51.V9
- Deep_Learning_2016.pdf
- zw_Classification1.zip
- Griffiths-IntroductiontoElectrodynamics4thEdit
- ParaViewTutorial.pdf
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
评论
共有 条评论