-
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
1 parent
500a946
commit e9a55e6
Showing
26 changed files
with
19 additions
and
362 deletions.
There are no files selected for viewing
27 changes: 0 additions & 27 deletions
27
DSL/de.unibonn.simpleml/src/main/resources/stdlib/simpleml/dataset/conversion.smlstub
This file was deleted.
Oops, something went wrong.
79 changes: 0 additions & 79 deletions
79
DSL/de.unibonn.simpleml/src/main/resources/stdlib/simpleml/dataset/dataset.smlstub
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
DSL/de.unibonn.simpleml/src/main/resources/stdlib/simpleml/metrics/classification.smlstub
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
DSL/de.unibonn.simpleml/src/main/resources/stdlib/simpleml/metrics/regression.smlstub
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
DSL/de.unibonn.simpleml/src/main/resources/stdlib/simpleml/model/model.smlstub
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...l/src/main/resources/stdlib/simpleml/model/supervised/classification/decisionTree.smlstub
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
...l/src/main/resources/stdlib/simpleml/model/supervised/classification/randomForest.smlstub
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
...n.simpleml/src/main/resources/stdlib/simpleml/model/supervised/classification/svm.smlstub
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...pleml/src/main/resources/stdlib/simpleml/model/supervised/regression/decisionTree.smlstub
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...l/src/main/resources/stdlib/simpleml/model/supervised/regression/linearRegression.smlstub
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
...pleml/src/main/resources/stdlib/simpleml/model/supervised/regression/randomForest.smlstub
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...onn.simpleml/src/main/resources/stdlib/simpleml/model/supervised/regression/ridge.smlstub
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 |
---|---|---|
@@ -1,21 +1,5 @@ | ||
## Tutorial | ||
# safe-data-science | ||
|
||
The following page provides a tutorial for users of Simple-ML: | ||
[Read the docs][docs] | ||
|
||
* [Tutorial][tutorial] | ||
|
||
## Additional Documentation for Developers | ||
|
||
Developers get more information about the implementation of the specific components here: | ||
|
||
* Components | ||
* [DSL][adding-new-language-feature] | ||
|
||
[tutorial]: ./docs/Tutorial.md | ||
[data_api]: ./docs/Data-API.md | ||
[data_set_api]: ./docs/Data-Set-API.md | ||
[data_catalog_api]: ./docs/Data-Catalog-API.md | ||
[frontend]: ./docs/Front-End.md | ||
[ml_catalog_api]: ./docs/Machine-Learning-Catalog-API.md | ||
[runtime]: ./docs/Runtime-Server.md | ||
[adding-new-language-feature]: ./docs/DSL/development/how-to-add-a-new-language-concept.md | ||
[docs]: ./docs/README.md |
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../tests/simpleml/codegen/test_eager_and.py → ...me/Runner/tests/codegen/test_eager_and.py
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.
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,33 +1,9 @@ | ||
## Table of Contents | ||
|
||
* [Tutorial][tutorial] | ||
* For Developers: Components | ||
* [Frontend][frontend] | ||
* [Runtime][runtime] | ||
* [Data API][data_api] | ||
* [DSL][adding-new-language-feature] | ||
* [DSL][dsl]: Documentation of the Safe-DS DSL. | ||
* [Stdlib][stdlib]: Overview of the elements in the Safe-DS standard library. | ||
* [DSL Development Checklist][adding-new-language-concept]: How to add new language concepts to the DSL. | ||
|
||
[tutorial]: ./Tutorial.md | ||
[data_api]: ./Data-API.md | ||
[data_set_api]: ./Data-Set-API.md | ||
[data_catalog_api]: ./Data-Catalog-API.md | ||
[frontend]: ./Front-End.md | ||
[ml_catalog_api]: ./Machine-Learning-Catalog-API.md | ||
[runtime]: ./Runtime-Server.md | ||
[adding-new-language-feature]: ./DSL/development/how-to-add-a-new-language-concept.md | ||
|
||
Tutorial - [Idea and basic concepts][tutorial_concepts] | [Interface][tutorial_interface] | [Functions][functions] | [DSL][dsl-tutorial] | ||
|
||
# Tutorial | ||
|
||
The Simple-ML tutorial consists of the following four steps: | ||
|
||
* (optional) [DSL][dsl-tutorial]: A documentation of the Simple-ML workflow language (DSL) and stub languages. | ||
* (optional) [Functions][functions]: A overview of the most relevant classes, functions and methods for creating workflows. | ||
|
||
The installation is described on the [Simple-ML main GitHub page][main-readme]. | ||
|
||
[main-readme]: ../README.md | ||
[functions]: ./Stdlib/API/README.md | ||
[dsl-tutorial]: ./DSL/tutorial/README.md | ||
[tutorial]: ./Tutorial.md | ||
[dsl]: ./DSL/tutorial/README.md | ||
[stdlib]: ./Stdlib/API/README.md | ||
[adding-new-language-concept]: ./DSL/development/how-to-add-a-new-language-concept.md |
Oops, something went wrong.