caffe 15 caffe在ubuntuX64_1604上安装(CPU_ONLY)

2024-01-29 08:10
文章标签 安装 15 cpu caffe 1604 ubuntux64

本文主要是介绍caffe 15 caffe在ubuntuX64_1604上安装(CPU_ONLY),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

01 系统初始化

vmware workstatiion pro 12 不支持GPU硬件虚拟化,所以在这个虚拟机里,不能安装GPU版本。只能使用CPU版本。

# 在vmware workstatiion pro 12安装ubuntu-16.04-desktop-amd64.iso
# 安装vmware-tools
# 调整分辨率,4k屏需要调整下桌面显示比例,否则字体太小
# 更新系统
sudo apt-get -y update && sudo apt-get -y upgrade
# 我的网速比较慢,夜里更新的,第二天又执行了一遍
sudo apt-get -y update && sudo apt-get -y upgrade
# 更新系统后,gcc -v 看一下,版本是5.4.0# 安装vim git,个人经常使用vim,git操作源码必须工具
sudo apt-get install -y vim git# 安装sougou拼音输入法,不是必须的
# 下载搜狗拼音输入法http://pinyin.sogou.com/linux/download.php?f=linux&bit=64
# 保存到 /home/username/Downloads/sogoupinyin_2.1.0.0082_amd64.deb
# 安装 sudo pkdg -i sogoupinyin_2.1.0.0082_amd64.deb
# 安装依赖 sudo apt-get install -f
# 配置搜狗输入法# 制作系统快照,snapshot_install01

02 安装caffe CPU_ONLY依赖库

# 安装caffe必备组件,因为需要编译版本,所以安装的组件基本都是开发版本sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler# 这里并没有指定明确的boost版本
sudo apt-get install --no-install-recommends libboost-all-dev# 基本线性代数子程序库(矩阵、向量计算)
sudo apt-get install libatlas-base-dev# python开发库
sudo apt-get install python-dev# gflags:参数解析;glog:google日志库;lmdb:key-value数据库
sudo apt-get install libgflags-dev libgoogle-glog-dev liblmdb-dev

03 下载代码

git clone https://github.com/bvlc/caffe.git
cd caffe
git tag
git branch -a
# 注意,如果编译最新的rc5,pycaffe可能需要调整代码
git checkout -b myrc4 rc4
git branch -vv

04 编译CPU_ONLY版本

04.01 编辑Makefile.config文件

cp Makefile.config.example Makefile.config

04.02 设置使用CPU模式

# 修改Makefile.config的CPU_ONLY配置项,取消CPU_ONLY前面的注释#符号

04.03 修改Makefile.config的hdf5头文件引用

# 修改Makefile.config
# 在INCLUDE_DIRS后面加上/usr/include/hdf5/serial/
# 否则,找不到hdf5.h
INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial/

04.04 修改Makefile文件hdf5的库文件

# 修改Makefile文件的LIBRARIES中的hdf5_hl hdf5 ==> hdf5_serial_hl hdf5_serial
# LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5
# LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial
# 否则会找不到 hdf5_hl hdf5 库
# /usr/bin/ld: cannot find -lhdf5_hl
# /usr/bin/ld: cannot find -lhdf5

LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial

04.05 编译

make
# 注意,这里不能make install
# 否则,会提示:make: *** No rule to make target 'install'.  Stop. 
# 在这里caffe命令行接口可用,python接口,matlab接口都不可用

05 caffe 命令行接口测试案例(CPU_ONLY)

05.01 mnist数据测试

./data/mnist/get_mnist.sh
tree ./data/mnist/
./examples/mnist/create_mnist.sh***********************************************************
soft@ubuntu:~/caffe$ ls -l examples/mnist/mnist_train_lmdb/
total 60320
-rw-rw-r-- 1 soft soft 61763584 3月  22 12:33 data.mdb
-rw-rw-r-- 1 soft soft     8192 3月  22 12:33 lock.mdb
soft@ubuntu:~/caffe$ ls -l examples/mnist/mnist_test_lmdb/
total 10100
-rw-rw-r-- 1 soft soft 10338304 3月  22 12:33 data.mdb
-rw-rw-r-- 1 soft soft     8192 3月  22 12:33 lock.mdb
***********************************************************# 注释掉 examples/mnist/lenet_solver.prototxt 中 solver_mode: GPU
# # solver_mode: GPU # 注释掉默认使用CPU
# 训练minist数据
./build/tools/caffe train --solver=examples/mnist/lenet_solver.prototxt# 用训练好的模型对数据进行预测
./build/tools/caffe.bin test -model examples/mnist/lenet_train_test.prototxt -weights examples/mnist/lenet_iter_10000.caffemodel -iterations 100

