Skip to content

Commit

Permalink
minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinAV committed Sep 26, 2023
1 parent 2cd8760 commit 6cf9a9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@

Taipy requires **Python 3.8** or newer.

Welcome to the **Tutorial** guide, which will walk you through creating a complete application from the front end
to the back end. You don't need any prior knowledge to complete this tutorial.
Welcome to the **Tutorial** guide, which will walk you through creating a complete application
from the front end to the back end. You don't need any prior knowledge to complete this tutorial.

![Tutorial application](step_01/overview.gif){ width=700 style="margin:auto;display:block;border: 4px solid rgb(210,210,210);border-radius:7px" }

In the **"Tutorial"** each step concentrates on fundamental ideas about *Taipy*.

## Objective of the Application

You are about to create a comprehensive multi-page application designed for data visualization, predictive analytics, and comparative assessment. This app processes sales figures for display. One of its dedicated pages allows you to use two predictive models where predictions can be fine-tuned through some parameters. To round it off, the performance page offers a graphical comparison of various predictive outcomes.
You are about to create a comprehensive multi-page application designed for data visualization,
predictive analytics, and comparative assessment. This app processes sales figures for display.
One of its dedicated pages allows you to use two predictive models where predictions can be
fine-tuned through some parameters. To round it off, the performance page offers a graphical
comparison of various predictive outcomes.

## Before we begin

Expand All @@ -38,7 +42,8 @@ $ pip install statsmodels
can guide you through the process.


Once Taipy is installed, you can use the CLI to scaffold an application folder. Run the create command line with default template and answer basic questions as follows:
Once Taipy is installed, you can use the CLI to scaffold an application folder. Run the create
command line with default template and answer basic questions as follows:

``` console
> taipy create --template default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Taipy provides an easy Scenario management to efficiently:

It comes in handy in the context of Machine Learning or Mathematical optimization.

To apprehend what is a _Scenario_, you need to understand the _Data node_ and _Task_ concepts.
To apprehend what is a **Scenario**, you need to understand the **Data node** and **Task** concepts.

- [**Data Nodes**](../../../../manuals/core/concepts/data-node.md): are the translation of variables in
Taipy. Data Nodes don't contain the data itself but point to the data and know how to retrieve
Expand Down Expand Up @@ -127,7 +127,7 @@ metrics_baseline_cfg = Config.configure_data_node(id="metrics_baseline")
metrics_ml_cfg = Config.configure_data_node(id="metrics_ml")
```

## Configuring Taskss
## Configuring Tasks

Tasks are the translation of functions in Taipy. Each task has an ID, a function, inputs, and outputs.

Expand Down Expand Up @@ -170,7 +170,7 @@ with all the predictions and historical data.

## Scenario Configuration

All of these task and Data Node configurations can create a scenario. These tasks
All the task and Data Node configurations can create a scenario. These tasks
that form an execution graph will be executed when a scenario is submitted.

```python
Expand Down

0 comments on commit 6cf9a9c

Please sign in to comment.