相关文章
在 Python 中使用 Turtle 绘制 26 个英文字母
以下是使用 turtle 模块在 python 中绘制所有 26 个英文字母的代码,字母大小并不统一,旨在为初学者提供 turtle 的基本使用方法。
# 字母 A
import turtle
tturtle.Turtle()
t.penup()
t.goto(-30,50)
t.pendown()
t.pensize(10)
t.pencolor("blac…
建站知识
2024/10/17 5:16:26
前端(动态雪景背景+动态蝴蝶)
1.CSS样式
<style>html, body, a, div, span, table, tr, td, strong, ul, ol, li, h1, h2, h3, p, input {font-weight: inherit;font-size: inherit;list-style: none;border-spacing: 0;border: 0;border-collapse: collapse;text-decoration: none;padding: 0;margi…
建站知识
2024/11/22 17:13:58
LLaMA-Factory+qwen多轮对话微调
LLaMA-Factory地址:https://github.com/hiyouga/LLaMA-Factory/blob/main/README_zh.md
qwen地址:https://huggingface.co/Qwen/Qwen-7B-Chat/tree/main
训练的时间和效果
7580例对话数据,单卡A6000,显存45GB
{train_runtime:…
建站知识
2024/11/22 16:52:01
(学习日记)2024.04.11:UCOSIII第三十九节:软件定时器
写在前面: 由于时间的不足与学习的碎片化,写博客变得有些奢侈。 但是对于记录学习(忘了以后能快速复习)的渴望一天天变得强烈。 既然如此 不如以天为单位,以时间为顺序,仅仅将博客当做一个知识学习的目录&a…
建站知识
2024/11/23 7:53:55
[环境配置]conda 64位安装32位python
进入32模式
set CONDA_FORCE_32BIT1创建环境
conda create --name yourEnv python3.8退出32模式
set CONDA_FORCE_32BIT0ok
建站知识
2024/11/23 12:07:46