06 2022 档案

摘要:https://scisharp.github.io/SciSharp/ 阅读全文
posted @ 2022-06-29 14:58 China Soft 阅读(74) 评论(0) 推荐(0) 编辑
摘要:https://files.cnblogs.com/files/chinasoft/tf.js-demo-v2.rar?t=1656483198 <script src = "tf.min.js"> </script> <script> /* 根据身高推测体重 */ //把数据处理成符合模型要求的格 阅读全文
posted @ 2022-06-29 14:14 China Soft 阅读(16) 评论(0) 推荐(0) 编辑
摘要:根据身高推测体重 const $ = require('jquery');const tf = require('@tensorflow/tfjs');const tfvis = require('@tensorflow/tfjs-vis'); /* 根据身高推测体重 */ //把数据处理成符合模型 阅读全文
posted @ 2022-06-29 13:54 China Soft 阅读(223) 评论(0) 推荐(0) 编辑
摘要:所用示例代码托管在:http://www.github.com/dashnowords/blogs 博客园地址:《大史住在大前端》原创博文目录 目录 一. 上手TensorFlow.js 二. 使用TensorFlow.js构建卷积神经网络 卷积神经网络 搭建LeNet-5模型 三. 基于迁移学习的 阅读全文
posted @ 2022-06-29 13:51 China Soft 阅读(526) 评论(0) 推荐(0) 编辑
摘要:TensorFlow基础篇——(二)TensorFlow和keras中参数配置的用法TensorFlow和keras中GPU使用的设置方法一: 在终端显式指定方法二 :在Python代码中指定方法三 :使用深度学习工具提供的 API指定Pytorch中GPU使用的设置tf.ConfigProto的用 阅读全文
posted @ 2022-06-29 00:30 China Soft 阅读(541) 评论(0) 推荐(0) 编辑
摘要:tensorflow中model.fit()用法model.fit()方法用于执行训练过程 model.fit( 训练集的输入特征, 训练集的标签, batch_size, #每一个batch的大小 epochs, #迭代次数 validation_data = (测试集的输入特征,测试集的标签), 阅读全文
posted @ 2022-06-29 00:29 China Soft 阅读(2553) 评论(0) 推荐(0) 编辑
摘要:# 导入time模块import time# 程序开始时间begin_time = time.time()# 这里是需要测量时间的代码块time.sleep(5)# 程序结束时间end_time = time.time()# 运行时间run_time。round()函数取整run_time = ro 阅读全文
posted @ 2022-06-29 00:02 China Soft 阅读(1233) 评论(0) 推荐(0) 编辑
摘要:文章目录1.导入tf.keras2.构建简单模型2.1模型堆叠2.1.1dense :全连接层2.2网络配置3.训练和评估3.1设置训练流程3.2输入Numpy数据3.2.1fit参数详解3.3tf.data输入数据3.3.1构造dataset3.4评估与预测3.5 Sequential模型线性回归 阅读全文
posted @ 2022-06-28 23:48 China Soft 阅读(920) 评论(0) 推荐(0) 编辑
摘要:#import keras #import numpy as np #import matplotlib.pyplot as plt #from keras.models import Sequential #全连接层 #from keras.layers import Dense import n 阅读全文
posted @ 2022-06-28 23:47 China Soft 阅读(38) 评论(0) 推荐(0) 编辑
摘要:https://blog.51cto.com/domi/3044567 问题描述: 安装 tensorfolw-gpu2.1.0 之后调用 显示 GPU False,不能调用GPU 在命令行中 import tensorflow 时显示 “ Could not load dynamic librar 阅读全文
posted @ 2022-06-28 23:36 China Soft 阅读(116) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/linxi4165/article/details/124765941 pip install tensorflow-gpu==2.3.0 --default-timeout=100 -i https://pypi.tuna.tsinghua.edu.cn 阅读全文
posted @ 2022-06-28 23:25 China Soft 阅读(16) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_42250789/article/details/107070520 目录 一、查看是否用了GPU跑代码 二、用GPU跑代码,观察GPU情况 三、设置用GPU跑代码的方法 四、查看/安装cuda、cudnn版本 五、代码一些问题 错误1:No mod 阅读全文
posted @ 2022-06-28 23:18 China Soft 阅读(1042) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/To_be_little/article/details/124438800 目录1、查看GPU的数量2、设置GPU加速3、单GPU模拟多GPU环境1、查看GPU的数量import tensorflow as tf# 查看gpu和cpu的数量gpus = 阅读全文
posted @ 2022-06-28 23:16 China Soft 阅读(546) 评论(0) 推荐(0) 编辑
摘要:x_data = np.random.rand(100) noise = np.random.normal(0,0.01,x_data.shape) y_data = x_data*0.1 + 0.2 + noise plt.scatter(x_data,y_data) plt.show() mod 阅读全文
posted @ 2022-06-28 22:58 China Soft 阅读(35) 评论(0) 推荐(0) 编辑
摘要:30天吃掉那只Tensorflow2How to eat TensorFlow2 in 30 days ? https://jackiexiao.github.io/eat_tensorflow2_in_30_days/chinese/ 《30天吃掉那只TensorFlow2》* 🚀 github 阅读全文
posted @ 2022-06-28 22:01 China Soft 阅读(71) 评论(0) 推荐(0) 编辑
摘要:https://developer.mozilla.org/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox flex 布局的基本概念 Flexible Box 模型,通常被称为 flexbox,是一种一维的布局 阅读全文
posted @ 2022-06-28 12:03 China Soft 阅读(144) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Sabrina_cc/article/details/106039240 一、题目要求1.三个js文件,分别完成:网络训练以及模型保存、模型加载及准确率测试、在线手写数字识别; 2.模型测试准确率要高于99.3%(尽量); 3.在线手写数字识别需要能够通过 阅读全文
posted @ 2022-06-28 10:47 China Soft 阅读(381) 评论(0) 推荐(0) 编辑
摘要:https://www.codeproject.com/Articles/5286497/Starting-with-Keras-NET-in-Csharp-Train-Your-First The article is about a short introduction on how to tr 阅读全文
posted @ 2022-06-22 14:09 China Soft 阅读(49) 评论(0) 推荐(0) 编辑
摘要:https://scisharp.github.io/Keras.NET/ Keras.NET is a high-level neural networks API, written in C# with Python Binding and capable of running on top o 阅读全文
posted @ 2022-06-22 14:00 China Soft 阅读(129) 评论(0) 推荐(0) 编辑
摘要:http://www.gimoo.net/t/1506/557e9cff4b092.html 如果你平时玩转u3d,却没有碰到过一些奇怪的bug,导致u3d无响应,那么你是幸运的。 引起u3d卡死的bug是非常恶心的一件事。首先你无法获得任何引起bug的信息,包括控制台,日志,不会有任何信息。u3d 阅读全文
posted @ 2022-06-21 19:01 China Soft 阅读(1040) 评论(0) 推荐(0) 编辑
摘要:无论是分析程序崩溃原因,还是解决程序hang问题,我们最常查看的就是程序调用堆栈。学会windbg调用堆栈命令,以及理解堆栈中的各个参数的意义就显得至关重要。 上图就是一个典型的Windbg堆栈,如果不理解ChildEBP、RetAddr、Args to Child等参数意义,以及它们之间的来龙去脉 阅读全文
posted @ 2022-06-21 18:53 China Soft 阅读(1388) 评论(0) 推荐(0) 编辑
摘要:https://web.dev/storage-for-the-web/#check https://web.dev/storage-for-the-web/#:~:text=Chrome%20allows%20the%20browser%20to%20use%20up%20to,may%20all 阅读全文
posted @ 2022-06-21 18:00 China Soft 阅读(493) 评论(0) 推荐(0) 编辑
摘要:简单说:同一个域名(含子域名),indexdb最大可用空间为不超过磁盘剩余空间的10%且不大于2GB。(firefox) https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Browser_storage_limits_and 阅读全文
posted @ 2022-06-21 17:43 China Soft 阅读(24) 评论(0) 推荐(0) 编辑
摘要:ICustomTypeDescriptor https://supportcenter.devexpress.com/Ticket/Details/Q586374/propertygridcontrol-for-dynamic-properties https://github.com/DevExp 阅读全文
posted @ 2022-06-21 16:28 China Soft 阅读(32) 评论(0) 推荐(0) 编辑
摘要:http://www.xue51.com/soft/4583.html 阅读全文
posted @ 2022-06-21 14:20 China Soft 阅读(66) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_45256858/article/details/124127093 问题:有序列表无序列表某些不显示问题,具体是有序列表1-6个,无序列表最后两个。(我开始还以为是padding缩进问题)其实只是图片找不到,找到原因就好解决了 解决下载 u 阅读全文
posted @ 2022-06-14 11:04 China Soft 阅读(158) 评论(0) 推荐(0) 编辑
摘要:最全深度学习训练过程可视化工具(附github源码) 本文介绍了多个能将深度学习训练过程进行可视化的工具,帮助大家更好地理解深度学习,非常实用。 深度学习训练过程一直处于黑匣子状态,有很多同学问我具体怎么解释?其实很多还是无法可解释,但是通过可视化,具体可以知道深度学习在训练过程到底学习了哪些特征? 阅读全文
posted @ 2022-06-13 00:37 China Soft 阅读(175) 评论(0) 推荐(0) 编辑
摘要:https://cs.stanford.edu/people/karpathy/convnetjs/demo/classify2d.html https://cbovar.github.io/ConvNetDraw/ 阅读全文
posted @ 2022-06-13 00:06 China Soft 阅读(42) 评论(0) 推荐(0) 编辑
摘要:0. 文章目的: 介绍变体的概念,并介绍其对C#的意义 1. 阅读基础 了解C#进阶语言功能的使用(尤其是泛型、委托、接口) 2. 从示例入手,理解变体 变体这一概念用于描述存在继承关系的类型间的转化,这一概念并非只适用于C#,在许多其他的OOP语言中也都有变体概念。变体一共有三种:协变、逆变与不变 阅读全文
posted @ 2022-06-09 12:23 China Soft 阅读(88) 评论(0) 推荐(0) 编辑
摘要:https://www.desmos.com/?lang=zh-CN 阅读全文
posted @ 2022-06-08 10:37 China Soft 阅读(21) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/font-awesome/fontawesome-tutorial.html 阅读全文
posted @ 2022-06-06 17:38 China Soft 阅读(11) 评论(0) 推荐(0) 编辑
摘要:https://web.chemdoodle.com/ 阅读全文
posted @ 2022-06-06 11:32 China Soft 阅读(79) 评论(0) 推荐(0) 编辑
摘要:添加父元素一、wrap()作用:在每个匹配的元素外层包上一个html元素。语法:1、 .wrap( wrappingElement ) wrappingElement:可以是一个HTML片段,选择表达式,jQuery对象,或者DOM元素,用来包在匹配元素的外层。例: <div class = 'bo 阅读全文
posted @ 2022-06-06 10:38 China Soft 阅读(516) 评论(0) 推荐(0) 编辑
摘要:https://codepen.io/hellohy/pen/QMOyWR <div class="l-container"> <div class="container"> containercontainercontainercontainercontainercontainercontaine 阅读全文
posted @ 2022-06-06 09:23 China Soft 阅读(89) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示