Follow the Example
The following is an explanation of a usage scenario to help you understand the functions of Link. First, install and execute Link. Second, Load the sample source provided and follow the steps below to learn the key functions of Link.
To run the sample source, the package listed below must me installed. Please ensure that the package is installed to avoid any errors.
- Install and execute Link
- Load the downloaded sample source (Link_SampleCode(iris_classification).ipynb)
- Open the component registration menu (in the top right corner, click 'Add to Pipeline')
- Input component information to be registered
- Component has been added to pipeline panel
- Execute component(Click the newly added component and click the Run button in the center.)
- Execute data cell
- Create a data frame and connect the parent component
- Component connection complete
- Create Train, Valid split components, and connect them to the parent component
: Split data into training and validation datasets.
- Component connection complete
- Create a data loader component and connect it to the parent component
- Component connection complete
- Define Model component creation (No parent component connected)
: Model definition and creation are independent and unrelated to data loading, therefore they are not linked to the parent component.
- Define Model component creation complete
- Define Model component creation and connect it to the parent component
- Create Model component creation and connect parent component
- Define Logger component creation (No connection to parent component)
: Define logger to determine whether the model has properly learned.
- Complete the Define logger component creation
- Connect parent component once train model is created.
: Connect 3 parent components (data loader, create model, define logger) for model training.
- Train model component creation complete
- Train Model execution
: Execute the Train Model component to run the connected components in sequence and inspect the results.
Updated 8 months ago