-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
126 changed files
with
1,437 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
docs/cookbook_versioned_docs/version-2.1.0/case-study-classifier.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
# Case study: training a classifier from lab data | ||
|
||
:::note | ||
This case study is still **under construction**. | ||
::: |
9 changes: 9 additions & 0 deletions
9
docs/cookbook_versioned_docs/version-2.1.0/case-study-hybrid.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
sidebar_position: 4 | ||
--- | ||
|
||
# Case study: hybrid workflow | ||
|
||
:::note | ||
This case study is still **under construction**. | ||
::: |
9 changes: 9 additions & 0 deletions
9
docs/cookbook_versioned_docs/version-2.1.0/case-study-realtime.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# Case study: real-time data classification | ||
|
||
:::note | ||
This case study is still **under construction**. | ||
::: |
26 changes: 26 additions & 0 deletions
26
docs/cookbook_versioned_docs/version-2.1.0/introduction.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# The ChemFuseKit Cookbook: an introduction | ||
|
||
*What is a cookbook, exactly?* | ||
|
||
> A cookbook is a comprehensive collection of recipes that guide users through | ||
the process of learning and mastering the use of a specific library or | ||
programming technique, by providing step-by-step instructions, explanations and | ||
examples. | ||
|
||
## What you'll learn | ||
|
||
In this cookbook you will learn the basic principles of operation of `ChemFuseKit` through practical examples and case studies. You will be shown that all modules follow a basic structure, and once you've learned it for one module, you will be able to reapply that knowledge for all modules. | ||
|
||
You will be shown how to use the library on its own, and also how to use it as a part of a bigger pipeline. | ||
|
||
## Cookbook sectioning | ||
|
||
Here we go: | ||
|
||
- first of all, you will be shown the basic principles and structure; | ||
- then, you will be shown three case studies; | ||
- finally, you'll receive instructions on how to modify and expand this library for your own purposes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
sidebar_position: 2 | ||
--- | ||
|
||
# Project structure | ||
|
||
In this cookbook page, you will be shown how the project is structured, and the purpose of each module. | ||
|
||
## Project Hierarchy | ||
|
||
``` | ||
chemfusekit | ||
| | ||
|_lda | ||
| |_LDASettings | ||
| |_LDA | ||
| | ||
|_lr | ||
| |_LRSettings | ||
| |_LR | ||
| | ||
|_plsda | ||
| |_PLSDASettings | ||
| |_PLSDA | ||
| | ||
|_pca | ||
| |_PCASettings | ||
| |_PCA | ||
| | ||
|_lldf | ||
| |_LLDFSettings | ||
| |_LLDF | ||
| |_LLDFModel | ||
| | ||
|_svm | ||
| |_SVMSettings | ||
| |_SVM | ||
| | ||
|_knn | ||
|_KNNSettings | ||
|_KNN | ||
``` | ||
|
||
As you can see, each module contains a class with the same name of the module, and a settings class. That's because this project tries to be as modular and as regular as possible, for clarity and interoperability. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[ | ||
"2.0" | ||
"2.1.0", | ||
"2.0.0" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Base module", | ||
"position": 9, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "A module containing base classes for all the other modules." | ||
} | ||
} |
Oops, something went wrong.