这个图损坏了hhh
摘要: 安装ntp服务器 sudo yum install ntp 启动 systemctl start ntpd 开机自启动 systemctl enable ntpd 查看状态 systemctl status ntpd 时钟同步 ntpdate -u ntp.aliyun.com cp /etc/nt 阅读全文
posted @ 2025-09-04 14:16 cstudy 阅读(3) 评论(0) 推荐(0)
摘要: 代码: 点击查看代码 """ Created on Tue Feb 11 15:34:18 2025 blog: https://www.cnblogs.com/cs1study @author: cs1study """ # 3.数据清洗与预处理 from sklearn.datasets imp 阅读全文
posted @ 2025-07-09 21:40 cstudy 阅读(13) 评论(0) 推荐(0)
摘要: 代码: 点击查看代码 # -*- coding: utf-8 -*- """ Created on Tue Feb 11 15:23:33 2025 blog: https://www.cnblogs.com/cs1study @author: cs1study """ # 3.数据清洗与预处理 f 阅读全文
posted @ 2025-07-09 21:40 cstudy 阅读(9) 评论(0) 推荐(0)
摘要: 参考 Pytorch加载自己的数据集(使用DataLoader读取Dataset) 当我复刻这个博主的代码时: 点击查看代码 import torch import numpy as np # 定义GetLoader类,继承Dataset方法,并重写__getitem__()和__len__()方法 阅读全文
posted @ 2025-07-09 21:39 cstudy 阅读(9) 评论(0) 推荐(0)
摘要: 本文用于自己整理学习,如有不对,不吝赐教 void func1() { map<int, int> a; a[0] = 1; cout << a[0] << endl; } void func2() { map<int, int> b; //b.insert(1, 1);//Error: you c 阅读全文
posted @ 2025-01-24 23:08 cstudy 阅读(16) 评论(0) 推荐(0)
摘要: 本文用于自己整理学习,如有不对,不吝赐教 Typora 的颜色设置 目录 前言 字体颜色 字体背景颜色 前言 如果你是没有接触html语法,可以看看下面的说明。(为了更好说明,可能用语不严谨,so, 如果你接触过html语法, 可以跳过,hhh) <p></p>:表示一个段落标记,在中间写字,会显示 阅读全文
posted @ 2024-08-24 23:08 cstudy 阅读(544) 评论(0) 推荐(0)