- 博客(11)
- 问答 (4)
- 收藏
- 关注
原创 qemu创建虚拟机时间及鼠标设置
然后在终端输入sendkey ctrl-alt-delete然后进入虚拟机启用ctrl-alt-delete禁止选项即可。
2024-11-08 15:05:26
344
原创 QEMU透传PCIE设备
将服务器上的一个真实NVMe SSD硬盘通过PCIe Passthrough方式透传给该虚拟机,要求在虚拟机里边可以看到并正常读写该NVMe SSD硬盘。
2024-09-30 14:32:05
1383
1
原创 用QEMU启动ARM虚拟机(virt cortex-a55)
它是多个文件通过cpio打包和gzip压缩的文件,是一个cpio格式的内存文件系统。#挂载一些必要的文件系统。指定启动的内存文件系统。
2024-09-30 13:50:36
1364
原创 研究方向三选一选择FPGA/计算机视觉/故障检测
先交代一下背景吧,本人女,目前研一。本科211能源与动力工程,现在在985念研究生,专业交通运输,方向为智慧城市与智能交通()。 目前研一下学期,面临方向选择的问题,老师给出了三个方向:FPGA(做雷达信号方向的)、计算机视觉以及故障检测。 从各方面打听这三个反向有关信息,得到的信息如下: FPGA:老师手里有项目,目前团队有两个同门以及师兄在做这个硬件方面的,老师也是做FPGA的。但是我对于这个有些为难情绪,因为我本科时候学习数电模电以及单片机就倍感吃力,貌似FPGA会比...
2022-03-23 16:32:52
5919
3
原创 Django
Django settings.py:这是一个配置文件,用于配置和管理Django项目的管理运维信息。为应用程序定义各种设置 urls.py:用户看到斜杠时应该看到些什么。URL(uniform resource locator统一资源定位符) wsgi.py:(Web服务器网关接口 Python Web Server Gateway Interface),这个模块的目的是提供一个标准接口,用在django和web服务器构建的应用程序之间 这是我的第一个网址: .
2021-11-09 21:55:25
429
原创 What is neural network?
What is neural network?Neural networks, also known as artificial neural networks (ANNs) or simulated neural networks (SNNs), are a subset of machine learning and are at the heart of deep learning algorithms. Their name and structure are inspired by the
2021-11-09 21:49:33
233
原创 Neural networks
What is neural network?Neural networks, also known as artificial neural networks (ANNs) or simulated neural networks (SNNs), are a subset of machine learning and are at the heart of deep learning algorithms. Their name and structure are inspired by the
2021-11-08 21:57:59
561
原创 机器学习初步
机器学习初步import pandas as pdfrom sklearn.tree import DecisionTreeClassifiermusic_data =pd.read_csv('music.csv')X = music_data.drop(columns=['genre'])y = music_data['genre']model=DecisionTreeClassifier()model.fit(X,y)predictions=model.predict([[2
2021-11-05 21:16:37
915
原创 今天有学习决策树等内容
Chartfrom openpyxl.chart import BarChart,Referenceopenpyxl is a package,chart is a module and BarChart,Reference are classes.最开始的代码好丑import openpyxl as xlfrom openpyxl.chart import BarChart,Referencewb=xl.load_workbook('transactions.xlsx')s
2021-11-05 14:45:47
297
原创 今日学习Module、directories、files以及抓包等内容
modules#定义模块def find_max(numbers): maximum = numbers[0] for number in numbers: if number>maximum: maximum = number return maximum#引用模块儿from utils import find_maxnumbers = [2,5,2,6,8989,473,7,6]maximum=find_max...
2021-11-02 21:17:07
280
空空如也
关于QT信号重载的问题
2022-06-07
研究方向选择(FPGA/计算机视觉/故障检测)
2022-03-23
关于python中pyqt5的安装
2022-03-07
关于python 中的for 循环
2021-12-02
TA创建的收藏夹 TA关注的收藏夹
TA关注的人