上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
摘要: 一、Dataset基类介绍 在torch中提供了数据集的基类torch.utils.data.Dataset,继承这个基类,可以快速实现对数据的加载 torch.utils.data.Dataset的源码如下: class Dataset(Generic[T_co]): r"""An abstrac 阅读全文
posted @ 2024-02-04 10:55 ziff123 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 假设我们的基础模型是y = wx + b,其中w和b均为参数,我们使用y = 3x + 0.8来构造数据x、y,所以最后通过模型应该能够看得出w和b分别接近3和0.8。 实现过程: 1、准备数据 2、计算预测值 3、计算损失,把参数的梯度置为0,进行反向传播 4、更新参数 代码示例: import 阅读全文
posted @ 2024-02-04 10:00 ziff123 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 新增的 System.Buffers.SearchValues类,可以用来进行字符串的查找和匹配,相比较 string 类型的操作,性能有大幅提升,下面还是用 BenchmarkDotNet 进行测试: BenchmarkRunner.Run<SearchValuesTest>(); Console 阅读全文
posted @ 2024-01-29 10:00 ziff123 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1、在 8 中对随机数类 Random 提供了 GetItems() 方法,可以根据指定的数量在提供的一个集合中随机抽取数据项生成一个新的集合: ReadOnlySpan<string> colors = new[]{"Red","Green","Blue","Black"}; string[] t 阅读全文
posted @ 2024-01-29 09:46 ziff123 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 调用 API 直接获取到对象现在有一个接口返回如下图中的数据: 如果是在 8 以前的版本中获取该接口的数据,需要先获取到接口内容,然后进行反序列化,代码如下 const string RequestUri = "http://localhost:5145/user"; using var clien 阅读全文
posted @ 2024-01-29 09:25 ziff123 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.概要 在.NET8中C#的新增特性,System.ComponentModel.DataAnnotations 命名空间包括用于云原生服务中的验证场景的新数据验证特性。 虽然预先存在的 DataAnnotations 验证程序适用于典型的 UI 数据输入验证(例如窗体上的字段),但新特性旨在验证 阅读全文
posted @ 2024-01-26 13:39 ziff123 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1、创建一个winform程序,安装PdfSharp 1.50.5147 2、添加一个按钮,代码如下 using PdfSharp.Drawing; using PdfSharp.Pdf; using System; using System.IO; using System.Windows.For 阅读全文
posted @ 2024-01-24 15:52 ziff123 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 1、添回操作类文件AppSettings.cs using Microsoft.Extensions.Configuration.Json; namespace YYApi.Helper { /// <summary> /// appsettings.json操作类 /// </summary> p 阅读全文
posted @ 2024-01-19 09:30 ziff123 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 1、创建一个winform项目 2、创建websocket服务端类WebSocket_Service.cs 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using Syste 阅读全文
posted @ 2024-01-17 15:04 ziff123 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 采用rem网页自适应背景也自适应,设置background-size 属性 background-size 属性规定背景图像的尺寸 div { background:url(img_flwr.gif); background-size:1rem 1rem; background-repeat:no- 阅读全文
posted @ 2024-01-17 10:19 ziff123 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页