-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
58 lines (55 loc) · 1.7 KB
/
mkdocs.yml
File metadata and controls
58 lines (55 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
site_name: Embedding-Kit
nav:
- Home: index.md
- About: about.md
- Core Concepts: concepts.md
- Training Guide: training.md
- CLI Reference: cli.md
- Examples:
- GTEx RNA-seq: examples/gtex.md
- Protein Encoding: examples/protein.md
- NetVAE (Pathway): examples/netvae.md
- API:
- Overview: api/index.md
- Factory:
- Overview: api/factory/index.md
- Models:
- Overview: api/models/index.md
- VAE: api/models/vae.md
- RNAVAE: api/models/rna_vae.md
- NetVAE: api/models/net_vae.md
- Training:
- Optimize: api/optimize.md
- Preprocessing: api/preprocessing.md
- Layers:
- Overview: api/layers/layers.md
- Layer Info: api/layers/layer_info.md
- Masked Linear: api/layers/masked_linear.md
- Pairwise Comparison: api/layers/pairwise_comparison_layer.md
- Top Scoring Pair: api/layers/tsp.md
- Losses:
- Overview: api/losses/index.md
- VAE Loss: api/losses/vae_loss.md
- Constraints:
- Overview: api/constraints/index.md
- NetworkConstraint: api/constraints/network_constraint.md
- Metrics:
- Distance: api/metrics/distance.md
- Estimator:
- Overview: api/estimator/index.md
- VAE Estimator: api/estimator/vae_estimator.md
- Commands:
- Overview: api/commands/index.md
- cbio: api/commands/cbio.md
- BMEG: api/bmeg.md
- Pathway: api/pathway.md
theme: readthedocs
plugins:
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: false
markdown_extensions:
- mkdocs-click