码迷,mamicode.com
首页 >  
搜索关键字:elf hook    ( 5575个结果
Pytorch框架学习---(6)hook函数和CAM类激活图
本节介绍 Pytorch中hook函数,以及CAM算法生成类激活图。 ...
分类:其他好文   时间:2020-07-17 22:02:03    阅读次数:124
tuple 元组
#() 元组 # 元组的索引切片 # t = (1,2,3,5,6,8,9,5,67,2,3,) # print(t) print(type(t)) # <class 'tuple'> print(t[0]) print(t[3]) print(t[:3]) print(t[::3]) # tupl ...
分类:其他好文   时间:2020-07-17 16:13:48    阅读次数:51
可迭代对象、迭代器和生成器
一、可迭代对象(iterable) 我们知道,在Python世界里,一切皆对象。对象根据定义的维度,又可以分为各种不同的类型,比如:文件对象,字符串对象,列表对象。。。等等。 那什么对象才能叫做可迭代对象呢?一句话:“实现了__inter__方法的对象就叫做可迭代对象”,__inter__方法的作用 ...
分类:其他好文   时间:2020-07-16 21:01:21    阅读次数:42
ucore lab1 练习4—bootloader加载ELF格式OS
练习4:分析bootloader加载ELF格式的OS的过程。(要求在报告中写出分析) 通过阅读bootmain.c,了解bootloader如何加载ELF文件。通过分析源代码和通过qemu来运行并调试bootloader&OS。 bootloader如何读取硬盘扇区的? bootloader是如何加 ...
分类:其他好文   时间:2020-07-16 12:30:16    阅读次数:109
nodejs 开发之二 npm install 安装依赖包
1. 执行 npm install , C:\Program Files\nodejs\MyBook>npm installnpm notice created a lockfile as package-lock.json. You should commit this file. npm WAR ...
分类:Web程序   时间:2020-07-16 12:27:14    阅读次数:188
react--useEffect使用
react-hook使用 const [platDic, setPlatDics] = useState(); useEffect(() => { queryPlat().then((re) => { setPlatDics(re.data); }); }, []); useEffect(() => ...
分类:其他好文   时间:2020-07-16 12:25:51    阅读次数:95
2020.7.15 刷
96. 不同的二叉搜索树 自己用dp写的哈哈哈不是很整洁 class Solution { public int numTrees(int n) { int[] res = new int[n + 1]; if(n == 1)return 1; if(n == 2)return 2; res[0] ...
分类:其他好文   时间:2020-07-15 23:10:11    阅读次数:58
4.图像处理库libswscale的sws_getContext(),sws_scale(),avdevice_register_all(),gdigrab简记
原文链接:https://blog.csdn.net/leixiaohua1020/article/details/44305697 FFmpeg中的图像处理(缩放,YUV/RGB格式转换)类库libswsscale的源代码。libswscale是一个主要用于处理图片像素数据的类库。可以完成图片像素 ...
分类:其他好文   时间:2020-07-15 23:03:38    阅读次数:83
linux定时任务cron配置
linux定时任务cron配置
分类:系统相关   时间:2020-07-14 10:39:44    阅读次数:81
674. Longest Continuous Increasing Subsequence
Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). 找最长连续上升子序列 class Solution(object): def f ...
分类:其他好文   时间:2020-07-14 00:26:48    阅读次数:59
5575条   上一页 1 ... 20 21 22 23 24 ... 558 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!