摘要: POSIX标准总体分析 POSIX,全称为可移植性操作系统接口,是一种关于信息技术的IEEE标准。它包括了系统应用程序接口(API),以及实时扩展(C语言)。 该标准的目的是定义了标准的基于UNIX操作系统的系统接口和环境来支持源代码级的可移植性。现在,标准主要提供了依赖C语言的一系列标准服务,再将 阅读全文
posted @ 2016-07-24 21:07 alexliu2360 阅读(12139) 评论(1) 推荐(2) 编辑
摘要: Ranking与用户画像物品画像LR模型GBDT+ LRFM模型详解、业界使用方法与坑FFM模型AUC与GAUC(深度Ranking DIN)增量学习与Online Learning从L1稀疏化、FOBOS到FTRL算法基于FM实现Ranking精排序 Ranking ranking 粗排精排 ⇐2 阅读全文
posted @ 2021-03-11 15:26 alexliu2360 阅读(474) 评论(0) 推荐(1) 编辑
摘要: // ProcessOutput.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "stdio.h" #include "stdlib.h" #include "string.h" static int GetFileSize(FILE *stream) { int curPostion; int length; ... 阅读全文
posted @ 2016-09-22 20:18 alexliu2360 阅读(121) 评论(0) 推荐(0) 编辑
摘要: class _const(object): class ConstError(TypeError):pass def __setattr__(self,name,value): if self.__dict__.has_key(name): raise self.ConstError,"Can't rebind const(%s)" %... 阅读全文
posted @ 2016-09-21 18:32 alexliu2360 阅读(420) 评论(0) 推荐(0) 编辑
摘要: C文件处理/fopen/fclose/fgets 阅读全文
posted @ 2016-07-24 21:05 alexliu2360 阅读(238) 评论(0) 推荐(0) 编辑