toc

Modify Sphinx TOC tree

匿名 (未验证) 提交于 2019-12-03 02:30:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I have a Sphinx project with a TOC ( index.rst ) that includes :maxdepth: 2 . The problem is I want to reduce the depth to 1 for the release section so that it doesn't include the list of release notes in the main TOC (the list is too long). It seems that the TOC list can be modified using a doctree-resolved event handler, but I can't figure out how to modify the TOC tree in the event handler: from sphinx import addnodes def setup ( app ): def update_toctree ( app , doctree , docname ): if docname != 'index' : return node = doctree

Update the TOC (table of content) of MS Word .docx documents with Python

匿名 (未验证) 提交于 2019-12-03 01:33:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I use the python package "python-docx" to modify the structure amd content of MS word .docx documents. The package lacks the possibility to update the TOC (table of content) [ Python: Create a "Table Of Contents" with python-docx/lxml . Are there workarounds to update the TOC of a document? I thought about using "win32com.client" from the python package "pywin32" [ https://pypi.python.org/pypi/pypiwin32] or a comparable pypi package offering "cli control" capabilities for MS Office. I tried the following: I changed the document.docx to

@[TOC](硬核の暴力)

匿名 (未验证) 提交于 2019-12-02 23:32:01
Ŀ¼ Math --CodeForces - 1062B @(硬核の暴力) Math --CodeForces - 1062B C. Ehab and a 2-operation task time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard output You're given an array a of length n. You can perform the following operations on it: 1.choose an index i (1≤i≤n), an integer x (0≤x≤10^6^), and replace a~j~ with a~j~+x for all (1≤j≤i), which means add x to all the elements in the prefix ending at i. 2.choose an index i (1≤i≤n), an integer x (1≤x≤10^6^), and replace a~j~ with a~j~%x for all (1≤j≤i), which means replace every element in the

反向传播算法简介

我与影子孤独终老i 提交于 2019-11-28 15:19:14
<!doctype html> 反向传播算法 */ /*--> */ 反向传播算法简介(BP,Backpropagation algorithm) 原文: http://neuralnetworksanddeeplearning.com/chap2.html BP 算法所关注的是神经网络中损失函数 C (cost function) 与每一个权重 和偏置 的偏导。BP 不仅仅是一个快速的算法,其同时为我们提供了一个视角,让我们观察权值和偏置是如何影响网络输出的。 译者注:本文中所描述的网络以层为单位,如果把层当做图的节点,数据流向作为图的有向边,那么本文所描述的网络所抽象出的图一定是有向无环的。 本文并没有翻译原文所有内容 。 热身:利用矩阵实现网络计算 先介绍一个网络权重的数学标记法: ,这个数学标记表示神经网络中第 层网络的第 个元素和第 层第 个元素之间的权重。同样, 表示第 层第 个元素的偏置值, 表示 层第 个元素的激活函数输出值。利用这种数学表示, 可以表示为: 使用矩阵形式表示上述表达式: 定义 为激活函数的输入值则可以将上面表达式 表示为: 损失函数的两个特点 BP 算法用于计算网络中所有权重 和偏置 关于损失函数 的偏导数 和 。为了使 BP 算法正常运行,损失函数需要满足两个条件。在给出这两个条件前,我们先介绍一种常用的均方差损失函数,如式 所示: 表达式

反向传播算法简介

走远了吗. 提交于 2019-11-28 15:05:48
<!doctype html> 反向传播算法 */ /*--> */ 反向传播算法简介(BP,Backpropagation algorithm) 原文: http://neuralnetworksanddeeplearning.com/chap2.html BP 算法所关注的是神经网络中损失函数 C (cost function) 与每一个权重 和偏置 的偏导。BP 不仅仅是一个快速的算法,其同时为我们提供了一个视角,让我们观察权值和偏置是如何影响网络输出的。 译者注:本文中所描述的网络以层为单位,如果把层当做图的节点,数据流向作为图的有向边,那么本文所描述的网络所抽象出的图一定是有向无环的。 本文并没有翻译原文所有内容 。 热身:利用矩阵实现网络计算 先介绍一个网络权重的数学标记法: ,这个数学标记表示神经网络中第 层网络的第 个元素和第 层第 个元素之间的权重。同样, 表示第 层第 个元素的偏置值, 表示 层第 个元素的激活函数输出值。利用这种数学表示, 可以表示为: 使用矩阵形式表示上述表达式: 定义 为激活函数的输入值则可以将上面表达式 表示为: 损失函数的两个特点 BP 算法用于计算网络中所有权重 和偏置 关于损失函数 的偏导数 和 。为了使 BP 算法正常运行,损失函数需要满足两个条件。在给出这两个条件前,我们先介绍一种常用的均方差损失函数,如式 所示: 表达式

mysql 创建用户并授权

一曲冷凌霜 提交于 2019-11-28 05:59:55
-- 设置密码的难度 set global validate_password_policy=0; set global validate_password_length=1; -- 创建用户 CREATE USER 'crm-v3-toc'@'%' IDENTIFIED BY '123456'; -- 授权crm-v3-toc 给 GRANT ALL ON `crm-v3-toc`.* TO 'crm-v3-toc'@'%'; -- 授权全部数据库 GRANT ALL ON *.* TO 'crm-v3-toc'@'%'; 来源: https://www.cnblogs.com/yjhkhnuje/p/11396116.html

HelloDjango 第 10 篇:小细节 Markdown 文章自动生成目录,提升阅读体验

谁说我不能喝 提交于 2019-11-28 04:54:12
目录 在文中插入目录 在页面的任何地方插入目录 处理空目录 美化标题的锚点 URL 作者:HelloGitHub- 追梦人物 文中涉及的示例代码,已同步更新到 HelloGitHub-Team 仓库 上一篇中我们使用了 Markdown 来为文章提供排版支持。Markdown 在解析内容的同时还可以自动提取整个内容的目录结构,现在我们来使用 Markdown 为文章自动生成目录。 在文中插入目录 先来回顾一下博客的 Post(文章)模型,其中 body 是我们存储 Markdown 文本的字段: blog/models.py from django.db import models class Post(models.Model): # Other fields ... body = models.TextField() 再来回顾一下文章详情页的视图,我们在 detail 视图函数中将 post 的 body 字段中的 Markdown 文本解析成了 HTML 文本,然后传递给模板显示。 blog/views.py def detail(request, pk): post = get_object_or_404(Post, pk=pk) post.body = markdown.markdown(post.body, extensions=[ 'markdown

Different Ways to Create a Sitemap Page or Table of Contents Page for Blogger

不问归期 提交于 2019-11-26 16:26:48
There are a couple ways to do it but many codes were using a .js file stored on google drive which is not working since early of 2016. I have moved some .js code file to GITHUB and here are some codes and screenshots for my blog http://91sec.blogspot.com . 1. Tabbed Sitemap Page Demo page is here. <div id="tabbed-toc"> <span class="loading">Loading 91sec.blogspot.com sitemap, please wait for a moment...</span></div> <br /> <script type="text/javascript"> var tabbedTOC = { blogUrl: "http://91sec.blogspot.com", // Enter your blog URL containerId: "tabbed-toc", // Container ID activeTab: 1, //