Lightweight networks and MobileNet

复杂的网络需要大量的计算资源,如GPU。然而,事实证明在大多数情况下,一个参数数量少得多的模型仍然可以被训练得表现相当好。换句话说,模型复杂性的增加通常会导致模型性能的小幅(非比例)提高。我们在模块的开始阶段训练MNIST数字分类时观察到了这一点。

阅读全文 »

Load data with PyTorch Datasets and DataLoaders

PyTorch provides two data primitives: torch.utils.data.DataLoader and torch.utils.data.Dataset that allow you to use pre-loaded datasets as well as your own data. Dataset stores the samples and their corresponding labels, and DataLoader wraps an iterable around the Dataset to enable easy access to the samples.

阅读全文 »

Introduction

  • An open source machine learning framework
  • A Python package that provides two high-level features:
    • Tensor computation with strong GPU acceleration
    • Deep neural networks built on a tape-based autograd system
阅读全文 »

Maven

Apache 旗下项目管理工具,由纯 Java 语言开发,可以更方便的帮助我们管理和构建 Java 项目

阅读全文 »

Android应用基础

使用语言:Kotlin、Java、C++

Android SDK:将代码连同任何数据和资源文件编译成 APK

阅读全文 »