发布时间:2021-05-13 17:17:00
简单神经网络构造import tensorflow as tfimport matplotlib.pyplot as pltimport numpy as nptf.set_random_seed(1)np.random.seed(1)# fake datax = np.linspace(-1, 1, 100)[:, np.newaxis] # shape (100, 1)noise = np.rando.........【阅读全文】
发布时间:2021-05-12 16:47:12
# -*- coding:utf-8 -*-from requests import getfrom filetype import guessfrom os import renamefrom os import makedirsfrom os.path import existsfrom json import loadsfrom contextlib import closing# 文件下载器def Down_load(file_url, file_full_name, now_photo_count,.........【阅读全文】
发布时间:2021-05-11 16:29:20
# -*- coding: utf-8 -*-'''作者 : 丁毅开发时间 : 2021/5/9 16:30'''import cv2import numpy as np# 图像细化def VThin(image, array): rows, cols = image.shape NEXT = 1 for i in range(rows):.........【阅读全文】
发布时间:2021-05-10 17:21:22
模型推理运行命令: python inference.py#-*-coding:utf-8-*-import osimport argparseimport torchimport torch.nn as nnimport numpy as npimport timeimport datetimeimport osimport mathfrom datetime import datetimeimport cv2import torch.nn.functiona.........【阅读全文】
发布时间:2021-05-07 16:42:50
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</.........【阅读全文】