-
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.
feat: Markdown documentation generator (#963)
Closes #663 ### Summary of Changes * Add a service to generate Markdown documentation for Safe-DS files * Add the `document` CLI command to invoke this generator * Create Markdown documentation for the builtin stubs --------- Co-authored-by: megalinter-bot <[email protected]>
- Loading branch information
1 parent
dc5bf3b
commit 77d04de
Showing
408 changed files
with
13,118 additions
and
568 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,73 @@ | ||
- safeds | ||
- data | ||
- image | ||
- containers | ||
- [Image](safeds/data/image/containers/Image.md) | ||
- tabular | ||
- containers | ||
- [Column](safeds/data/tabular/containers/Column.md) | ||
- [Row](safeds/data/tabular/containers/Row.md) | ||
- [Table](safeds/data/tabular/containers/Table.md) | ||
- [TaggedTable](safeds/data/tabular/containers/TaggedTable.md) | ||
- [TimeSeries](safeds/data/tabular/containers/TimeSeries.md) | ||
- transformation | ||
- [Discretizer](safeds/data/tabular/transformation/Discretizer.md) | ||
- [Imputer](safeds/data/tabular/transformation/Imputer.md) | ||
- [InvertibleTableTransformer](safeds/data/tabular/transformation/InvertibleTableTransformer.md) | ||
- [LabelEncoder](safeds/data/tabular/transformation/LabelEncoder.md) | ||
- [OneHotEncoder](safeds/data/tabular/transformation/OneHotEncoder.md) | ||
- [RangeScaler](safeds/data/tabular/transformation/RangeScaler.md) | ||
- [StandardScaler](safeds/data/tabular/transformation/StandardScaler.md) | ||
- [TableTransformer](safeds/data/tabular/transformation/TableTransformer.md) | ||
- typing | ||
- [ColumnType](safeds/data/tabular/typing/ColumnType.md) | ||
- [Schema](safeds/data/tabular/typing/Schema.md) | ||
- lang | ||
- [AnnotationTarget](safeds/lang/AnnotationTarget.md) | ||
- [Any](safeds/lang/Any.md) | ||
- [Boolean](safeds/lang/Boolean.md) | ||
- [Deprecated](safeds/lang/Deprecated.md) | ||
- [Experimental](safeds/lang/Experimental.md) | ||
- [Expert](safeds/lang/Expert.md) | ||
- [Float](safeds/lang/Float.md) | ||
- [Impure](safeds/lang/Impure.md) | ||
- [ImpurityReason](safeds/lang/ImpurityReason.md) | ||
- [Int](safeds/lang/Int.md) | ||
- [List](safeds/lang/List.md) | ||
- [Map](safeds/lang/Map.md) | ||
- [Nothing](safeds/lang/Nothing.md) | ||
- [Number](safeds/lang/Number.md) | ||
- [Pure](safeds/lang/Pure.md) | ||
- [PythonCall](safeds/lang/PythonCall.md) | ||
- [PythonModule](safeds/lang/PythonModule.md) | ||
- [PythonName](safeds/lang/PythonName.md) | ||
- [Repeatable](safeds/lang/Repeatable.md) | ||
- [String](safeds/lang/String.md) | ||
- [Target](safeds/lang/Target.md) | ||
- ml | ||
- classical | ||
- classification | ||
- [AdaBoostClassifier](safeds/ml/classical/classification/AdaBoostClassifier.md) | ||
- [Classifier](safeds/ml/classical/classification/Classifier.md) | ||
- [DecisionTreeClassifier](safeds/ml/classical/classification/DecisionTreeClassifier.md) | ||
- [GradientBoostingClassifier](safeds/ml/classical/classification/GradientBoostingClassifier.md) | ||
- [KNearestNeighborsClassifier](safeds/ml/classical/classification/KNearestNeighborsClassifier.md) | ||
- [LogisticRegressionClassifier](safeds/ml/classical/classification/LogisticRegressionClassifier.md) | ||
- [RandomForestClassifier](safeds/ml/classical/classification/RandomForestClassifier.md) | ||
- [SupportVectorMachineClassifier](safeds/ml/classical/classification/SupportVectorMachineClassifier.md) | ||
- regression | ||
- [AdaBoostRegressor](safeds/ml/classical/regression/AdaBoostRegressor.md) | ||
- [DecisionTreeRegressor](safeds/ml/classical/regression/DecisionTreeRegressor.md) | ||
- [ElasticNetRegressor](safeds/ml/classical/regression/ElasticNetRegressor.md) | ||
- [GradientBoostingRegressor](safeds/ml/classical/regression/GradientBoostingRegressor.md) | ||
- [KNearestNeighborsRegressor](safeds/ml/classical/regression/KNearestNeighborsRegressor.md) | ||
- [LassoRegressor](safeds/ml/classical/regression/LassoRegressor.md) | ||
- [LinearRegressionRegressor](safeds/ml/classical/regression/LinearRegressionRegressor.md) | ||
- [RandomForestRegressor](safeds/ml/classical/regression/RandomForestRegressor.md) | ||
- [Regressor](safeds/ml/classical/regression/Regressor.md) | ||
- [RidgeRegressor](safeds/ml/classical/regression/RidgeRegressor.md) | ||
- [SupportVectorMachineRegressor](safeds/ml/classical/regression/SupportVectorMachineRegressor.md) | ||
- nn | ||
- [FNNLayer](safeds/ml/nn/FNNLayer.md) | ||
- [NeuralNetworkClassifier](safeds/ml/nn/NeuralNetworkClassifier.md) | ||
- [NeuralNetworkRegressor](safeds/ml/nn/NeuralNetworkRegressor.md) |
Oops, something went wrong.