上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 49 下一页

2019年8月26日

Pytohn笔记(31)----第三方包

摘要: 摘自: https://www.jianshu.com/p/bbc8672a2d09 一. from __future__ import **** [版本更新之后想在原来的版本使用新版本的一些功能] 二. python zipfile使用 1、压缩 f=zipfile.ZipFile(file, m 阅读全文

posted @ 2019-08-26 10:47 吱吱了了 阅读(222) 评论(0) 推荐(0)

2019年8月19日

改进Bert----spanBERT

摘要: SpanBert:对 Bert 预训练的一次深度探索 SpanBERT: Improving Pre-training by Representing and Predicting Spans 解读SpanBERT:《Improving Pre-training by Representing an 阅读全文

posted @ 2019-08-19 19:08 吱吱了了 阅读(1790) 评论(0) 推荐(0)

2019年8月16日

推荐系统(5)---大量项目topk近邻相似度

摘要: Kd树+BBF(最邻近、次邻近查询)Python实现 kd树和BBF算法 精确Top-K检索及其加速方法探讨 阅读全文

posted @ 2019-08-16 19:19 吱吱了了 阅读(759) 评论(0) 推荐(0)

Python笔记(30)-----logger

摘要: 转自: https://www.jb51.net/article/139080.htm logging模块介绍 Python的logging模块提供了通用的日志系统,熟练使用logging模块可以方便开发者开发第三方模块或者是自己的Python应用。同样这个模块提供不同的日志级别,并可以采用不同的方 阅读全文

posted @ 2019-08-16 14:52 吱吱了了 阅读(229) 评论(0) 推荐(0)

2019年8月15日

算法102----360笔试(m进制不进位相加最大值)

摘要: 转自:https://blog.csdn.net/qq_18310041/article/details/99656445 阅读全文

posted @ 2019-08-15 21:59 吱吱了了 阅读(357) 评论(0) 推荐(0)

2019年8月14日

python关于解决'\u'开头的字符串转中文的方法

摘要: 转自: https://www.cnblogs.com/hahaxzy9500/p/7685955.html 字符串转中文: 但是以上有时还会报错: UnicodeEncodeError: 'ascii' codec can't encode characters in position 25-32 阅读全文

posted @ 2019-08-14 10:49 吱吱了了 阅读(9253) 评论(0) 推荐(0)

2019年8月13日

conda create 报错解决

摘要: 1. 输入命令: conda create -n query-scorer-serving python=2.7 报错: Solving environment: failed CondaError: No writable package cache directories found in (' 阅读全文

posted @ 2019-08-13 19:30 吱吱了了 阅读(6410) 评论(0) 推荐(0)

flask参数传递

摘要: 一. 参数传递两种方式: 1.get请求 request.args.get("key") 获取get请求参数2.post请求request.form.get("key", type=str, default=None) 获取表单数据request.values.get("key") 获取所有参数# 阅读全文

posted @ 2019-08-13 11:00 吱吱了了 阅读(2199) 评论(0) 推荐(0)

2019年8月11日

算法101---反异或(字节跳动)

摘要: 一、题目: 二、思路:反异或 若a^b=c则a=b^c 如:N = 7,K= 4,s = 1110100110【原来序列为1001010】 则: 1 2 3 4 4 4 4 3 2 1 【一共10个数】这个列表代表异或次数。 1 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 0 阅读全文

posted @ 2019-08-11 20:30 吱吱了了 阅读(1050) 评论(0) 推荐(0)

2019年8月10日

计算广告(6)----爱奇艺广告技术沙龙(广告召回)

摘要: 爱奇艺技术沙龙——广告算法与架构设计-爱奇艺直播-爱奇艺 一、AI在视频广告中的应用: 1、广告的目的: 在一定周期,让尽可能多的人产生消费。 长周期:品牌广告(比如阿迪、nike等品牌),短周期:效果广告(比如平时打开网页出现在眼帘的广告)。 消费行为:购买、激活、安装、下载、点击。 2、如何传达 阅读全文

posted @ 2019-08-10 23:40 吱吱了了 阅读(1834) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 49 下一页

导航