PyTorch: An Imperative Style, High-Performance Deep Learning Library

PyTorch: An Imperative Style, High-Performance Deep Learning Library ✅ 论文题目:PyTorch: An Imperative Style, High-Performance Deep Learning Library 发表时间:2019 年 12 月 摘要 Abstract 深度学习框架通常无法同时兼顾可用性(usabilit...

January 30, 2021 · 9 min · 4234 words

计算图和反向传播(Computational Graphs and Backpropagation)

计算图和反向传播(Computational Graphs and Backpropagation) 学习资料 (0)《深度学习入门——基于 Python 的理论与实践》 我的读书...

January 29, 2021 · 1 min · 200 words

深度学习-卷积神经网络中文综述

深度学习-卷积神经网络中文综述 《解析卷积神经网络——深度学习实践手册》是南京大学博士魏秀参写的一本小册子,给很多初学者提供了很多帮助。 魏秀参...

January 27, 2021 · 10 min · 4751 words

SENet 和它的孪生兄弟 SKNet

SENet 和它的孪生兄弟 SKNet ✅ 论文地址: Squeeze-and-Excitation Networks: https://arxiv.org/pdf/1709.01507.pdf Selective Kernel Networks: https://arxiv.org/pdf/1903.06586.pdf ✅ 论文发表时间(arXiv V1) SENet:2017 年 9 月 5 日 SKNet:2019 年 3 月 15 日 相关...

January 22, 2021 · 7 min · 3471 words

Squeeze-and-Excitation Networks

论文题目 “Squeeze-and-Excitation Networks” ✅ 论文地址:https://arxiv.org/abs/1709.0...

January 12, 2021 · 6 min · 2957 words

十大经典的排序算法

十大经典的排序算法 #ifndef SORT_ALGO_H #define SORT_ALGO_H #include <vector> using std::vector; using std::swap; // 1. Bubble Sort // Time complexity: O(n^2) // Space complexity: O(1) void bubble_sort(vector<int>& nums) { bool sorted = false; for (int i = 0; i < nums.size() && !sorted; ++i) { sorted = true; for (int j = 1; j < nums.size() - i; ++j) { if (nums[j] < nums[j...

December 30, 2020 · 3 min · 1153 words

计算机网络基础(3)

计算机网络复习 OSI (Open Systems Interconnection) 参考模型和 TCP/IP 模型 TCP/IP 四层模型的代表协议: 网络接口层(Link Layer):ARP 协议(IP addr —ARP—>MAC addr) IP 网络层(Int...

December 25, 2020 · 11 min · 5376 words

计算机网络基础(2)

计算机网络基础 第一讲主要介绍了计算机网络的体系结构、性能、安全以及挑战和机遇。并且还讲了中科院在网络方面的相关工作。 互联网不仅仅改变生活与社...

December 18, 2020 · 9 min · 4047 words

最短路径问题 Shortest Path

最短路径问题 Shortest Path 广度优先遍历 最短路径树 Shorted Path Tree 单源最短路径 Single Shorted Path Tree。 无权图的最短路径和带权图的最短路径不同,带权图需要考虑松弛操作(Re...

December 14, 2020 · 2 min · 874 words

Xception: Deep Learning with Depthwise Separable Convolutions

论文题目:Xception: Deep Learning with Depthwise Separable Convolutions ✅ 论文地址:https://arxiv.org/pdf/1610.02357.pdf ✅ 发表时间:20...

December 8, 2020 · 6 min · 2733 words