码迷,mamicode.com
首页 >  
搜索关键字:r语言笔记 创建图形 pdf png    ( 52086个结果
L2norm 层tensorrt api实现
最近在用tensorrt api实现refinedet,中间过程记录一下。主要参考的如下仓库: https://github.com/wang-xinyu/tensorrtx tensorrt api说明: https://docs.nvidia.com/deeplearning/tensorrt/ ...
分类:Windows程序   时间:2021-02-26 13:12:07    阅读次数:0
xamarin学习--导航参数注意事项
今天跟着微软官方学习xamarin,做到导航切换,死活出不来编辑详情页面,最后发现是自己写导航参数的时候等号前后拼写的时候添加空格导致,真是一不注意就出错。 正确的拼出来是:note?itemid=xxxx 错误的拼出来是:note?itemid = xxx 能够注意到他们的区别了吧:) ...
分类:其他好文   时间:2021-02-26 13:08:57    阅读次数:0
webpack处理静态资源
像项目中字体资源是不需要进行打包处理的,可以直接的通过复制方式给打包到目标目录中 # 安装 npm i -D copy-webpack-plugin # 引入 const CopyPlugin = require('copy-webpack-plugin') # plugins配置 plugins: ...
分类:Web程序   时间:2021-02-26 13:01:39    阅读次数:0
语义分割中的nonlocal[7]- Co-occurrent Features in Semantic Segmentation
https://openaccess.thecvf.com/content_CVPR_2019/papers/Zhang_Co-Occurrent_Features_in_Semantic_Segmentation_CVPR_2019_paper.pdf Co-occurrent Features ...
分类:其他好文   时间:2021-02-25 12:15:25    阅读次数:0
revitAPI-Autodesk.Revit.DB.Plane“Plane不包含两个参数的构造函数”
将Autodesk.Revit.DB.Plane替换成Autodesk.Revit.DB.Plane.CreateByNormalAndOrigin<!--more--> 1将Autodesk.Revit.DB.Plane替换成Autodesk.Revit.DB.Plane.CreateByNorm ...
分类:数据库   时间:2021-02-25 12:15:11    阅读次数:0
怎么在docker中使用nvidia显卡
参考资料: https://blog.csdn.net/qq_33547243/article/details/107433616 https://www.cnblogs.com/shoufu/p/12904832.html https://github.com/NVIDIA/nvidia-dock ...
分类:其他好文   时间:2021-02-25 12:13:14    阅读次数:0
node.js函数
和js类似可以传递函数作为参数也可以用匿名函数 1.传递函数作为参数 2.匿名函数 ...
分类:Web程序   时间:2021-02-25 11:57:39    阅读次数:0
Best PDF Document Viewers for Linux Systems
This article is the continuation of our ongoing series about Linux Top Tools, in this series we will introduce you most famous open source tools for L ...
分类:系统相关   时间:2021-02-24 13:22:40    阅读次数:0
springcloud-Hystrix-服务熔断理论
断路器有3中状态: 1.open:熔断状态。断路器已启动熔断,请求统一拒绝 2.halfOpen:半开状态,此时服务能处理一定量的服务,但是会存在一定的失败率,不会像平时那样正常,但也能处理请求了 3.close:无熔断状态。此时服务正常提供,无需熔断处理。 ...
分类:编程语言   时间:2021-02-24 13:17:46    阅读次数:0
生产者和消费者模型
Object中有两个涉及到了线程的方法: void wait():让当前线程进入等待状态,直到被唤醒;(会释放锁) void notify():唤醒当前正在等待的线程。(只会通知,不会释放锁) 因为Object是所有类的鼻祖,所以每一个对象都拥有wait()和notify()。 生产者和消费者模型 ...
分类:其他好文   时间:2021-02-24 13:12:42    阅读次数:0
52086条   上一页 1 ... 76 77 78 79 80 ... 5209 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!