本文分类:news发布日期:2025/5/9 12:44:12
相关文章
笔记64:Bahdanau 注意力
本地笔记地址:D:\work_file\(4)DeepLearning_Learning\03_个人笔记\3.循环神经网络\第10章:动手学深度学习~注意力机制
a
a
a a
a
a
a a
a
a
a
建站知识
2025/4/23 21:17:25
面试--各种场景问题总结
1.在开发过程中,你是如何保证机票系统的正常运行的? 用户、测试、监控和日志、安全措施、数据备份、系统设计、需求分析 2.在机票系统开发过程中,你最有成就的事情,为什么? 用户体验感、高可用和稳定性、客户满意度、系…
建站知识
2025/5/9 12:06:27
postgres在docker中使用
记录个人开发过程中postgres在docker中的使用,以便后续查看。
Dockerfile
个人是在M1电脑上开发,所以platform使用linux/amd64来兼容amd芯片。
FROM --platformlinux/amd64 postgres:16.1-alpine
COPY ./poetrydb.sql /docker-entrypoint-initdb.d/po…
建站知识
2025/4/29 3:30:06
进行主从复制时出现的异常FATAL CONFIG FILE ERROR (Redis 6.2.6)Reading the configuration file
错误如下所示: FATAL CONFIG FILE ERROR (Redis 6.2.6)
Reading the configuration file, at line 1
>>> include/myredis/redis.conf
Bad directive or wrong number of arguments出现错误的原因是.conf文件中命令之间缺少空格,如下所示&…
建站知识
2025/5/1 21:32:06
[进程控制]模拟实现命令行解释器shell
文章目录 1.字符串切割函数2.chdir()接口3.模拟实现shell 1.字符串切割函数 2.chdir()接口 3.模拟实现shell
模拟实现的shell下删除: ctrlbackspace模拟实现下table/上下左右箭头无法使用[demo]
#include <stdio.h>
#include <stdlib.h>
#include <string.h&g…
建站知识
2025/5/4 21:35:44