1. Stable Diffusion WebUI下载最新的代码:https://github.com/AUTOMATIC1111/stable-diffusion-webui
下载完成后, 直接再目录下面执行:python launch.py
这个需要python环境, 要是不会,需要再网上查找对应的教程了
这个项目是 Stable Diffusion 算法的 Web 版,有一个 Web 交互界面,方便运行算法。
要是不会,可以查看下面的视频https://www.bilibili.com/video/BV1q84y1i78L/
2. 模型分享网站训练好的模型,还有一些 prompt 参数https://civitai.com/
选择自己对应的类型模型,然后点击进去就可以下载
下载好后的模型,需要放到工程目录的:models/Stable-diffusion 里除了这种模型可以下载,还能下载 Lora 模型,可以理解为这个是一种画风的小模型,可以配合 Stable Diffusion 模型一起使用,放在 prompt 中
选中这个模型,会自动生成 promp ...
广告术语记录
https://cloud.tencent.com/developer/article/1665733
术语
解释
含义
IPU
人均广告次数
ROI
Return on Investment
投资回报率,简单理解就是净利润与成本的比率
CTR
Click Through Rate
点击通过率,广告在被买家看到后,有多少次点击。衡量互联网广告效果的一项重要指标
CPC
点击成本
CPM
Cost Per Mille
千次展现成本,有1000个用户看到广告后,广告主就要付费,意即广告主投送广告给1000个人所需要的花费(英语中Mille=Thousand)
oCPM
Objective Cost Per Mille
以目标优化为前提的千次展现成本;
eCPM
Estimated Cost Per Mille
预估的千次展现成本
CPI
Cost Per Install
每次安装价值
ROAS
Return On Advertising Spend
广告支出回报率, 衡量数字广告投放效果的营销指标
ARPU
Ave ...
Firebase如何开启实时DEBUGVIEW功能1adb shell setprop debug.firebase.analytics.app com.你的公司名.你的项目ID;
手动下载,通过命令安装下载链接:https://developer.apple.com/download/all/?q=simulator手工安装模拟器的命令
12345678sudo xcode-select -s /Applications/Xcode.appxcodebuild -runFirstLaunch## On Xcode 15 and earlier, you can usexcrun simctl runtime add xxxx_Simulator_Runtime.dmg 其他的使用下面的命令xcodebuild -importPlatform "~/Downloads/Simulator_Runtime.dmg"
1. 常规下载设置设置超时时间,单位为秒。git config –global http.timeout 30除了设置超时时间外,还可以设置缓存区,大型项目去要更多的缓存区, 单位为bytegit config –global http.postBuffer 1048576000设置最低速度限制git config –global http.lowSpeedLimit 0设置速度小于http.lowSpeedLimit后等待的时间,单位为秒。git config –global http.lowSpeedTime 600
2. GitHub大文件上传设置GitHub上传大于100M文件的方法使用命令git lfs track比方说:git lfs track “FirebaseCpp*.so”git lfs track “FirebaseCpp*.bundle”把所有的FirebaseCpp的so和bundle文件使用LFS方式存储这时会在项目的根目录下生成 .gitattributes 记得,这个文件需要上传Git服务
记得一定在add之前标识大文件,否则需要单独处理, 比较麻烦 ...
概述Git是一款强大的分布式版本控制系统,广泛应用于软件开发领域。本文将详细介绍Git一些基础命令,以便更好掌握这款工具。
一、Linux下安装Git
更新系统软件包首先,打开终端,更新系统软件包:12sudo yum updatesudo yum install -y git
验证安装安装完成后,可以通过以下命令验证Git是否安装成功:1git --version
如果返回Git的版本信息,说明安装成功。
二、Git常用操作及命令
配置用户信息 在使用Git之前,需要配置用户信息: 12git config --global user.name "您的名字"git config --global user.email "您的邮箱"
初始化仓库在本地创建一个新仓库:1git init
克隆远程仓库克隆一个远程仓库到本地:1git clone [仓库地址]
添加文件到暂存区将工作区的修改添加到暂存区:1git add [文件名]
提交更改将暂存区的修改提交到仓库:1git commit -m "提交信息"
推送到远程仓库将 ...
程序开发
未读Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
CentOS下面的NodeJS和npm安装123456789101. sudo yum install -y curl2. curl -fsSL https://rpm.nodesource.com/setup_23.x -o nodesource_setup.sh3. sudo bash nodesource_setup.sh4. sudo yum install -y nodejs5. node -v6. sudo yum install -y npm7. npm -V8. npm install -g npm@11.0.0
Unity反编译步骤
下载https://github.com/Perfare/AssetStudio根据自己的机器安装下载对应版本
下载https://github.com/krapnikkk/fgui-restore
导出所有的assets文件
把第二部导出的TextAsset和Texture2D资源导入到一个目录里面
在fgui-unpack目录下面执行 node restore 这个命令举例: E:\MzWork\Git\unity\fgui-unpack>node restore E:\opt\fanby\RichRoll\WLFBY\AIQustion_fui.bytes E:\opt\fanby\output
其他的事情 其他的https://mp.weixin.qq.com/s/tOtbGfy6Tin8MEvcMd9eLQ
MYSQL安装方法:123wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm yum -y install mysql57-community-release-el7-10.noarch.rpm yum -y install mysql-community-server
查看状态和启动:1234567systemctl start mysqld.service systemctl status mysqld.service grep "password" /var/log/mysqld.log 查看默认密码 mysql -uroot -p mysql> set global validate_password_policy=0; mysql> set global validate_password_length=1; mysql> ALTER USER 'root'@'localhost ...