这里写图片描述

05.02 cifar10 数据测试

05.02.01下载测试数据
./data/cifar10/get_cifar10.sh
# 查看下载情况
tree ./data/cifar10/
05.02.02 训练数据
# 生成lmdb数据库
./examples/cifar10/create_cifar10.sh
# 设置CPU训练模式
vim ./examples/cifar10/cifar10_quick_solver.prototxt
# 注释掉默认的GPU模式,solver_mode: GPU
# solver_mode: GPUvim ./examples/cifar10/cifar10_quick_solver_lr1.prototxt
# 注释掉默认的GPU模式,solver_mode: GPU
# solver_mode: GPU
# 训练
./examples/cifar10/train_quick.sh

06 pycaffe接口编译

06.01 安装依赖库

sudo apt-get update
sudo apt-get install python-pip python-dev python-numpy
sudo apt-get install gfortran
sudo pip install pydot graphviz
sudo pip install lmdb

根据caffe\python\requirements.txt内容,安装python接口依赖项。
如果一次安装失败,多试几次。不需翻墙,很可能需要多次尝试。
其中protobuf建议安装2.6.1版本。 如果编译时出现如下错误: 如果有关于protubuf的错误提示,可能是版本不匹配
AttributeError: ‘int’ object has no attribute ‘_values’
或者
ImportError: cannot import name symbol_database
使用 dpkg -l protobuf* 看看相关的版本号
soft@ubuntu:~/caffe$ dpkg -l protobuf*
||/ Name Version Architecture Description
+++-==============-============-============
ii protobuf-compi 2.6.1-1.3 amd64 compiler for protocol buffer defi

可以根据上面的版本号 2.6.1 安装指定的protobuf版本
卸载当前版本protobuf
sudo pip uninstall protobuf
安装指定版本号的protobuf
sudo pip install protobuf=2.6.1

caffe\python\requirements.txt内容:

Cython>=0.19.2
numpy>=1.7.1
scipy>=0.13.2
scikit-image>=0.9.3
matplotlib>=1.3.1
ipython>=3.0.0
h5py>=2.2.0
leveldb>=0.191
networkx>=1.8.1
nose>=1.3.0
pandas>=0.12.0
python-dateutil>=1.4,<2
protobuf>=2.5.0
python-gflags>=2.0
pyyaml>=3.10
Pillow>=2.3.0
six>=1.1.0

安装caffe\python\requirements.txt指定的pycaffe依赖包

sudo pip install cython
sudo pip install numpy
sudo pip install scipy
sudo pip install scikit-image
sudo pip install matplotlib
sudo pip install ipython
sudo pip install h5py
sudo pip install leveldb
sudo pip install networkx
sudo pip install nose
sudo pip install pandas
sudo pip install python-dateutil
# sudo pip install protobuf # 默认3.2,caffe rc4不支持
sudo pip install protobuf==2.6.1
sudo pip install python-gflags
sudo pip install pillow
sudo pip install six

06.02 编译pycaffe

