Diff of /_pkgdown.yml [000000] .. [409433]

Switch to unified view

a b/_pkgdown.yml
1
url: https://genomenet.github.io/deepG
2
development:
3
  mode: release
4
  version_label: default
5
template:
6
  bootstrap: 5
7
  bootswatch: spacelab
8
navbar:
9
  structure:
10
    left:
11
    - reference
12
    - notebooks
13
    - tutorials
14
    right: github
15
  components:
16
    home: ~
17
    reference:
18
      icon: fa fa-file-alt
19
      text: Reference
20
      href: reference/index.html
21
    notebooks:
22
      text: Notebooks
23
      menu:
24
      - text: "deepG tutorial"
25
        href: https://colab.research.google.com/drive/175jIdXcDcgPUvaBo2rH2Lupbpjnp5O7G?usp=sharing
26
      - text: "Read-length level: Human contamination"
27
        href: https://colab.research.google.com/drive/1Eolc0koMNM1zkuO4XyVM58ImeF1BpRiH?usp=sharing
28
      - text: "Locus level: CRISPR detection"
29
        href: https://colab.research.google.com/drive/1yiXSwFafXpMLHaov9iBTQLIDZ6bK1zYX?usp=sharing
30
      - text: "Gene level: 16S rRNA detection"
31
        href: https://colab.research.google.com/drive/1G7bOFEX87cZNrM2tdRtTdkrZn5fM__g0?usp=sharing
32
      - text: "Genome level: Bacterial morphology (Sporulation)"
33
        href: https://colab.research.google.com/drive/1BCggL-tfQF136YeJ8cKKi-zoBEDMgkNh?usp=sharing  
34
      - text: "Full metagenome level: Colorectal cancer prediction" 
35
        href: https://colab.research.google.com/drive/10xpRzGd3JeBAbqQYSCxzQUMctt01sx9D?usp=sharing   
36
      - text: "BERT with deepG"
37
        href: https://colab.research.google.com/drive/1kyYK7IU7GSfdpDzO_a8U3_qD4i3zTu6w?usp=sharing  
38
    tutorials:
39
      text: Tutorials
40
      menu:
41
      - text: Getting Started
42
        href: articles/getting_started.html
43
      - text: Training types
44
        href: articles/training_types.html
45
      - text: Data generator
46
        href: articles/data_generator.html
47
      - text: Using tensorboard
48
        href: articles/using_tb.html
49
      - text: Integrated Gradient
50
        href: articles/integrated_gradient.html
51
reference:
52
- title: Training
53
  contents: 
54
  - train_model
55
  - train_model_cpc
56
  - resume_training_from_model_card
57
- title: Model Architecture
58
  contents:
59
  - starts_with("create_model_")
60
  - remove_add_layers
61
  - merge_models
62
  - get_output_activations
63
  - reshape_input
64
  - load_cp
65
  - compile_model
66
  - starts_with("layer_")
67
- title: Callbacks
68
  contents:
69
  - conf_matrix_cb
70
  - early_stopping_time_cb
71
  - validation_after_training_cb
72
  - reset_states_cb
73
  - remove_checkpoints
74
  - model_card_cb
75
- title: Metrics and Losses
76
  contents:
77
  - noisy_loss_wrapper
78
  - balanced_acc_wrapper
79
  - f1_wrapper
80
  - auc_wrapper
81
  - exp_decay
82
  - stepdecay
83
  - sgdr
84
  - focal_loss_multiclass
85
  - loss_cl
86
- title: Generators
87
  contents:
88
  - starts_with("generator_")
89
  - get_generator
90
  - dataset_from_gen
91
- title: Prediction
92
  contents:
93
  - predict_model
94
  - summarize_states
95
  - predict_with_n_gram
96
  - load_prediction
97
- title: Evaluation
98
  contents:
99
  - starts_with("evaluate_")
100
  - plot_roc
101
- title: Visualization
102
  contents:
103
  - integrated_gradients
104
  - heatmaps_integrated_grad
105
  - plot_cm
106
- title: Preprocessing
107
  contents:
108
  - seq_encoding_label
109
  - seq_encoding_lm
110
  - get_class_weight
111
  - get_start_ind
112
  - int_to_n_gram
113
  - n_gram_dist
114
  - n_gram_of_matrix
115
  - reshape_tensor
116
  - split_fasta
117
  - one_hot_to_seq
118
- title: Data
119
  contents:
120
  - crispr_sample
121
  - ecoli_small
122
  - parenthesis
123
- title: Dummy Data
124
  contents: create_dummy_data
125
- title: Session Management
126
  contents:
127
  - deepG
128