reference: https://docs.microsoft.com/en-us/windows-hardware/drivers/network/overview-of-remote-ndis--rndis- Remote NDIS (RNDIS) eliminates the need for hardware vendors to write an NDIS miniport device driver for a network device attached to the US…
/* ping program for learning IP protocol author: jeff date: 2014/10/25 */ #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <errno.h> static int ICMP_create(); static int opt_s…
catalogue . Abstract . INTRODUCTION . 通信协议Connection Registration Action . 通信协议Channel operations Action . 通信协议Heart Beat Action . 示例代码 . 基于IRC的中控网络 0. Abstract The IRC protocol was developed over the last 4 years since it was first implemented as a…
Final Version 1.1 Date Issued: 13 March 2012 Latest version: http://www.imsglobal.org/lti/ IPR and Distribution Notices Recipients of this document are requested to submit, with their comments, notification of any relevant patent c…
Machine and Deep Learning with Python Education Tutorials and courses Supervised learning superstitions cheat sheet Introduction to Deep Learning with Python How to implement a neural network How to build and run your first deep learning network Neur…
Andrej Karpathy blog About Hacker's guide to Neural Networks Deep Reinforcement Learning: Pong from Pixels May 31, 2016 This is a long overdue blog post on Reinforcement Learning (RL). RL is hot! You may have noticed that computers can now automatica…
How messages reach a service endpoint is a matter of protocols and hosting. IIS can host services over HTTP protocol,the Windows Activation Service (WAS) can support others such as TCP and named pipes,and self-hosting can support many protocols and i…
In the previous lab,you created a service and client from scratch without leveraging the tools available to WCF developers. Although this helps you to understand the raw requirements for sending messages between clients and services,in reality,develo…
机器学习基石 3 Types of Learning Learning with Different Output Space Learning with Different Data Label Learning with Different Protocol Learning with Different Input Space…
Machine Learning Crash Course | Google Developers https://developers.google.com/machine-learning/crash-course/ Google's fast-paced, practical introduction to machine learning ML Concepts Introduction to Machine Learning As you'll discover, machine…
翻译 Improved Word Representation Learning with Sememes 题目 Improved Word Representation Learning with Sememes 融合义原知识的词汇表示学习 摘要 Abstract Sememes are minimum semantic units of word meanings, and the meaning of each word sense is typically composed by sev…
Spanning Tree Protocol (STP) in NetScaler Appliance 来源 https://support.citrix.com/article/CTX112341 ------------------------------------------------------------------------------------- Information This contains information about Spanning Tree Protoc…
博客已经迁移至Marcovaldo's blog (http://marcovaldong.github.io/) 刚刚完毕机器学习基石的第三讲.这一讲主要介绍了机器学习的分类.对何种问题应该使用何种机器学习方法.将笔记整理在以下. Learning with Different Output Space 前面讲的信用卡发放问题是一个是非题,也就是说最后的输出仅仅有两种.是一个二元分类(binary classification).下图中给出了很多其它的二元分类问题的样例.对于这类问题我们要做的…
https://netty.io/wiki/user-guide-for-4.x.html The Problem Nowadays we use general purpose applications or libraries to communicate with each other. For example, we often use an HTTP client library to retrieve information from a web server and to invo…
上节课我们主要介绍了解决线性分类问题的一个简单的方法:PLA.PLA能够在平面中选择一条直线将样本数据完全正确分类.而对于线性不可分的情况,可以使用Pocket Algorithm来处理.本节课将主要介绍一下机器学习有哪些种类,并进行归纳. 一.Learning with Different Output Space Y(根据输入空间变化划分) 银行根据用户个人情况判断是否给他发信用卡的例子,这是一个典型的二元分类(binary classification)问题.也就是说输出只有两个,一般y=…