This guide walks you through a minimal end-to-end pipeline: load a CSV, split the data, train a Random Forest, and evaluate it.Documentation Index
Fetch the complete documentation index at: https://docs.clickml.app/llms.txt
Use this file to discover all available pages before exploring further.
1. Create a project
- Sign in at app.clickml.com.
- Click New Project.
- Give it a name, select a problem type (Classification or Regression), and confirm.
2. Add a CSV Reader
Drag the CSV Reader component onto the canvas. Click it to open the inspector panel. Upload your CSV file (or paste a URL). Make sure your file has a header row.3. Add a Train-Test Split
Drag Train-Test Split onto the canvas, to the right of CSV Reader. Connect the CSV Reader’s output handle to the Train-Test Split’s input handle by dragging between the two dots. In the inspector, set your target column (the column you want to predict) and adjust the test size if needed (default: 20%).4. Add a model
Drag Random Forest Classifier (or Random Forest Regressor for regression problems) onto the canvas. Connect theX Train and Y Train output handles from Train-Test Split to the model’s input.
5. Add Inference
Drag the Inference component onto the canvas. Connect the model output and theX Test handle from Train-Test Split to Inference’s inputs.
6. Add Evaluation
Drag Evaluation onto the canvas. ConnectY Test from Train-Test Split and the predictions output from Inference to Evaluation’s inputs.
Set the problem type in Evaluation’s inspector to match your project.