You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each functionality in learningOrchestra is contained in its own class. Check the [python client docs](https://learningorchestra.github.io/pythonClient/) for all the available.
22
+
Each interoperable REST API service described in Learning Orchestra is translated
23
+
into Python. Details at [python client docs](https://learningorchestra.github.io/pythonClient/).
24
+
Furthermore, some extra method calls are included into Python client API to simplify
25
+
even more the Machine Learning services. For instance, the REST API is asynchronous,
26
+
except for GET HTTP requests, but the Python client enables also the synchronous API calls.
27
+
The wait API method, useful to receive notifications from ML pipes, is another important
28
+
example to illustrate an extension of the original REST API.
29
+
23
30
24
31
# Example
25
32
26
-
*[Here](examples/titanic.py) has an example using the [Titanic Dataset](https://www.kaggle.com/c/titanic/overview):
27
-
*[Here](examples/sentiment_analysis.py) has an example using the [Sentiment Analysis On IMDb reviews](https://www.kaggle.com/avnika22/imdb-perform-sentiment-analysis-with-scikit-learn):
28
-
*[Here](examples/mnist_async.py) has an example using the [MNIST Dataset](http://yann.lecun.com/exdb/mnist/):
33
+
*[Here](pipeline/titanic.py) has an example using the [Titanic Dataset](https://www.kaggle.com/c/titanic/overview):
34
+
*[Here](pipeline/imdb.py) has an example using the [Sentiment Analysis On IMDb reviews](https://www.kaggle.com/avnika22/imdb-perform-sentiment-analysis-with-scikit-learn):
35
+
*[Here](pipeline/mnist_async.py) has an example using the [MNIST Dataset](http://yann.lecun.com/exdb/mnist/):
0 commit comments