/images/avatar.png

全新Ubuntu18.04配置DL环境,保姆级教程

获取IP地址 1 2 sudo apt install net-tools ifconfig 安装openssh,这样可以远程ssh连接服务器 1 sudo apt install openssh-server 安装gcc 1 sudo apt install gcc g++ make 安装NVIDIA驱动 在https://www.nvidia.com/Download/index.aspx?lang=cn下载对应型号驱动 1 wget https://cn.download.nvidia.com/XFree86/Linux-x86_64/535.104.05/NVIDIA-Linux-x86_64-535.104.05.run 禁用nouveau 1 2 3 4 5 sudo nano /etc/modprobe.d/blacklist.conf # 最后一行加入 blacklist nouveau sudo update-initramfs -u sudo reboot 检查nouveau是否不在运行 1 2 lsmod | grep nouveau # 没输出代表禁用生效 sudo telinit 3 安装驱动 1 2 sudo chmod a+x NVIDIA-Linux-x86_64-535.104.05.run sudo sh ./NVIDIA-Linux-x86_64-535.104.05.run --no-opengl-files –no-opengl-files 参数必须加否则会循环登录,也就是loop login

[NEWS] A recent project: SkinGPT-4: An Interactive Dermatology Diagnostic System with Visual Large Language Model

We are happy to announce the SkinGPT-4: An Interactive Dermatology Diagnostic System with Visual Large Language Model Skin and subcutaneous diseases rank high among the leading contributors to the global burden of nonfatal diseases, impacting a considerable portion of the population. Nonetheless, the field of dermatology diagnosis faces three significant hurdles. Firstly, there is a shortage of dermatologists accessible to diagnose patients, particularly in rural regions. Secondly, accurately interpreting skin disease images poses a considerable challenge.

chrome 解决在http协议下无法调用摄像头和麦克风的问题

**问题描述:**近期在Gradio开发的时候,发现自己服务器搭建的http无法在Chrome下开启麦克风和摄像头 解决方案: 在浏览器地址栏中输入“chrome://flags/#unsafely-treat-insecure-origin-as-secure”,回车 该选项置为Enabled 在输入框中输入需要访问的地址,多个地址使用“,”隔开 然后点击右下角弹出的Relaunch按钮 重启浏览器之后就可以在添加的http地址下调用摄像头和麦克风了