摘要: git常见操作 git log filename 查看提交记录 git log -p filename 可以显示每次提交的diff 查看某次提交中的某个文件变化,可以直接加上fileName git show c5e69804bbd9725b5dece57f8cbece4a96b9f80b file 阅读全文
posted @ 2019-08-22 17:49 jiftle 阅读(414) 评论(0) 推荐(0)
摘要: 四象限法则 三、处理四象限事务的法则1、第一象限:立即去做2、第二象限:有计划的去做1)对第二象限的事务进行目标描述和任务分解3、第三象限:交给别人去做,用“猴子法则”走出第三象限大部分人发现时间不够的主要原因是将太多不属于自己的工作揽在自己身上。,另一方面可以应用与在团队协作时不要让工作进度停留在 阅读全文
posted @ 2019-06-14 09:54 jiftle 阅读(578) 评论(0) 推荐(1)
摘要: vim常用技巧 忠告, 如果有插件的需求,使用neovim替换vim 常用命令 格式转换 查看文件格式 :set ff (支持两种格式 unix, dos) 文件格式转为linux :set ff=unix 常用 删除空行 :g/^$/d 删除空行 删除windows换行符 :%s/\r//g 删除 阅读全文
posted @ 2017-04-01 12:54 jiftle 阅读(892) 评论(5) 推荐(0)
摘要: Documentation Index Fetch the complete documentation index at: https://docs.ollama.com/llms.txt Use this file to discover all available pages before e 阅读全文
posted @ 2026-03-19 15:43 jiftle 阅读(6) 评论(0) 推荐(0)
摘要: 树莓派pico播放小星星,无源蜂鸣器 from machine import Pin, PWM import time # 配置区域 BUZZER_PIN = 15 # 蜂鸣器连接的 GPIO 引脚 (建议 GP15) VOLUME = 20000 # 音量 (0-65535), 建议 40000 阅读全文
posted @ 2026-03-06 23:34 jiftle 阅读(5) 评论(0) 推荐(0)
摘要: from machine import Pin, PWM import utime # 定义音调频率 tones = {'1': 262, '2': 294, '3': 330, '4': 349, '5': 392, '6': 440, '7': 494, '-': 0} # 定义小星星旋律 me 阅读全文
posted @ 2026-02-17 23:34 jiftle 阅读(3) 评论(0) 推荐(0)
摘要: """ Micropython (Raspberry Pi Pico) Plays music written on onlinesequencer.net through a passive piezo buzzer. Uses fast arpeggios with a single buzze 阅读全文
posted @ 2026-02-17 23:33 jiftle 阅读(4) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*- # 版本:V2.0 # author: zhulin # 硬件: # 1. Pico + Esp8285开发板 # 2. LED灯 2个 # 3. DS18B20温度传感器 1个 # 4. 1602液晶LC 阅读全文
posted @ 2026-02-17 23:27 jiftle 阅读(10) 评论(0) 推荐(0)
摘要: import torch import torch.nn as nn import torch.nn.functional as F import math class PositionalEncoding(nn.Module): """位置编码:为输入序列添加位置信息""" def __init_ 阅读全文
posted @ 2026-01-29 11:52 jiftle 阅读(6) 评论(0) 推荐(0)
摘要: 原文:https://blog.eimoon.com/p/transformers-attention-is-all-you-need/ 引言:Transformer 如何重塑 AI 格局 在短短几年内,Transformer 架构彻底重塑了人工智能 (AI) 的技术版图。由 Vaswani 等人在 阅读全文
posted @ 2026-01-28 15:06 jiftle 阅读(48) 评论(0) 推荐(0)
摘要: 原文:https://developer.aliyun.com/article/1635093 作为一名机器学习爱好者,我深知在自然语言处理(NLP)领域,Transformer模型的重要性。自从2017年Google的研究团队提出Transformer以来,它迅速成为NLP领域的主流模型,广泛应用 阅读全文
posted @ 2026-01-28 15:02 jiftle 阅读(20) 评论(0) 推荐(0)
摘要: ![图片](https://img2024.cnblogs.com/blog/137928/202601/137928-20260111160459500-1364334423.png) 阅读全文
posted @ 2026-01-11 16:05 jiftle 阅读(8) 评论(0) 推荐(0)
摘要: module ftsdemo go 1.23.6 require ( github.com/blevesearch/bleve/v2 v2.5.7 github.com/gogf/gf v1.16.9 ) require ( github.com/BurntSushi/toml v0.3.1 // 阅读全文
posted @ 2026-01-09 18:38 jiftle 阅读(9) 评论(0) 推荐(0)