All Projects → yunshuipiao → SWBlog

yunshuipiao / SWBlog

Licence: MIT License
machine learning practitioner, android and python

Projects that are alternatives of or similar to SWBlog

claire
Continuously Learning Artificial Intelligence Rules Engine (Claire) for Smart Homes
Stars: ✭ 18 (-45.45%)
Mutual labels:  machine-learning-algorithms
Upside-Down-Reinforcement-Learning
Upside-Down Reinforcement Learning (⅂ꓤ) implementation in PyTorch. Based on the paper published by Jürgen Schmidhuber.
Stars: ✭ 64 (+93.94%)
Mutual labels:  machine-learning-algorithms
Machine-learning-implement
Teach you how to implement machine learning algorithms
Stars: ✭ 37 (+12.12%)
Mutual labels:  machine-learning-algorithms
spectral-clustering.matlab
An intuitive implementation of spectral clustering on matlab
Stars: ✭ 12 (-63.64%)
Mutual labels:  machine-learning-algorithms
NoML
A notebook for machine learning interview
Stars: ✭ 54 (+63.64%)
Mutual labels:  machine-learning-algorithms
spark-transformers
Spark-Transformers: Library for exporting Apache Spark MLLIB models to use them in any Java application with no other dependencies.
Stars: ✭ 39 (+18.18%)
Mutual labels:  machine-learning-algorithms
ml-from-scratch
All content related to machine learning from my blog
Stars: ✭ 110 (+233.33%)
Mutual labels:  machine-learning-algorithms
Machine-Learning
A repo to explain algorithm in machine learning with CHINESE
Stars: ✭ 24 (-27.27%)
Mutual labels:  machine-learning-algorithms
influence boosting
Supporting code for the paper "Finding Influential Training Samples for Gradient Boosted Decision Trees"
Stars: ✭ 57 (+72.73%)
Mutual labels:  machine-learning-algorithms
Data-Scientist-In-Python
This repository contains notes and projects of Data scientist track from dataquest course work.
Stars: ✭ 23 (-30.3%)
Mutual labels:  machine-learning-algorithms
zoofs
zoofs is a python library for performing feature selection using a variety of nature-inspired wrapper algorithms. The algorithms range from swarm-intelligence to physics-based to Evolutionary. It's easy to use , flexible and powerful tool to reduce your feature size.
Stars: ✭ 142 (+330.3%)
Mutual labels:  machine-learning-algorithms
ML-ProjectKart
🙌Kart of 210+ projects based on machine learning, deep learning, computer vision, natural language processing and all. Show your support by ✨ this repository.
Stars: ✭ 162 (+390.91%)
Mutual labels:  machine-learning-algorithms
oxygenjs
This a JavaScript Library for the Numerical Javascript and Machine Learning
Stars: ✭ 13 (-60.61%)
Mutual labels:  machine-learning-algorithms
mljar-examples
Examples how MLJAR can be used
Stars: ✭ 42 (+27.27%)
Mutual labels:  machine-learning-algorithms
Python-TensorFlow-WebApp
Emerging Technologies Project - 4th Year 2017
Stars: ✭ 16 (-51.52%)
Mutual labels:  machine-learning-algorithms
NeuroEvolution-Flappy-Bird
A comparison between humans, neuroevolution and multilayer perceptrons playing Flapy Bird implemented in Python
Stars: ✭ 17 (-48.48%)
Mutual labels:  machine-learning-algorithms
R-programming-books-for-data-science
No description or website provided.
Stars: ✭ 32 (-3.03%)
Mutual labels:  machine-learning-algorithms
neptune-examples
Examples of using Neptune to keep track of your experiments (maintenance only).
Stars: ✭ 22 (-33.33%)
Mutual labels:  machine-learning-algorithms
genie
Genie: A Fast and Robust Hierarchical Clustering Algorithm (this R package has now been superseded by genieclust)
Stars: ✭ 21 (-36.36%)
Mutual labels:  machine-learning-algorithms
Fake-News-Detection-Project
Fake News Detection Final Year College Project with Project Report, PPT, Code, Research Paper and Documents.
Stars: ✭ 16 (-51.52%)
Mutual labels:  machine-learning-algorithms

