码迷,mamicode.com
首页 >  
搜索关键字:models    ( 3511个结果
论文阅读 | Do you know that Florence is packed with visitors?Evaluating state-of-the-art models of speaker commitment
论文地址 :https://www.aclweb.org/anthology/P19-1412/ 作者 :Nanjiang Jiang, Marie-Catherine de Marneffe 机构 : The Ohio State University 研究的问题: 讨论的是推断说话人承诺Infe ...
分类:其他好文   时间:2020-04-21 23:47:59    阅读次数:89
论文阅读 | FIESTA: Fast IdEntification of State-of-The-Art models using adaptive bandit algorithms
论文地址:https://www.aclweb.org/anthology/P19-1281/ 作者:Henry Moss, Andrew Moore, David Leslie, Paul Rayson 机构:Lancaster University 研究的问题: 关注模型选择的问题,也就是在尽可 ...
分类:其他好文   时间:2020-04-21 22:28:52    阅读次数:100
Django--分页功能
需要用到django中的Paginator模块 导入:from django.core.paginator import Paginator 本案例以图书管理为模版 class BorrowBook(models.Model): """ 借出图书查询 """ reader = models.Fore ...
分类:其他好文   时间:2020-04-21 18:42:06    阅读次数:70
laravel 数据导出 Excel
第一步:Composer安装插件 composer require maatwebsite/excel 第二步:使用命令,生成导出数据文件 php artisan make:export FangOwnerExport --model=Models/FangOwner 第三步:定义路由,定义方法 r ...
分类:其他好文   时间:2020-04-21 18:09:06    阅读次数:90
Authencation
用户认证 token ( 前后端分离 ) cookie & session (前后端不分离) aaa 继承 BaseAuthentication 类,并重写authenticate方法 三种操作: 1. 抛出异常,后续不执行 from rest_framework.execptions import ...
分类:其他好文   时间:2020-04-21 15:19:55    阅读次数:80
Object Detection faster_rcnn训练日志
(zhouying2) F:\TensorflowProject\ObjectDetection\models-1.12.0\research>(zhouying2) F:\TensorflowProject\ObjectDetection\models-1.12.0\research>python ...
分类:其他好文   时间:2020-04-21 12:43:47    阅读次数:61
Python - 自定义分页
``` """ 使用流程 分页组件应用: 1. 在视图函数中 queryset = models.Issues.objects.filter(project_id=project_id) page_object = Pagination( current_page=request.GET.get('... ...
分类:编程语言   时间:2020-04-21 12:41:47    阅读次数:66
Django_基于双下划线的——连续跨表查询
方式一: ret = models.Book.objects.filter(authors__authordetail__telephone="123412351").values("title", "publish__name") print(ret) 方式二: ret = models.Auth ...
分类:其他好文   时间:2020-04-21 00:07:07    阅读次数:62
django之Model(数据表)的增删改查
一、新闻模型 class BaseModel(models.Model): # 创建时间 create_time = models.DateTimeField(auto_now_add=True, verbose_name="创建时间") # 更新时间 update_time = models.Da ...
分类:其他好文   时间:2020-04-20 21:51:54    阅读次数:55
Django_基于双下划线——跨表查询
一对多: 正向查询: # 一对多:正向查询,查询三国演义这本书的出版社的名字 values("关联字段名__要查询的字段") ret = models.Book.objects.filter(title="三国演义").values("publish__name") print(ret) # 查询到 ...
分类:其他好文   时间:2020-04-20 01:33:35    阅读次数:101
3511条   上一页 1 ... 25 26 27 28 29 ... 352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!