上一页 1 2 3 4 5 6 7 ··· 10 下一页

2018年9月29日

ubuntu安装驱动问题

摘要: 网友答案:https://blog.csdn.net/jasonzhoujx/article/details/80469139 阅读全文

posted @ 2018-09-29 10:22 NothingLZ 阅读(173) 评论(0) 推荐(0) 编辑

ubuntu16.04下怎么关闭x server

摘要: 按住ctrl+alt+f1,进入命令行。输入sudo /etc/init.d/lightdm stopsudo /etc/init.d/lightdm status重启xserver?输入sudo /etc/init.d/lightdm restart 阅读全文

posted @ 2018-09-29 09:18 NothingLZ 阅读(13821) 评论(0) 推荐(0) 编辑

2018年9月11日

Ubuntu 下解压tar.xz方法

摘要: 参考地址:https://www.cnblogs.com/baby123/p/6611169.html 阅读全文

posted @ 2018-09-11 09:10 NothingLZ 阅读(826) 评论(0) 推荐(0) 编辑

2018年9月8日

xgboost实例代码

摘要: 1 # -*- coding: utf-8 -*- 2 import xgboost as xgb 3 import csv 4 import jieba 5 jieba.load_userdict('wordDict.txt') 6 import numpy as np 7 from sklearn.feature_extraction.text import CountVect... 阅读全文

posted @ 2018-09-08 21:16 NothingLZ 阅读(976) 评论(0) 推荐(0) 编辑

2018年9月5日

gcc编译C语言程序

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2018-09-05 17:40 NothingLZ 阅读(0) 评论(0) 推荐(0) 编辑

libsvm数据格式

摘要: train.txt 1 101:1.2 102:0.03 0 1:2.1 10001:300 10002:400 0 0:1.3 1:0.3 1 0:0.01 1:0.3 0 0:0.2 1:0.3 train.txt 1 101:1.2 102:0.03 0 1:2.1 10001:300 100 阅读全文

posted @ 2018-09-05 16:29 NothingLZ 阅读(121) 评论(0) 推荐(0) 编辑

2018年9月4日

Python 解决: from pip import main ImportError: cannot import name 'main'

摘要: 此次报错是因为 pip 升级出的问题: from pip import mainif __name__ == '__main__': sys.exit(main()) 改为: from pip import __main__if __name__ == '__main__': sys.exit(__ 阅读全文

posted @ 2018-09-04 12:06 NothingLZ 阅读(402) 评论(0) 推荐(0) 编辑

2018年8月24日

tensorflow学习笔记

摘要: 常量的四则运算 常量和变量的的四则运算 阅读全文

posted @ 2018-08-24 16:52 NothingLZ 阅读(81) 评论(0) 推荐(0) 编辑

2018年8月8日

python多线程、多进程相关知识

摘要: Queue Queue用于建立和操作队列,常和threading类一起用来建立一个简单的线程队列。 首先,队列有很多种,根据进出顺序来分类,可以分成 Queue.Queue(maxsize) FIFO(先进先出队列) Queue.LifoQueue(maxsize) LIFO(先进后出队列) Que 阅读全文

posted @ 2018-08-08 18:04 NothingLZ 阅读(164) 评论(0) 推荐(0) 编辑

2018年7月7日

灰度发布相关

摘要: 步骤 1)定义目标 2)选定策略:包括用户规模、发布频率、功能覆盖度、回滚策略、运营策略、新旧系统部署策略等 3)筛选用户:包括用户特征、用户数量、用户常用功能、用户范围等 4)部署系统:部署新系统、部署用户行为分析系统(web analytics)、设定分流规则、运营数据分析、分流规则微调 5)发 阅读全文

posted @ 2018-07-07 23:52 NothingLZ 阅读(338) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 10 下一页

导航