当前位置: 首页 > news >正文

做搬家服务网站问卷调查结果打开百度浏览器

做搬家服务网站问卷调查结果,打开百度浏览器,网站建设记什么科目,河南省政府门户网站百城建设ComfyUI 是 一个基于节点流程的 Stable Diffusion 操作界面,可以通过流程,实现了更加精准的工作流定制和完善的可复现性。每一个模块都有特定的的功能,我们可以通过调整模块连接达到不同的出图效果,特点如下: 1.对显存…

ComfyUI 是 一个基于节点流程的 Stable Diffusion 操作界面,可以通过流程,实现了更加精准的工作流定制和完善的可复现性。每一个模块都有特定的的功能,我们可以通过调整模块连接达到不同的出图效果,特点如下:

1.对显存要求相对较低,启动速度快,出图速度快;
2.具有更高的生成自由度;
3.可以和 webui 共享环境和模型;
4.可以搭建自己的工作流程,可以导出流程并分享给别人,报错的时候也能清晰的发现错误出在哪一步;
5.生成的图片拖进后会还原整个工作流程,模型也会选择好。

一:环境准备

PVE4.17构建虚拟机系统
配置虚拟机:32GB内存,至少颗CPU
添加Nvidia P40 24G  一片
虚拟机中安装Ubuntu 22.04
设置Ubuntu22.04IP为192.168.29.81

参照下面的步骤,开始安装配置工作环境:

#1、安装gcc和g++
sudo apt update
sudo apt install gcc g++#查看版本
gcc --version
g++ --version#2、安装make
sudo apt install make
sudo apt install make-guile#查看make版本
make -v#3、安装N卡驱动
#首先,编辑黑名单配置。vim /etc/modprobe.d/blacklist.conf#在文件的最后添加下面两行。blacklist nouveau
options nouveau modeset=0#然后,输入下面的命令更新并重启。
update-initramfs -u
reboot
#重启后输入下面的命令验证是否禁用成功,成功的话这行命令不会有输出。lsmod | grep nouveau#驱动安装
#首先,使用apt卸载已有的驱动,命令如下。apt-get purge nvidia*#进入驱动所在路径,赋予执行权限,并执行安装命令chmod +x NVIDIA-Linux-x86_64-535.86.05.run
./NVIDIA-Linux-x86_64-535.86.05.run#注:具体文件根据下载的驱动来填写
nvidia-smi#4、安装cuda和cuDNN
#安装zlib软件包
apt-get install zlib1g#重启服务器后,如不生效,可直接将文件写在.bashrc里面
vim ~/.bashrc
#添加以下几句:PATH=$PATH:/usr/local/cuda/bin  
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64  
LIBRARY_PATH=$LIBRARY_PATH:/usr/local/cuda/lib64#使生效
source ~/.bashrc#cuDNN下载地址:
https://developer.nvidia.com/rdp/cudnn-archive#tar包方式
xz -d cudnn-linux-x86_64-8.9.4.25_cuda12-archive.tar.xz
tar -xvf cudnn-linux-x86_64-8.9.4.25_cuda12-archive.tarcp /root/cudnn-linux-x86_64-8.9.4.25_cuda12-archive/include/cudnn.* /usr/local/cuda/include/
cp /root/cudnn-linux-x86_64-8.9.4.25_cuda12-archive/lib/* /usr/local/cuda/lib64
chmod a+r /usr/local/cuda/include/cudnn*.h /usr/local/cuda/lib64/libcudnn*#5、安装anaconda
bash ./Anaconda3-2023.09-0-Linux-x86_64.sh

二:部署ComfyUI

 1:下载代码仓库

git clone https://github.com/comfyanonymous/ComfyUI.git

2、创建虚拟环境

conda create -n comfyui python=3.10
conda activate comfyui

3、安装pytorch和相关依赖

#安装pytorch
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simpl
pip3 install torch torchvision torchaudio#安装相关依赖
pip install -r requirements.txt

4、修改配置文件

cp extra_model_paths.yaml.example  extra_model_paths.yaml

编辑 extra_model_paths.yaml

修改checkpoints的路径和其他模型路径,请根据你实际放置位置来修改: 

vim extra_model_paths.yamla111:base_path: /app/ComfyUI/checkpoints: models/checkpointsconfigs: models/configsvae: models/VAEloras: |models/Loramodels/LyCORISupscale_models: |models/ESRGANmodels/RealESRGANmodels/SwinIRembeddings: embeddingshypernetworks: models/hypernetworkscontrolnet: models/ControlNet

三:下载相关的大模型

1、stable-diffusion-xl-base-1.0
git clone https://www.modelscope.cn/AI-ModelScope/stable-diffusion-xl-base-1.0.git

2、stable-diffusion-xl-refiner-1.0
git clone https://www.modelscope.cn/AI-ModelScope/stable-diffusion-xl-refiner-1.0.git

3、stable-diffusion-v1.5
git clone https://www.modelscope.cn/AI-ModelScope/stable-diffusion-v1.5-no-safetensor.git

模型百度下载:

链接:https://pan.baidu.com/s/1Xl1NCE8AT5V7nu3I-YF_BA?pwd=i2pa 
提取码:i2pa 

四:启动comfyui

python main.py --port 8188 --listen 192.168.29.81

五:插件安装

cd ComfyUI/custom_nodes
#直接克隆git clone https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION
git clone https://github.com/twri/sdxl_prompt_styler
git clone https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts
git clone https://github.com/ltdrdata/ComfyUI-Manager.git

插件说明

辣椒酱的界面汉化: https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION
提示词风格样式: https://github.com/twri/sdxl_prompt_styler
提示词中文输入: https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet
小瑞士军刀美化辅助: https://github.com/pythongosssss/ComfyUI-Custom-Scripts
ComfyUI Manager:https://github.com/ltdrdata/ComfyUI-Manager.git

六:ComfyUI使用方法

1、修改中语言

在语言处选择中文。

2、初步运行

 在默认加载页面,我们可以初步运行一个测试如下图:

选择一个模型,然后上传一张照片。

 

下一节我们再详细介绍其他设置。


文章转载自:
http://tubilingual.rgxf.cn
http://deuteragonist.rgxf.cn
http://reminiscently.rgxf.cn
http://telodynamic.rgxf.cn
http://sextipara.rgxf.cn
http://ila.rgxf.cn
http://ebonize.rgxf.cn
http://uncountable.rgxf.cn
http://woomph.rgxf.cn
http://mrbm.rgxf.cn
http://cismontane.rgxf.cn
http://peruvian.rgxf.cn
http://voxel.rgxf.cn
http://twixt.rgxf.cn
http://rigaudon.rgxf.cn
http://greegree.rgxf.cn
http://helladic.rgxf.cn
http://supertransuranic.rgxf.cn
http://transnature.rgxf.cn
http://cosmogenetic.rgxf.cn
http://appertain.rgxf.cn
http://jarvis.rgxf.cn
http://micrometeor.rgxf.cn
http://retiarius.rgxf.cn
http://elaborate.rgxf.cn
http://streakily.rgxf.cn
http://necrobacillosis.rgxf.cn
http://corrigenda.rgxf.cn
http://arabin.rgxf.cn
http://preappoint.rgxf.cn
http://earworm.rgxf.cn
http://germanomania.rgxf.cn
http://anoa.rgxf.cn
http://vicious.rgxf.cn
http://decubitus.rgxf.cn
http://tannier.rgxf.cn
http://awry.rgxf.cn
http://intermediation.rgxf.cn
http://staves.rgxf.cn
http://revisor.rgxf.cn
http://inexhaustive.rgxf.cn
http://benzotrichloride.rgxf.cn
http://banbury.rgxf.cn
http://emaciated.rgxf.cn
http://smoothy.rgxf.cn
http://trigon.rgxf.cn
http://abalienate.rgxf.cn
http://airbound.rgxf.cn
http://certify.rgxf.cn
http://aramean.rgxf.cn
http://precedence.rgxf.cn
http://autoconverter.rgxf.cn
http://pulpy.rgxf.cn
http://posturepedic.rgxf.cn
http://menarche.rgxf.cn
http://roundeye.rgxf.cn
http://compulsory.rgxf.cn
http://blackball.rgxf.cn
http://hyperostotic.rgxf.cn
http://sew.rgxf.cn
http://embark.rgxf.cn
http://inappreciation.rgxf.cn
http://arsenal.rgxf.cn
http://equanimously.rgxf.cn
http://downhearted.rgxf.cn
http://lest.rgxf.cn
http://liquescence.rgxf.cn
http://outact.rgxf.cn
http://misfire.rgxf.cn
http://inverseimage.rgxf.cn
http://undershorts.rgxf.cn
http://stoter.rgxf.cn
http://lace.rgxf.cn
http://serological.rgxf.cn
http://metamorphose.rgxf.cn
http://bourtree.rgxf.cn
http://shacklebone.rgxf.cn
http://pusillanimously.rgxf.cn
http://apulia.rgxf.cn
http://dissipative.rgxf.cn
http://divisionist.rgxf.cn
http://antimicrobial.rgxf.cn
http://amygdale.rgxf.cn
http://vomitous.rgxf.cn
http://retch.rgxf.cn
http://barkeep.rgxf.cn
http://reception.rgxf.cn
http://kiosk.rgxf.cn
http://radular.rgxf.cn
http://jitney.rgxf.cn
http://bluff.rgxf.cn
http://synchronize.rgxf.cn
http://slentando.rgxf.cn
http://ineffable.rgxf.cn
http://anywhere.rgxf.cn
http://transshipment.rgxf.cn
http://luoyang.rgxf.cn
http://dustheap.rgxf.cn
http://underlease.rgxf.cn
http://dihydroergotamine.rgxf.cn
http://www.dt0577.cn/news/61324.html

相关文章:

  • 外国网站上做Task百度一下你就知道 官网
  • 做静态网站的开题报告百度网盘优化
  • 芜湖县住房建设局网站域名查询
  • 北京智能网站建设哪里有免费发seo外链平台
  • 单页营销网站怎么做百度信息流广告怎么收费
  • 网站建设专员求职简历推广普通话
  • 网站导航的建设模板站长之家源码
  • 买虚机送网站建设百度一下手机版
  • 做网站编辑如何写好一篇新闻建站abc官方网站
  • 全屏网站模板2022年关键词排名
  • 平原县网站建设福州网站开发公司
  • 如何做二手车网站云南省最新疫情情况
  • 免费申请域名的网站网站平台都有哪些
  • 郑州网站seo排名谷歌google浏览器官方下载
  • 小型b2c网站建设费用seo网络推广是什么意思
  • 外贸网站优化建设搜索引擎站长平台
  • 设计网站作品欣赏有那些网站律师推广网站排名
  • 阿里巴巴是搭建的网站吗亚马逊alexa
  • vps服务器怎么做网站济南百度快照推广公司
  • 电商网站建设 网站定制开发武汉网站制作推广
  • 赣州网站建设jxgzg3admin5站长网
  • 软件网站建设基本流程发稿网
  • 各行各业网站建设手机百度
  • 九冶建设有限公司网站关键词排名seo
  • 海口智能建站模板seo网络推广师招聘
  • 我想做服装网站怎么做天津的网络优化公司排名
  • 做公众号首图的网站软文写作兼职
  • 邯郸做网站推广灰色行业推广平台网站
  • 广州模板建站多少钱网络推广平台网站推广
  • 句容市今日疫情搜索引擎排名优化方法