网站首页 站内搜索

搜索结果

查询Tags标签: None,共有 462条记录
  • pytorch的torchtext.data.Field( )使用方法介绍

    CLASS torchtext.data.Field(sequential=True, use_vocab=True, init_token=None, eos_token=None, fix_length=None, dtype=torch.int64, preprocessing=None, postprocessing=None, lower=False, tokenize=None, tokenizer_language=en, include_lengths=False, batch_f…

    2022/4/20 23:17:12 人评论 次浏览
  • selenium+python上传文件

    上传文件控件有两种:一种是input标签,另外一种是非input标签,比如button标签、div标签等 一、input标签很简单,使用send_keys就可以,只是有时候要用js将元素改为可输入,dr.find_element(By.XPATH, //div[text()="+上传图片"]).send_keys(pic_path) 二、非…

    2022/4/16 12:12:32 人评论 次浏览
  • 单值二叉树

    如果二叉树每个节点都具有相同的值,那么该二叉树就是单值二叉树。 只有给定的树是单值二叉树时,才返回 true;否则返回 false。 示例 1: 输入:[1,1,1,1,1,null,1]输出:true示例 2: 输入:[2,2,2,5,2]输出:false 提示: 给定树的节点数范围是 [1, 100]。每个节点的值…

    2022/4/13 23:13:02 人评论 次浏览
  • Bootstrap4中响应式显示和隐藏元素

    为了更快地进行移动设备开发,请使用响应式显示类来按设备显示和隐藏元素。 避免创建相同站点的完全不同版本,而是相应地为每个屏幕大小隐藏元素。 要隐藏元素,只需使用.d-none类或其中一个.d-{sm,md,lg,xl}-none类进行任何响应式屏幕变化。 要仅在给定的屏幕尺寸间隔上…

    2022/4/11 23:42:31 人评论 次浏览
  • matplotlib常用函数总结

    matplotlib是python数据可视化的基础包。当前能搜到的博客所列举的内容都太少,很难满足定制化需求官方文档:https://matplotlib.org/stable/api/pyplot_summary.html 首先调用接口import matplotlib pyplot as plt 下面除了直接绘制图表的函数以外每一个函数都是可选的…

    2022/4/11 23:16:02 人评论 次浏览
  • drf(五)—版本控制

    drf(五)—版本控制 1.源码流程 与前几节的介绍相同源码入口依旧为dispatch()和inital(); def initial(self, request, *args, **kwargs):self.format_kwarg = self.get_format_suffix(**kwargs)# Perform content negotiation and store the accepted info on the request…

    2022/4/7 23:51:37 人评论 次浏览
  • 响应

    #from rest_framework.response import Responsedef __init__(self, data=None, status=None,template_name=None, headers=None,exception=False, content_type=None):#data:你要返回的数据,字典 #status:返回的状态码,默认是200,-from rest_framework import statu…

    2022/4/6 6:20:33 人评论 次浏览
  • 请求

    # 请求对象 # from rest_framework.request import Requestdef __init__(self, request, parsers=None, authenticators=None,negotiator=None, parser_context=None):# 二次封装request,将原生request作为drf request对象的 _request 属性self._request = requestdef __…

    2022/4/6 6:19:30 人评论 次浏览
  • bisect python 好用的的数组二分算法

    bisect是python自带的标准库。 其中bisect_left是插入到左边,bisect_right和bisect是插入到右边 >>> a = [0, 1, 2, 3, 4] >>> x = 2 >>> index = bisect.bisect(a,x) >>> index 3 >>> a.insert(index,x) >>> a […

    2022/4/4 1:20:14 人评论 次浏览
  • |NO.Z.00000|——————————|BigDataEnd|———————————————————————————————————————————————————————————

    NO:===============================END===============================Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warmd both hands before the fire of life.It sinks, and I am ready to depa…

    2022/4/3 23:24:27 人评论 次浏览
  • |NO.Z.00093|——————————|BigDataEnd|———————————————————————————————————————————————————————————

    NO:===============================END===============================Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warmd both hands before the fire of life.It sinks, and I am ready to depa…

    2022/4/3 23:24:26 人评论 次浏览
  • |NO.Z.10000|——————————|BigDataEnd|———————————————————————————————————————————————————————————

    NO:===============================END===============================Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warmd both hands before the fire of life.It sinks, and I am ready to depa…

    2022/4/3 23:24:26 人评论 次浏览
  • |NO.Z.10000|——————————|CloudNative|

    NO:Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warmd both hands before the fire of life.It sinks, and I am ready to depart——W.S.Landor

    2022/4/3 0:03:42 人评论 次浏览
  • 哈夫曼编码(Huffman Coding)

    哈夫曼编码(Huffman Coding)是一种可变长的前缀码,可以有效地压缩数据:通常可以节省20%~90%的空间。哈夫曼设计了一个贪心算法来构造最优前缀码,被称为哈夫曼编码。前缀码,没有任何码字是其他码字的前缀。 思路 首先,获取字符与频率的关系。 其次,构建哈夫曼树。 …

    2022/3/31 23:23:38 人评论 次浏览
  • drf视图组件

    请求与响应 请求# Request 类的对象---》新的request对象 from rest_framework.request import Request # 记住的__getattr__request.datarequest.query_parmas--->self._request.GET-->restful规范里,请求地址中带过滤(查询)条件---》get请求地址中提交的数据在GE…

    2022/3/31 23:23:28 人评论 次浏览
扫一扫关注最新编程教程