Leon

May happiness be with you


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Sitemap

  • Search

TensorFlow Audio Classification

Posted on 2018-09-05 | Edited on 2019-11-05 | In Tutorial

此项目源自2018年5月公司的一个实际项目: 检测主播是否在唱歌, 即通过直播间的声音信号判定主播当前时间段是否在唱歌. 该项目已于2018年6月20日上线, 准确率为 ~93%.

在此之前, 我没有语音相关的经验, 不仅如此, 公司内部也没有相关技术储备. 只能凭借经验和 sense 去查找解决方案, 经过 1 星期的调研, 确定了使用深度学习, 并选定 特征提取 + 分类 这种比较传统但成熟的方案. 最后, 我与一个实习生经过一个月的努力, 在 deadline 之前完成上线. 具体地

  • 特征提取 阶段选用 VGGish 网络结构, 这是由 Google 开源并在 YouTube8M 中实际应用的技术;
  • 分类 阶段采用非常简单的结构: 2个全连接层 + 1个Softmax层 , 因为 VGGish 提取的特征(embedding)够紧凑, 包含的信息足够多, 可以应对一个二分类问题(唱歌和非唱歌);

在这篇文章中, 我将介绍关于这个项目涉及的主要问题和解决办法, 以及怎样通过一些技巧将准确率从 70% 提升至 93%. 并以一个公开数据集 UrbanSound 作为例子进行讲解.

开源地址: https://github.com/luuil/tensorflow-audio-classification

Read more »

Useful Plugins for Hexo

Posted on 2018-09-05 | Edited on 2018-09-08 | In Tutorial

Useful plugins for Hexo

  • hexo-deployer-git
  • hexo-generator-json-feed
  • hexo-generator-seo-friendly-sitemap
  • hexo-generator-searchdb
Read more »

Github Pages with Hexo

Posted on 2018-09-04 | Edited on 2018-09-07 | In Tutorial

Hexo 是一个快速、简洁且高效的博客框架.
Hexo 使用 Markdown(或其他渲染引擎)解析文章, 在几秒内, 即可利用靓丽的主题生成静态网页.

简易教程

本章主要介绍在使用 hexo 写文章时最常用的步骤, 如果想查看详细的内容可以查看 原始文档 或 下面的 补充内容.

在开始下面内容之前, 默认您已经安装过Hexo及其相关依赖, 并且已经设置好 Github 仓库.
如果您还没做过上述操作, 请查看 原始文档 或 下面的 补充内容.

  • 创建文章(存放至source/_posts)

    1
    hexo new [layout] "<title>"

    上述命令会按照指定的 layout (layout 即模板, 存放于 scaffolds 文件夹中)生成一个简略的文章.

  • 丰富之前创建的简略文章

  • 发布(可集中放在 deploy.sh 中)

    1
    2
    3
    hexo clean
    hexo generate
    hexo deploy

出现异常时, 可以参考 异常

Read more »

Hello World

Posted on 2018-09-03 | Edited on 2018-09-04

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Read more »
12
Leon Lau

Leon Lau

Plodding wins the race

9 posts
2 categories
16 tags
RSS
© 2019 Leon Lau
Powered by Hexo v3.7.1
|
Theme – NexT.Gemini v6.4.1