Skip to content

Commit 806ca54

Browse files
Deployed 02d2764 with MkDocs version: 1.6.1
0 parents  commit 806ca54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+18519
-0
lines changed

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 519 additions & 0 deletions
Large diffs are not rendered by default.

Examples/index.html

Lines changed: 1490 additions & 0 deletions
Large diffs are not rendered by default.

Getting-Started/index.html

Lines changed: 743 additions & 0 deletions
Large diffs are not rendered by default.

High-Level-APIs/index.html

Lines changed: 3773 additions & 0 deletions
Large diffs are not rendered by default.

Low-Level-APIs/index.html

Lines changed: 1039 additions & 0 deletions
Large diffs are not rendered by default.

acknowledgement/index.html

Lines changed: 747 additions & 0 deletions
Large diffs are not rendered by default.

assets/_mkdocstrings.css

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
2+
/* Avoid breaking parameter names, etc. in table cells. */
3+
.doc-contents td code {
4+
word-break: normal !important;
5+
}
6+
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
11+
}
12+
13+
/* No text transformation from Material for MkDocs for H5 headings. */
14+
.md-typeset h5 .doc-object-name {
15+
text-transform: none;
16+
}
17+
18+
/* Max width for docstring sections tables. */
19+
.doc .md-typeset__table,
20+
.doc .md-typeset__table table {
21+
display: table !important;
22+
width: 100%;
23+
}
24+
25+
.doc .md-typeset__table tr {
26+
display: table-row;
27+
}
28+
29+
/* Defaults in Spacy table style. */
30+
.doc-param-default,
31+
.doc-type_param-default {
32+
float: right;
33+
}
34+
35+
/* Parameter headings must be inline, not blocks. */
36+
.doc-heading-parameter,
37+
.doc-heading-type_parameter {
38+
display: inline;
39+
}
40+
41+
/* Default font size for parameter headings. */
42+
.md-typeset .doc-heading-parameter {
43+
font-size: inherit;
44+
}
45+
46+
/* Prefer space on the right, not the left of parameter permalinks. */
47+
.doc-heading-parameter .headerlink,
48+
.doc-heading-type_parameter .headerlink {
49+
margin-left: 0 !important;
50+
margin-right: 0.2rem;
51+
}
52+
53+
/* Backward-compatibility: docstring section titles in bold. */
54+
.doc-section-title {
55+
font-weight: bold;
56+
}
57+
58+
/* Backlinks crumb separator. */
59+
.doc-backlink-crumb {
60+
display: inline-flex;
61+
gap: .2rem;
62+
white-space: nowrap;
63+
align-items: center;
64+
vertical-align: middle;
65+
}
66+
.doc-backlink-crumb:not(:first-child)::before {
67+
background-color: var(--md-default-fg-color--lighter);
68+
content: "";
69+
display: inline;
70+
height: 1rem;
71+
--md-path-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
72+
-webkit-mask-image: var(--md-path-icon);
73+
mask-image: var(--md-path-icon);
74+
width: 1rem;
75+
}
76+
.doc-backlink-crumb.last {
77+
font-weight: bold;
78+
}
79+
80+
/* Symbols in Navigation and ToC. */
81+
:root, :host,
82+
[data-md-color-scheme="default"] {
83+
--doc-symbol-parameter-fg-color: #df50af;
84+
--doc-symbol-type_parameter-fg-color: #df50af;
85+
--doc-symbol-attribute-fg-color: #953800;
86+
--doc-symbol-function-fg-color: #8250df;
87+
--doc-symbol-method-fg-color: #8250df;
88+
--doc-symbol-class-fg-color: #0550ae;
89+
--doc-symbol-type_alias-fg-color: #0550ae;
90+
--doc-symbol-module-fg-color: #5cad0f;
91+
92+
--doc-symbol-parameter-bg-color: #df50af1a;
93+
--doc-symbol-type_parameter-bg-color: #df50af1a;
94+
--doc-symbol-attribute-bg-color: #9538001a;
95+
--doc-symbol-function-bg-color: #8250df1a;
96+
--doc-symbol-method-bg-color: #8250df1a;
97+
--doc-symbol-class-bg-color: #0550ae1a;
98+
--doc-symbol-type_alias-bg-color: #0550ae1a;
99+
--doc-symbol-module-bg-color: #5cad0f1a;
100+
}
101+
102+
[data-md-color-scheme="slate"] {
103+
--doc-symbol-parameter-fg-color: #ffa8cc;
104+
--doc-symbol-type_parameter-fg-color: #ffa8cc;
105+
--doc-symbol-attribute-fg-color: #ffa657;
106+
--doc-symbol-function-fg-color: #d2a8ff;
107+
--doc-symbol-method-fg-color: #d2a8ff;
108+
--doc-symbol-class-fg-color: #79c0ff;
109+
--doc-symbol-type_alias-fg-color: #79c0ff;
110+
--doc-symbol-module-fg-color: #baff79;
111+
112+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
113+
--doc-symbol-type_parameter-bg-color: #ffa8cc1a;
114+
--doc-symbol-attribute-bg-color: #ffa6571a;
115+
--doc-symbol-function-bg-color: #d2a8ff1a;
116+
--doc-symbol-method-bg-color: #d2a8ff1a;
117+
--doc-symbol-class-bg-color: #79c0ff1a;
118+
--doc-symbol-type_alias-bg-color: #79c0ff1a;
119+
--doc-symbol-module-bg-color: #baff791a;
120+
}
121+
122+
code.doc-symbol {
123+
border-radius: .1rem;
124+
font-size: .85em;
125+
padding: 0 .3em;
126+
font-weight: bold;
127+
}
128+
129+
code.doc-symbol-parameter,
130+
a code.doc-symbol-parameter {
131+
color: var(--doc-symbol-parameter-fg-color);
132+
background-color: var(--doc-symbol-parameter-bg-color);
133+
}
134+
135+
code.doc-symbol-parameter::after {
136+
content: "param";
137+
}
138+
139+
code.doc-symbol-type_parameter,
140+
a code.doc-symbol-type_parameter {
141+
color: var(--doc-symbol-type_parameter-fg-color);
142+
background-color: var(--doc-symbol-type_parameter-bg-color);
143+
}
144+
145+
code.doc-symbol-type_parameter::after {
146+
content: "type-param";
147+
}
148+
149+
code.doc-symbol-attribute,
150+
a code.doc-symbol-attribute {
151+
color: var(--doc-symbol-attribute-fg-color);
152+
background-color: var(--doc-symbol-attribute-bg-color);
153+
}
154+
155+
code.doc-symbol-attribute::after {
156+
content: "attr";
157+
}
158+
159+
code.doc-symbol-function,
160+
a code.doc-symbol-function {
161+
color: var(--doc-symbol-function-fg-color);
162+
background-color: var(--doc-symbol-function-bg-color);
163+
}
164+
165+
code.doc-symbol-function::after {
166+
content: "func";
167+
}
168+
169+
code.doc-symbol-method,
170+
a code.doc-symbol-method {
171+
color: var(--doc-symbol-method-fg-color);
172+
background-color: var(--doc-symbol-method-bg-color);
173+
}
174+
175+
code.doc-symbol-method::after {
176+
content: "meth";
177+
}
178+
179+
code.doc-symbol-class,
180+
a code.doc-symbol-class {
181+
color: var(--doc-symbol-class-fg-color);
182+
background-color: var(--doc-symbol-class-bg-color);
183+
}
184+
185+
code.doc-symbol-class::after {
186+
content: "class";
187+
}
188+
189+
190+
code.doc-symbol-type_alias,
191+
a code.doc-symbol-type_alias {
192+
color: var(--doc-symbol-type_alias-fg-color);
193+
background-color: var(--doc-symbol-type_alias-bg-color);
194+
}
195+
196+
code.doc-symbol-type_alias::after {
197+
content: "type";
198+
}
199+
200+
code.doc-symbol-module,
201+
a code.doc-symbol-module {
202+
color: var(--doc-symbol-module-fg-color);
203+
background-color: var(--doc-symbol-module-bg-color);
204+
}
205+
206+
code.doc-symbol-module::after {
207+
content: "mod";
208+
}
209+
210+
.doc-signature .autorefs {
211+
color: inherit;
212+
border-bottom: 1px dotted currentcolor;
213+
}

assets/images/favicon.png

1.83 KB
Loading

assets/javascripts/bundle.f55a23d4.min.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)