The experimental environment configuration in the paper

Thesis view various version configurations

write on top

The experimental environment configuration in the paper
insert image description here

operating system

cat /proc/version

insert image description here
Ubuntu 22.04

Development language

Enter the conda environment

conda activate wyt_1.10
python -V

insert image description here
Python 3.8.0

frame

Enter the python environment

python

input the command

import torch
print(torch.__version__)  #注意是双下划线

insert image description here
Pytorch 1.10.0 + with 111

CPU

cat /proc/cpuinfo

insert image description here
Or check the model directly

cat /proc/cpuinfo | grep 'model name' |uniq

insert image description here

Intel Xeon Gold 6138

GPU

lspci | grep -i vga

insert image description here

GeForce RTX 3090

Memory

#cat /proc/meminfo | grep MemTotal

insert image description here
MemTotal: 230724860 kB //Memory 220G
MemTotal: 32941268 kB //Memory 32G

Guess you like

Origin blog.csdn.net/wtyuong/article/details/130051913