SWBOLG

GitHub forks GitHub forks GitHub forks

有所思有所悟,个人的技术博客

关于用Issue写博客的说明

经过研究,打算将所有博客移动到相关仓库的Issue, 包括新增博客;不仅如此,以后所有仓库都会按照该方法作为参考来记录。

对于我来说,用Issue来写博客有以下优点:

  1. label 的支持:看到相关 label 就知道该文章属于哪一类
  2. markdown 语法的支持
  3. 图片的插入
  4. 自带的评论系统,方便交流
  5. 可以配合 Project 来管理博客

除一般的 label 外,还会有以下 label 进行扩展:

  1. AMA: ask me anything, 提出问题
  2. TODO, DOING: 表示一个问题,一篇文章,一个特性的进度

文章目录

machine learning 资料推荐

目前学习相关知识所看过的书籍,资料,视频,下面我认为相对较好的机器学习入门路径,仅供参考。
(说明:推荐资料全英文,也强烈建议看英文材料。好处在于 看的慢,思考的多,留下的多)

  1. Hands-On Machine Learning with Scikit-Learn and TensorFlow
    大多数人以机器学习实战,西瓜书和统计学习方法作为入门材料,前一本书重工程,后两本重理论及推导,可以作为进阶书。而 Hands-On Machine Learning with Scikit-Learn and TensorFlow 的优势在于书籍比较新,且有github配套的源代码实现,书中涉及传统的机器学习方法及其sklearn实现。
    学习建议:先看一遍书,接着对照着github代码实现一遍,最后再看一遍书。  
    官方代码实现:python2
    我的实现:python3, 部分中文注释,更适合, 提供pdf下载,仅供学习

  2. 在阅读上述书籍的过程中,对某个传统机器学习算法感兴趣,可以参考上面的机器学习博客自己实现。

  3. A Neural Network in 11 lines of Python (Part 1)
    上述书籍最后大半内容是关于神经网络的了解和使用,tf实现。而这篇博客对我了解反向传播算法,实现最简单的神经网络有很大的帮助。   其后续文章介绍梯度下降,dropout防止过拟合,非常值得阅读。

  4. Neural Networks and Deep Learning   后续可以加深对神经网络的了解和深入。这本书的第三章使用74行代码,不借助任何深度学习框架实现神经网络识别手写数字,有了第3步的基础,相信理解不难。
    反向传播可视化和链式求导     该连接下有几个深度学习介绍的视频,在阅读书籍的过程中可以随时观看视频,对理解反向传播及链式求导有可视化的讲解。    

  5. kaggle项目实战
    此时可以将学到的知识用于解决实际问题, kaggle是最合适的地方。
    我完成了三个入门题目,分别是titanic, house price, digit recognizer
    官方有合适的入门解决方案,可以参考官方或者加入自己的解决方法,完成自己的结果提交,查看排名。
    我的实现:https://github.com/yunshuipiao/sw-kaggle

上述过程也是我自己学习的过程,其中吴恩达:机器学习的视频也可利用空闲时间观看,上述资料我看过大部分,因此认为比较适合作为入门资料推荐。

其他资料博客:

  1. reddit:learnmachinelearning
    reddit机器学习板块,有很多初学者面临的问题及其解答,还有高质量的文章推荐。

  2. cs229:machine learning   上述吴恩达机器学习课程的讲义, 相比视频,对原理和推导更加深入。

  3. 最后我的github:https://github.com/yunshuipiao
    此部分内容会保持更新,阅读晚比较好的资料也会更新补充(强调:阅读完)

也欢迎各位同学推荐自己阅读完的资料。

Android

函数式编程(FP)

algorithm

python + scrapy

docker

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].