原创 uml部署圖

https://blog.csdn.net/u010168160/article/details/19926715

原创 python引用其他py文件中的內容

https://blog.csdn.net/lwgkzl/article/details/81161985

原创 pytorch 調用模型

官方給的預訓練的模型: https://pytorch.org/docs/master/torchvision/models.html

原创 python json 操作以及pickle操作以及csv操作

以utf-8形式進行保存和讀取; import json import io dicts = {"name": "lucy", "sex": "boy"} json_dicts = json.dumps(dicts, indent

原创 python顯示引用的庫的版本

#load packages import sys #access to system parameters https://docs.python.org/3/library/sys.html print("Python ver

原创 在fddb上跑驗證

https://blog.csdn.net/Xingyb14/article/details/81329833

原创 python郵件發送

import smtplib from email.header import Header from email.mime.text import MIMEText from email.mime.multipart impor

原创 三次握手四次揮手

原文鏈接:https://blog.csdn.net/qq_38950316/article/details/81087809 https://blog.csdn.net/qq_3895

原创 python3中sort實現自己的cmp函數

from functools import cmp_to_key def cmp(a,b): return a-b nums = [1, 3, 2, 4] nums.sort(key=cmp_to_key(cmp))

原创 保存、加載模型

https://www.jianshu.com/p/aee6a3d72014

原创 論文閱讀

attention is all you need: https://www.wengbi.com/thread_96240_1.html https://blog.csdn.net/jiangpeng59/article/det

原创 pytorch資源列表

https://www.sohu.com/a/164171974_741733

原创 Lstm

https://www.jianshu.com/p/4b4701beba92

原创 python中*和**的用法

https://blog.csdn.net/xiaoqu001/article/details/78823498

原创 pytorch數據集

https://www.cnblogs.com/JeasonIsCoding/p/10168753.html