本文分类:news发布日期:2024/11/23 4:16:55
相关文章
C# 泛型使用案例_C# 泛型使用整理
一、系统自带常用的泛型
1.字典,集合
//字典
Dictionary<string, int> dic new Dictionary<string, int>();
//泛型集合
List<int> list new List<int>();
2.泛型委托,输入参数,输出参数
//泛型 委托---输出参…
建站知识
2024/11/23 4:16:54
launcher.py: error: the following arguments are required: --output_dir
记录一个LLaMA-Factroy配置过程。
安装
git clone --depth 1 https://github.com/hiyouga/LLaMA-Factory.git
cd LLaMA-Factory
pip install -e ".[torch,metrics]"训练
CUDA_VISIBLE_DEVICES0 llamafactory-cli train example/train_lora/.yaml按理说配置好文件应…
建站知识
2024/11/4 0:18:03
CSS实现磨砂玻璃效果
引言
最近看到有一种磨砂玻璃背景效果很好看,自己简单制作了一个美杜莎女王小卡片,效果如下:
backdrop-filter: blur(10px);
通过设置背景幕布的模糊程度,结合背景图片,实现磨砂玻璃效果
案例代码
<!DOCTYPE h…
建站知识
2024/11/14 1:49:12