- 博客(119)
- 资源 (1)
- 问答 (2)
- 收藏
- 关注
原创 [解题报告] 优快云竞赛第23期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/37。
2023-01-15 11:21:35
837
原创 [解题报告] 优快云竞赛第22期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/36。
2023-01-11 20:41:49
653
1
原创 [解题报告] 优快云竞赛第21期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/35。
2023-01-07 17:20:41
618
原创 [解题报告] 优快云竞赛第20期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/34。
2023-01-04 20:52:45
694
原创 [解题报告] 优快云竞赛第18期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/32。
2022-12-28 22:30:22
639
1
原创 [解题报告] 优快云竞赛第17期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/31。
2022-12-27 20:20:21
652
1
原创 [解题报告] 优快云竞赛第15期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/29。
2022-12-17 23:00:22
761
2
原创 [解题报告] 优快云竞赛第14期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/28。
2022-12-15 23:02:30
287
原创 [解题报告] 优快云竞赛第12期
优快云编程竞赛报名地址:https://edu.youkuaiyun.com/contest/detail/25。
2022-12-10 21:31:22
730
原创 [Python开发] 使用 Python 切割图像
使用 Python 来切割图像,分别是按高度和宽度切割成若干张小图像。如高宽分别为 7000 和 1080 的图片 img1.jpg ,按最大高度 1920 从上到下切割成 3 张 1920×10801920 \times 10801920×1080 的图和 1 张 1240×10801240 \times 10801240×1080 的图。而高宽分别为 1920 和 3000 的图片 img2.jpg ,按最大宽度 1080 从左到右切割成 2 张 1920×10801920 \times 10801
2021-04-29 17:10:40
701
原创 文本自动摘要
文本自动摘要(自动文摘)Text Summarization 指自动地从原始文档中提取摘要,摘要是全面准确地反映该文档中心内容的简单连贯的短文。应用学术文献、 会议记录、 电影剧本、学生反馈、软件代码、 直播文字评价指标人工评价时间成本太高,效率太低自动评价给定参考摘要作为标准答案,通过制定一些规则来给生产的摘要打分。ROUGE 系统(Recall-...
2018-06-30 14:11:58
788
原创 [paper] DuReader
DuReader: a Chinese Machine Reading Comprehension Dataset from Real-world ApplicationsPaper: https://arxiv.org/abs/1711.05073Page: http://ai.baidu.com/broad/subordinate?dataset=dureaderCode: htt...
2018-06-30 13:52:10
2311
原创 XPS 15 安装 Windows 10 + Ubuntu 双系统
在 Dell XPS 15 上安装 Windows 10 + Ubuntu 双系统,主要把默认安装的 Windows 修改到 AHCI 模式下。安装环境以下为成功安装的环境:Dell XPS 15默认安装的 Windows 10Ubuntu 16.04安装过程把默认安装的 Windows 修改到 AHCI 模式下在 Windows 下,以安全模式重启...
2018-06-30 13:44:05
3583
3
原创 修改TensorFlow-DeepLab
代码仓库:https://github.com/lijiancheng0614/tensorflow_deeplab修改TensorFlow DeepLab,添加一些方便使用或新的功能。中文使用方法:git clone https://github.com/lijiancheng0614/tensorflow_deeplab deeplabexport PYTHONP...
2018-05-30 00:11:15
1057
原创 使用TensorFlow DeepLab进行语义分割
参考 https://github.com/tensorflow/models/tree/master/research/deeplab使用 TensorFlow DeepLab 进行语义分割准备文件结构这里以 PASCAL VOC 2012 为例,参考官方推荐的文件结构:deeplab/datasets/pascal_voc_seg├── exp│ └─...
2018-05-28 23:27:19
5150
7
原创 [paper] DeepLab-v3+
Encoder-Decoder with Atrous Separable Convolution for Semantic Image SegmentationPaper: https://arxiv.org/abs/1802.02611Blog: https://research.googleblog.com/2018/03/semantic-image-segmentation-wi...
2018-04-20 23:55:52
1337
原创 代码评审 Code Review
介绍几个轻量级代码检查工具,包括代码静态检查,整理代码等。无论是自己一个人写代码,还是与其他人合作写代码,都希望能有一份高质量的代码,以便别人或未来的自己可读、可维护和可扩展。于是往往我们需要代码评审(Code Review)。正式的代码评审已经有不少书籍介绍且与开发环境有关,这里只介绍几个轻量级代码检查工具,方便日常开发过程中提高自己的代码质量。PythonPylint...
2018-04-18 00:08:20
711
原创 句子分类
学习句子分类,使用深度学习的方法对句子数据集进行分类。问题句子分类(Sentence Classification)是指给定一个句子,标注预先设定的若干类别中的一个类别。句子分类包括情感分析(Sentiment Analysis)、问题分类(Question Classification)等任务。情感分析又称倾向性分析、意见抽取(Opinion extraction)、意见挖掘(...
2018-04-14 00:10:00
4074
原创 神经网络权值量化
对神经网络的权值进行量化,使模型大小变小,运行速度变快,且准确率与原来相近。参考 https://www.tensorflow.org/performance/quantization什么是量化把网络权值从高精度转化成低精度(32位浮点数 float32 转化成 8位定点数 int8 或二值化为 1 bit),但模型准确率等指标与原来相近,模型大小变小,运行速度加快。为什么...
2018-03-16 00:32:18
8342
1
原创 神经网络剪枝
对神经网络(主要是CNN)进行剪枝,使模型运行速度变快,大小变小,且准确率与原来相近。如何剪枝移除滤波器参考论文 1,对所有滤波器(filters)计算L1范数,移除值较小的滤波器。优点模型变小,运行速度变快。缺点依然保留部分冗余的连接。普通卷积输入的特征图:xi∈Rni×hi×wixi∈Rni×hi×wix_i \in \mathbb{R}^{...
2018-03-10 23:48:34
4881
原创 神经网络模型压缩与加速
介绍神经网络(主要是CNN)模型压缩与加速的常见方法目标:模型运行速度尽可能快,大小尽可能小,准确率尽可能保持不变模型压缩改变网络结构使用特定结构如 ShuffleNet, MobileNet, Xception, SqueezeNetMobileNet把普通卷积操作分成两部分Depthwise Convolution计算量 DK⋅DK⋅M⋅D...
2018-03-08 00:11:53
5214
原创 修改TensorFlow Object Detection API
代码仓库:https://github.com/lijiancheng0614/tensorflow_object_detection修改TensorFlow Object Detection API,添加一些方便使用或新的功能。
2017-09-30 23:02:28
2882
1
原创 使用TensorFlow在Android上进行物体检测
使用TensorFlow Android Inference Interface在Android上进行图像物体检测不支持Camera2 API的手机也可以物体检测:https://github.com/lijiancheng0614/android-TFDetect
2017-09-26 15:06:25
3049
原创 使用TensorFlow Object Detection API进行图像物体检测
参考 https://github.com/tensorflow/models/tree/master/object_detection使用TensorFlow Object Detection API进行图像物体检测
2017-08-31 22:17:04
18427
2
原创 使用TensorFlow-Slim进行图像分类
参考 https://github.com/tensorflow/models/tree/master/slim使用TensorFlow-Slim进行图像分类准备
2017-08-31 00:00:20
14996
4
原创 [paper] ENet
ENet: A Deep Neural Network Architecture for Real-Time Semantic Segmentation Paper: https://arxiv.org/abs/1606.02147
2017-08-30 00:18:33
5342
1
原创 [paper] ICNet
ICNet for Real-Time Semantic Segmentation on High-Resolution Images Paper: https://arxiv.org/abs/1704.08545
2017-08-29 10:21:10
966
原创 [paper] Simple Does It
(CVPR 2017) Simple Does It: Weakly Supervised Instance and Semantic Segmentation
2017-07-31 00:48:16
1703
原创 [paper] Deeplab-Semi
(ICCV 2015) Weakly- and Semi-Supervised Learning of a Deep Convolutional Network for Semantic Image Segmentation
2017-07-30 00:18:12
866
原创 [paper] BoxSup
(ICCV 2015) BoxSup: Exploiting Bounding Boxes to Supervise Convolutional Networks for Semantic Segmentation
2017-07-26 17:52:59
882
原创 [paper] Co-CNN
(ICCV 2015) Human Parsing with Contextualized Convolutional Neural Network(T-PAMI 2016) Human Parsing with Contextualized Convolutional Neural Network
2017-06-24 22:57:46
1117
原创 [paper] Multiple Human Parsing
Towards Real World Human Parsing: Multiple-Human Parsing in the Wild Paper: https://arxiv.org/pdf/1705.07206.pdf
2017-06-13 20:54:00
1482
原创 [paper] Look Into Person
(CVPR 2017) Look into Person: Self-supervised Structure-sensitive Learning and A New Benchmark for Human ParsingPaper: http://www.linliang.net/files/CVPR17_LIP.pdfProject: http://hcp.sysu.edu.cn/lip/index.php
2017-06-07 23:17:56
4290
原创 [paper] Learning to Remember Rare Events
(ICLR 2017) Learning to Remember Rare Events Paper: https://openreview.net/pdf?id=SJTQLdqlg Code: https://github.com/tensorflow/models/tree/master/learning_to_remember_rare_events
2017-05-26 15:32:58
1641
1
原创 [paper] Hypernetworks
(ICLR 2017) Hypernetworks Paper: https://openreview.net/pdf?id=rkpACe1lx Code: https://github.com/hardmaru/supercell Blog: http://blog.otoro.net/2016/09/28/hyper-networks/
2017-05-25 01:23:58
2331
MongoDB可以作为android service使用吗?
2015-05-21
一篇图像标注论文的实现
2015-04-15
TA创建的收藏夹 TA关注的收藏夹
TA关注的人