为了支持python自定义层,开启Makefile.config选项 (删除这一行前面的#注释符)

WITH_PYTHON_LAYER := 1

在caffe根目录下运行编译命令:

make clean
make all
make pycaffe

编译成功后,把pycaffe的目录加入ubuntu的环境变量
可以加入3个文件中的一个:~/.bashrc;~/.profile;/etc/profile
本实验加入~/.profile;

sudo vim ~/.profile
export PYTHONPATH=/home/soft/caffe/python:$PYTHONPATH
source ~/.profile # 使加入的内容立即生效

06.03 验证pycaffe接口编译成功

A:python中引用caffe库不报错,如下图:

import caffe;
caffe.set_mode_cpu();

这里写图片描述

B:用caffe的python接口画loss曲线
这里使用spyder python工具。安装spyder。

sudo apt-get install spyder

在caffe根目录下,编辑python文件 /home/soft/caffe/loss.py

import sys,os;
import numpy as np;
import matplotlib.pyplot as plt;#caffe_root='home/soft/caffe/build/';
#sys.path.insert(0, caffe_root+'python');
import caffe;
caffe.set_mode_cpu();
solver = caffe.SGDSolver('examples/mnist/lenet_solver.prototxt');niter = 1000;
test_interval = 200;
train_loss = np.zeros(niter);
test_acc = np.zeros(int(np.ceil(niter / test_interval)));# the main solver loop
for it in range(niter):solver.step(1) # SGD by Caffetrain_loss[it] = solver.net.blobs['loss'].data;solver.test_nets[0].forward(start = 'conv1');if it % test_interval == 0:acc = solver.test_nets[0].blobs['accuracy'].data;print('Iteration', it, 'testing...', 'accuracy:', acc);test_acc[it // test_interval] = acc;_, ax1 = plt.subplots();
ax2 = ax1.twinx();
ax1.plot(np.arange(niter), train_loss);
ax2.plot(test_interval * np.arange(len(test_acc)), test_acc, 'r');
ax1.set_xlabel('iteration');
ax1.set_ylabel('train loss');
ax2.set_ylabel('test accuracy');
plt.show();

运行结果:
这里写图片描述

07 编译matcaffe接口

07.01 安装matlab2016b和配置matlab2016b环境

主要参考如下3个blog,安装和配置matlab2016b
http://www.linuxdiyf.com/linux/27432.html
http://blog.csdn.net/rt5rte54654/article/details/54742981
http://www.cnblogs.com/laiqun/p/6031925.html

# 设置matlab的环境变量是必须的
sudo vim ~/.profile
export PATH=/usr/local/MATLAB/R2016b/bin:$PATHsudo vim /home/soft/caffe/Makefile.config
MATLAB_DIR := /usr/local/MATLAB/R2016b

这里写图片描述

根据http://www.cnblogs.com/laiqun/p/6031925.html
在caffe根目录下下一个启动matlab的脚本/home/soft/caffe/matlab.sh

export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libopencv_highgui.so.2.4:/usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.2.4:/usr/lib/x86_64-linux-gnu/libopencv_core.so.2.4:/usr/lib/x86_64-linux-gnu/libstdc++.so.6:/usr/lib/x86_64-linux-gnu/libfreetype.so.6 matlab

这里写图片描述

在caffe目录下,运行 ./matlab.sh,即可启动matlab2016b。

本次实验,matlab2016b安装在 /usr/local/MATLAB/R2016b/
可以在命令行通过如下语句启动matlab2016测试,运行matcaffe接口需要用./matlab.sh启动。

sudo /usr/local/MATLAB/R2016b/bin/matlab

07.02 测试,运行一些可视化测试用例

07.02.01 cifar10 数据可视化

需要前面先下载cifar10的实验数据(./data/cifar10/get_cifar10.sh)
matlab代码:/home/soft/caffe/show_cifar10_data.m

% /home/soft/caffe/show_cifar10_data.m
clear;
clc;
close all;
strings = {'airplane''automobile''bird''cat''deer''dog''frog''horse''ship''truck'
};
image_file_name = 'data/cifar10/data_batch_1.bin';
fid1 = fopen(image_file_name, 'rb');
images_data = fread(fid1, 'uint8');
fclose(fid1);images_data = reshape(images_data, 3073, [])';
image_idx = images_data(:, 1);for k = 1: 100 : size(images_data, 1)figure(100);for t = 1 : 100image_r = reshape(images_data(k + t - 1, 2: 1025), 32, [])';image_g = reshape(images_data(k + t - 1, 1026 : 2049), 32, [])';image_b = reshape(images_data(k + t - 1, 2050 : 3073), 32, [])';image_buffer = cat(3, image_r, image_g, image_b);subplot(10, 10, t);imshow(uint8(image_buffer));title(strings{image_idx(k + t - 1) + 1});endinput('Press Enter to next picture :');pause;
end

运行结果:
这里写图片描述

07.02.02 mnist数据可视化

需要前面先下载mnist的实验数据(./data/mnist/get_mnist.sh)
matlab代码:/home/soft/caffe/show_mnist_data.m

% /home/soft/caffe/show_mnist_data.m
clear;
clc;
close all;image_file_name = '/home/soft/caffe/data/mnist/t10k-images-idx3-ubyte';
index_file_name = '/home/soft/caffe/data/mnist/t10k-labels-idx1-ubyte';fid1 = fopen(image_file_name, 'rb');
fid2 = fopen(index_file_name, 'rb');images_data = fread(fid1, 'uint8');
indexs_data = fread(fid2, 'uint8');fclose(fid1);
fclose(fid2);images_data = images_data(17:end);
indexs_data = indexs_data(9:end);
image_buffer = zeros(28, 28);for k = 1 : 100: length(images_data)/28/28figure(100);for t = 1 : 100image_buffer = reshape(images_data((k + t - 2) * 28 * 28 + 1 : (k + t - 1) * 28 * 28), 28, 28);subplot(10, 10, t);imshow(uint8(image_buffer)');title(num2str(indexs_data(k + t -1)));endpause;
end

运行结果:
这里写图片描述

07.02.03 网络权值可视化

A:Caffenet第一卷积层可视化
matlab代码 /home/soft/caffe/conv_weights_vis.m

% /home/soft/caffe/conv_weights_vis.m
clear;
clc;
close all;
addpath('matlab');
caffe.set_mode_cpu();
caffe.version();
net = caffe.Net('models/bvlc_reference_caffenet/deploy.prototxt', 'models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel', 'test');
net.layer_names
net.blob_names
conv1_layer = net.layer_vec(2);
blob1 = conv1_layer.params(1);
w = blob1.get_data();
size(w)
W = zeros(11*3, 11*96);
for u = 1: 3for v = 1: 96W(11 * ( u - 1) + (1 : 11), 11 * (v - 1) + (1: 11)) = w(:, :, u, v)';end
endW = W - min(min(W));
W = W / (max(max(W))) * 255;
W = uint8(W);
W = [W, zeros(size(W, 1), 4 * 11)];
WW = cat(3, W(1:11, :), W(12:22, :), W(23:33, :));
W = zeros(10 * 12, 10 * 12, 3);
for u = 1: 10for v = 1: 10W((u - 1)*12 + (1:11), (v - 1) * 12 + (1:11), :) = WW(:, (u - 1) * 11 * 10 + (v - 1) * 11 + (1: 11), :);end
end
W = uint8(W);
figure;imshow(W);

运行结果:
这里写图片描述

B CaffeNet 各层权值提取
/home/soft/caffe/visualize_weights.m

% /home/soft/caffe/visualize_weights.m
function [] = visualize_weights(w, s)
h = max(size(w, 1), size(w, 2));  % Kernel size
g = h + s; % Grid size, larger than Kernel size for better visual effects.% Normalization for gray scale
w = w - min(min(min(min(w))));
w = w / max(max(max(max(w)))) * 255;
w = uint8(w);W = zeros(g * size(w, 3), g * size(w, 4));
for u = 1:size(w, 3)for v = 1: size(w, 4)W(g * (u - 1) + (1: h), g * (v - 1) + (1:h)) = w(:, :, u, v)';end
end
W = uint8(W);

/home/soft/caffe/caffenet_weights_vis.m

% /home/soft/caffe/caffenet_weights_vis.m
clear;
clc;
close all;
addpath('matlab');
caffe.set_mode_cpu();
fprintf(['Caffe Version = ', caffe.version(), '\n']);net = caffe.Net('models/bvlc_reference_caffenet/deploy.prototxt', 'models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel', 'test');fprintf('Load net done. Net layers : ');
net.layer_namesfprintf('Net blobs : ');
net.blob_names% Conv1 Weight Visualizetion
conv1_layer = net.layer_vec(2);
blob1 = conv1_layer.params(1);
w1 = blob1.get_data();
fprintf('Conv1 Weight shape: ');
size(w1)
visualize_weights(w1, 1);%Conv2 Weight Visualizetion
conv2_layer = net.layer_vec(6);
blob2 = conv2_layer.params(1);
w2 = blob2.get_data();
fprintf('Conv2 Weight shape: ');
size(w2)
visualize_weights(w2, 1);%Conv3 Weight Visualizetion
conv3_layer = net.layer_vec(10);
blob3 = conv3_layer.params(1);
w3 = blob3.get_data();
fprintf('Conv3 Weight shape: ');
size(w3)
visualize_weights(w3, 1);%Conv3 Weight Visualizetion
conv3_layer = net.layer_vec(10);
blob3 = conv3_layer.params(1);
w3 = blob3.get_data();
fprintf('Conv3 Weight shape: ');
size(w3)
visualize_weights(w3, 1);%Conv4 Weight Visualizetion
conv4_layer = net.layer_vec(10);
blob4 = conv4_layer.params(1);
w4 = blob4.get_data();
fprintf('Conv4 Weight shape: ');
size(w4)
visualize_weights(w4, 1);%Conv5 Weight Visualizetion
conv5_layer = net.layer_vec(14);
blob5 = conv5_layer.params(1);
w5 = blob5.get_data();
fprintf('Conv5 Weight shape: ');
size(w5)
visualize_weights(w5, 1);

这里写图片描述

07.02.04 特征图可视化

根据/home/soft/caffe/models/bvlc_reference_caffenet/readme.md介绍,下载Caffe Model Zoo 中的caffemodel。

cd models/bvlc_reference_caffenet/
wget http://dl.caffe.berkeleyvision.org/bvlc_reference_caffenet.caffemodel

/home/soft/caffe/visualize_feature_maps.m

% /home/soft/caffe/visualize_feature_maps.m
function [] = visualize_feature_maps(w, s)
h = max(size(w, 1), size(w, 2)); % Feature map size
g = h + s;
c = size(w, 3);
cv = ceil(sqrt(c));
W = zeros(g * cv, g * cv);for u = 1: cvfor v = 1: cvtw = zeros(h, h);if (((u - 1) * cv + v) <= c)tw = w(:, :, (u - 1) * cv + v, 1)';tw = tw - min(min(tw));tw = tw / max(max(tw)) * 255;endW(g * (u - 1) + (1: h), g * (v -1) + (1:h)) = tw;end
end
W = uint8(W);
figure;imshow(W);

/home/soft/caffe/fm_visual.m

% /home/soft/caffe/fm_visual.m
clear;
clc;
close all;
% /home/soft/caffe/matlab
mat_fullname = mfilename('fullpath');
i = strfind(mat_fullname,'/');
work_path=mat_fullname(1: i(end));
userpath(work_path);
cd(work_path);
addpath('matlab');caffe.set_mode_cpu();fprintf(['Caffe Version = ', caffe.version(), '\n']);net = caffe.Net('models/bvlc_reference_caffenet/deploy.prototxt', 'models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel', 'test');fprintf('Load net done. Net layers : ');
net.layer_namesfprintf('Net blobs : ');
net.blob_namesfprintf('Now preparing data...\n');
im = imread('examples/images/cat.jpg');
figure;imshow(im);title('Original Image');
d = load('matlab/+caffe/imagenet/ilsvrc_2012_mean.mat');
mean_data = d.mean_data;
IMAGE_DIM = 256;
CROPPED_DIM = 227;% Convert an image returned by Matlab's imread to im_data in caffe's data
% format: W X H X C with BGR channels
im_data = im(:, :, [3, 2, 1]); % permute channels from RGB to BGR
im_data = permute(im_data, [2, 1, 3]); % flip width and height
im_data = single(im_data); % convert from uint8 to single
im_data = imresize(im_data, [IMAGE_DIM IMAGE_DIM], 'bilinear'); % resize im_data
im_data = im_data - mean_data; % subtract mean_data (already in W X H X C, BGR)
im = imresize(im_data, [CROPPED_DIM CROPPED_DIM], 'bilinear'); % resize im_data
km = cat(4, im, im, im, im, im);
pm = cat(4, km, km);
input_data = {pm};scores = net.forward(input_data);scores = scores{1};
scores = mean(scores, 2); % take average scores over 10 crops[~, maxlabel] = max(scores);maxlabel
figure;plot(scores);fm_data = net.blob_vec(1);
dl = fm_data.get_data();
fprintf('Data size = ');
size(dl)
visualize_feature_maps(dl, 1);fm_conv1 = net.blob_vec(2);
f1 = fm_conv1.get_data();
fprintf('Feature map conv1 size = ');
size(f1)
visualize_feature_maps(f1,1);fm_conv2 = net.blob_vec(5);
f2 = fm_conv2.get_data();
fprintf('Feature map conv2 size = ');
size(f2)
visualize_feature_maps(f2,1);fm_conv3 = net.blob_vec(8);
f3 = fm_conv3.get_data();
fprintf('Feature map conv3 size = ');
size(f3)
visualize_feature_maps(f3,1);fm_conv4 = net.blob_vec(9);
f4 = fm_conv4.get_data();
fprintf('Feature map conv4 size = ');
size(f4)
visualize_feature_maps(f4,1);fm_conv5 = net.blob_vec(10);
f5 = fm_conv5.get_data();
fprintf('Feature map conv5 size = ');
size(f5)
visualize_feature_maps(f5,1);

这里写图片描述

这篇关于caffe 15 caffe在ubuntuX64_1604上安装(CPU_ONLY)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/656278

相关文章

Python中win32包的安装及常见用途介绍

《Python中win32包的安装及常见用途介绍》在Windows环境下,PythonWin32模块通常随Python安装包一起安装,:本文主要介绍Python中win32包的安装及常见用途的相关... 目录前言主要组件安装方法常见用途1. 操作Windows注册表2. 操作Windows服务3. 窗口操作

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

MySQL MCP 服务器安装配置最佳实践

《MySQLMCP服务器安装配置最佳实践》本文介绍MySQLMCP服务器的安装配置方法,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下... 目录mysql MCP 服务器安装配置指南简介功能特点安装方法数据库配置使用MCP Inspector进行调试开发指

在Windows上使用qemu安装ubuntu24.04服务器的详细指南

《在Windows上使用qemu安装ubuntu24.04服务器的详细指南》本文介绍了在Windows上使用QEMU安装Ubuntu24.04的全流程:安装QEMU、准备ISO镜像、创建虚拟磁盘、配置... 目录1. 安装QEMU环境2. 准备Ubuntu 24.04镜像3. 启动QEMU安装Ubuntu4

Python UV安装、升级、卸载详细步骤记录

《PythonUV安装、升级、卸载详细步骤记录》:本文主要介绍PythonUV安装、升级、卸载的详细步骤,uv是Astral推出的下一代Python包与项目管理器,主打单一可执行文件、极致性能... 目录安装检查升级设置自动补全卸载UV 命令总结 官方文档详见:https://docs.astral.sh/

Nexus安装和启动的实现教程

《Nexus安装和启动的实现教程》:本文主要介绍Nexus安装和启动的实现教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、Nexus下载二、Nexus安装和启动三、关闭Nexus总结一、Nexus下载官方下载链接:DownloadWindows系统根

Java SWT库详解与安装指南(最新推荐)

《JavaSWT库详解与安装指南(最新推荐)》:本文主要介绍JavaSWT库详解与安装指南,在本章中,我们介绍了如何下载、安装SWTJAR包,并详述了在Eclipse以及命令行环境中配置Java... 目录1. Java SWT类库概述2. SWT与AWT和Swing的区别2.1 历史背景与设计理念2.1.

安装centos8设置基础软件仓库时出错的解决方案

《安装centos8设置基础软件仓库时出错的解决方案》:本文主要介绍安装centos8设置基础软件仓库时出错的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录安装Centos8设置基础软件仓库时出错版本 8版本 8.2.200android4版本 javas

Java进程CPU使用率过高排查步骤详细讲解

《Java进程CPU使用率过高排查步骤详细讲解》:本文主要介绍Java进程CPU使用率过高排查的相关资料,针对Java进程CPU使用率高的问题,我们可以遵循以下步骤进行排查和优化,文中通过代码介绍... 目录前言一、初步定位问题1.1 确认进程状态1.2 确定Java进程ID1.3 快速生成线程堆栈二、分析

Pytorch介绍与安装过程

《Pytorch介绍与安装过程》PyTorch因其直观的设计、卓越的灵活性以及强大的动态计算图功能,迅速在学术界和工业界获得了广泛认可,成为当前深度学习研究和开发的主流工具之一,本文给大家介绍Pyto... 目录1、Pytorch介绍1.1、核心理念1.2、核心组件与功能1.3、适用场景与优势总结1.4、优