本文分类:news发布日期:2025/1/12 3:01:30
相关文章
记录 | mac打开终端时报错:login: /opt/homebrew/bin/zsh: No such file or directory [进程已完成]
mac打开终端时报错:login: /opt/homebrew/bin/zsh: No such file or directory [进程已完成],导致终端没有办法使用的情况
说明 zsh 没有安装或者是安装路径不对
可以看看 /bin 下有没有 zsh,若没有,肯定是有 bash
那就把终端默…
建站知识
2024/12/31 15:17:21
转换 pytorch 格式模型为 caffe格式模型 pth2caffemodel
基于 GitHub xxradon/PytorchToCaffe 源码,修改 example\resnet_pytorch_2_caffe.py 如下
import os
import sys
sys.path.insert(0, .)import torch
from torch.autograd import Variable
from torchvision.models import resnet
import pytorch_to_caffe"&q…
建站知识
2025/1/12 2:46:54
【FPGA】电梯楼层显示(简易)
前言 这是作者室友的项目,本来不管作者事儿的,但是后来听到说是室友去网上找人花了80块买了个劣质的,不仅是从CSDN上抄的,而且使用的板子还不符合室友的要求。可叹作者心软啊,顺便给室友做了。 在代码实现部分会给出设…
建站知识
2025/1/10 15:32:02
[C语言]大小端及整形输出问题
假设在一个32位little endian 的机器上运行下面的程序,结果是多少 ? 1.1先看以下三个程序
#include <stdio.h>
int main()
{long long a 1, b 2, c 3;printf("%lld %lld %lld\n", a, b, c); // 1 2 3printf("%d %d %d %d %d %d\n&quo…
建站知识
2025/1/10 3:40:55
如何将数据库导入MySQL的办法
在电脑cmd终端进行导入
首先找到MySQL中bin的位置
第一步:找到MySQL
第二步:进入MySQL 第三步:打开bin 第四步:输入cmd进入终端 第五步:
输入mysql -uroot -p 然后会弹出enter password:
输入你的密码…
建站知识
2025/1/6 14:56:17
ElasticSearch学习篇8_Lucene之数据存储(Stored Field、DocValue、BKD Tree)
前言
Lucene全文检索主要分为索引、搜索两个过程,对于索引过程就是将文档磁盘存储然后按照指定格式构建索引文件,其中涉及数据存储一些压缩、数据结构设计还是很巧妙的,下面主要记录学习过程中的StoredField、DocValue以及磁盘BKD Tree的一些…
建站知识
2025/1/6 18:53:15
LeetCode第376场周赛
文章目录 1.Find Missing and Repeated Values2.Divide Array Into Arrays With Max Difference3.Minimum Cost to Make Array Equalindromic 1.Find Missing and Repeated Values
直接暴力过
class Solution {
public:vector<int> findMissingAndRepeatedValues(vecto…
建站知识
2025/1/4 7:02:03