Mooc
iracer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
webvtt字幕转srt字幕方法
现在有些网上的Mooc课程(coursera等)提供的字幕为vtt格式,下载后某些播放器(迅雷影音、暴风影音)无法载入,需要将vtt转为srt格式字幕才能在下载的教学视频中使用字幕。本文是字幕转换方法和自己遇到的问题及解决方法。原创 2015-09-27 10:18:49 · 49816 阅读 · 5 评论 -
Arduino接口-week4-Lesson2
This article is the study notes of "Interfacing with the Arduino" week4, lesson 2. It mainly talk about Ethernet Client and Ethernet Server.原创 2016-02-04 09:17:00 · 1204 阅读 · 0 评论 -
Arduino接口-week4-Lesson1
This article is the study notes of "Interfacing with the Arduino" week4, lesson 1. It mainly talk about Arduino Shields, Ethernet Shields and Ethernet Library.原创 2016-02-02 21:49:07 · 1363 阅读 · 0 评论 -
Machine Learning - Linear Regression with Multiple Variables
This article contains linear regression with multiple variables, gradient decent for multiple variables, how to chose features, polynomial regression and normal equation solution for linear regression.原创 2016-02-15 21:47:47 · 1895 阅读 · 0 评论 -
Machine Learning - Linear Regression with One Variable
This article contains learning model representation, cost function and Gradient Descent algorithm to solve linear regression problem.原创 2016-02-13 17:22:49 · 1827 阅读 · 0 评论 -
Machine Learning - An Introduction
This article contains the definition of Machine Learning, Supervised Learning and Unsupervised Learning.原创 2016-02-13 10:07:41 · 2203 阅读 · 0 评论 -
Arduino接口-week3-Lesson2
This article is the study notes of "Interfacing with the Arduino ". It mainly talk about I2C Communication, I2C Transactions and Sending Bits.原创 2016-01-31 10:50:58 · 1044 阅读 · 0 评论 -
Arduino接口-week1-Lesson3
This articles is the study notes of "Interfacing with the Arduino", week 1, lessen 3. It includes: Wiring, Wiring Demo- Pushbutton and Wiring Demo- Potentiometer.原创 2016-01-11 22:11:21 · 984 阅读 · 0 评论 -
Arduino接口-week1-Lesson2
This articles is the study notes of "Interfacing with the Arduino", week 1, lessen 2. It includes: Electrical Components, Diodes, Switches and Potentiometers.原创 2016-01-11 21:49:24 · 1212 阅读 · 0 评论 -
Arduino接口-week1-Lesson1
This articles is the study notes of "Interfacing with the Arduino", week 1, lessen 1. It includes: Electrical Circuits, Electrical Properties and Ohm's Law.原创 2016-01-11 21:20:59 · 1298 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week2-C Programming-Lesson2
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris,Department of Computer Science, University of California, Irvine. This article is the notes of week 2, C Programming, lessen 2.原创 2015-12-06 21:49:23 · 1136 阅读 · 0 评论 -
Arduino接口-week4-Lesson3
This article is the study notes of "Interfacing with the Arduino" week4, lesson 3. It mainly talk about Arduino WiFi Shields.原创 2016-02-04 09:46:14 · 947 阅读 · 0 评论 -
Machine Learning - Regularized Logistic Regression
This article contains some topic about how to implementation logistic regression with regularization to addressing overfitting.原创 2016-02-21 16:14:59 · 1309 阅读 · 0 评论 -
Machine Learning - Solving the Problem of Overfitting: Regularization
This article contains some topic about regularization, including overfitting, and cost function with regularization to addressing overfitting.原创 2016-02-21 13:28:52 · 2471 阅读 · 0 评论 -
Machine Learning - Neural Networks Learning: Backpropagation in Practice
This article is the notes of machine learning week 5, Neural Networks Learning. It contains topic about how to apply Backpropagation algorithm in practice.原创 2016-04-23 21:50:53 · 4330 阅读 · 0 评论 -
Machine Learning - Neural Networks Learning: Cost Function and Backpropagation
This article is the notes of machine learning week 5, Neural Networks Learning. It contains some topic about Cost Function and Backpropagation algorithm of Neural Networks.原创 2016-04-23 20:23:23 · 5109 阅读 · 0 评论 -
Machine Learning - Neural Networks for Multi-class Classification
This series of articles are the study notes of " Machine Learning ", by Prof. Andrew Ng., Stanford University. This article is the notes of week 4. It contains topics about for Neural Networks Multi-class Classification.原创 2016-03-13 19:08:50 · 1405 阅读 · 0 评论 -
Machine Learning - Neural Networks Examples and Intuitions
This articles contains topics about Neural Networks examples and intuitions.原创 2016-03-13 09:38:08 · 2009 阅读 · 0 评论 -
Machine Learning - Neural Networks Representation Part I
This article is about the model representation of Neuron Network. It contains the topics about nonlinear hypotheses, neurons and the brain, model representation.原创 2016-03-12 22:44:33 · 1970 阅读 · 0 评论 -
Machine Learning - Neural Networks Representation Part II
This articles contains topics about forward propagation of Neural Networks, features of Neural Network and other network architectures.原创 2016-03-13 09:07:45 · 1157 阅读 · 0 评论 -
Machine Learning - Gradient Descent in Practice
This article contains some skills in the implementation of Gradient Descent, including feature scaling, mean normalization and choosing learning rate.原创 2016-02-15 23:44:46 · 1889 阅读 · 0 评论 -
Machine Learning - Logistic Regression - Two-class Classification
This article contains some topic about Logistic Regression, including two-class classification, decision boundary and cost function of logistic regression.原创 2016-02-18 11:56:54 · 3634 阅读 · 0 评论 -
Machine Learning - Logistic Regression - Multi-class Classification
This article contains Logistic Regression for Multi-class Classification (one-vs-all classification)原创 2016-02-18 14:41:31 · 3627 阅读 · 0 评论 -
Machine Learning - Regularized Linear Regression
This article contains some topic about how to implementation linear regression with regularization to addressing overfitting.原创 2016-02-21 15:55:03 · 2023 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week3-Arduino Programs-Lesson3
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 3, Arduino Programs, lessen 3.原创 2015-12-06 23:03:06 · 895 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week1-Arduino Environment-Lesson1
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 1, lessen 1.原创 2015-12-04 00:15:35 · 2084 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week1-Arduino Environment-Lesson3
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 1, lessen 3.原创 2015-12-06 17:25:29 · 1156 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week4-Arduino Programs-Lesson2
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 4, lessen 2.原创 2015-12-11 12:06:28 · 1265 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week4-Arduino Programs-Lesson1
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 4, lessen 1.原创 2015-12-10 21:36:41 · 1895 阅读 · 0 评论 -
Arduino 平台与C语言程序设计-week4-Arduino Programs-Lesson3
This series of articles are the study notes of "An Arduino platform and C Programming", by Prof. Harris, Department of Computer Science, University of California, Irvine. This article is the notes of week 4, lessen 3.原创 2015-12-11 12:24:14 · 946 阅读 · 0 评论 -
物联网与嵌入式系统概论-week4-Networking and the Internet-Lesson1: Networking Basics
This articles is the study notes of week 4, Lessen 1: Networking Basics.原创 2015-11-20 22:54:20 · 934 阅读 · 0 评论 -
物联网与嵌入式系统概论-week2-Embedded Systems-Lesson1: Features and Constraints
This article is the study notes of week 2, Lessen 1: Features and Constraints of Embedded Systems.原创 2015-11-13 22:57:51 · 1807 阅读 · 0 评论 -
物联网与嵌入式系统概论-week2-Embedded Systems-Lesson2: Components of Embedded Systems
This article is the study notes of week 2, Lessen 2: Componentsof Embedded Systems.原创 2015-11-13 23:52:54 · 1308 阅读 · 0 评论 -
物联网与嵌入式系统概论-week4-Networking and the Internet-Lesson3: Network Layers and MANETS
This articles is the study notes of week 4, Lessen 3: Network Layers and MANETS.原创 2015-11-21 09:35:04 · 1026 阅读 · 0 评论 -
物联网与嵌入式系统概论-week4-Networking and the Internet-Lesson2: Internet Protocol
This articles is the study notes of week 4, Lessen 2: Internet Protocols.原创 2015-11-20 23:38:23 · 1228 阅读 · 0 评论 -
物联网与嵌入式系统概论-week1-What Is the IoT- Lesson3: The Importance of the IoT
This article is the study notes of "An Introduction to Programming the Internet of Things", week 1, lessen 1: Definition of the Internet of Things. Lesson 3 The Importance of the Internetof Things (IoT) in Society.原创 2015-11-10 23:05:44 · 1170 阅读 · 0 评论 -
物联网与嵌入式系统概论-week1-What Is the IoT- Lesson2: Trends of the IoT
This article is the study notes of "An Introduction to Programming the Internet of Things", week 1, lessen 1: Definition of the Internet of Things. Lesson 2 Trendsin the Adoption of the Internet of Things (IoT).原创 2015-11-10 22:19:24 · 1185 阅读 · 0 评论 -
物联网与嵌入式系统概论-week3- Hardware and Software-Lesson3: Operating Systems
This seriesis the study notes of week 3, Lessen 3: Operating Systems.原创 2015-11-18 00:15:26 · 902 阅读 · 0 评论 -
物联网与嵌入式系统概论-week3- Hardware and Software-Lesson1: Hardware Components
This article is the study notes of week 3, Lessen 1: Hardware Components.原创 2015-11-17 23:08:05 · 1117 阅读 · 0 评论 -
物联网与嵌入式系统概论-week2-Embedded Systems-Lesson3: Interacting with the Physical World
This article is the study notes of week 2, Lessen 3:Interacting with the Physical World.原创 2015-11-14 00:24:19 · 957 阅读 · 0 评论
分享