593b94c120
pytest / Unit Tests (push) Has been cancelled
pytest / Integration (integration_tests_a) (push) Has been cancelled
pytest / Integration (integration_tests_b) (push) Has been cancelled
pytest / Integration (integration_tests_c) (push) Has been cancelled
pytest / Integration (integration_tests_d) (push) Has been cancelled
pytest / Integration (integration_tests_e) (push) Has been cancelled
pytest / Integration (integration_tests_f) (push) Has been cancelled
pytest / Integration (integration_tests_g) (push) Has been cancelled
pytest / Integration (integration_tests_h) (push) Has been cancelled
pytest / Integration (integration_tests_i) (push) Has been cancelled
pytest / Integration (integration_tests_j) (push) Has been cancelled
pytest / Distributed (distributed_a) (push) Has been cancelled
pytest / Distributed (distributed_b) (push) Has been cancelled
pytest / Distributed (distributed_c) (push) Has been cancelled
pytest / Distributed (distributed_d) (push) Has been cancelled
pytest / Distributed (distributed_e) (push) Has been cancelled
pytest / Distributed (distributed_f) (push) Has been cancelled
pytest / Minimal Install (push) Has been cancelled
pytest / Event File (push) Has been cancelled
pytest (slow) / py-slow (push) Has been cancelled
Publish JSON Schema / publish-schema (push) Has been cancelled
21 lines
611 B
Bash
Executable File
21 lines
611 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fail fast if an error occurs
|
|
set -e
|
|
|
|
# Get the directory of this script, which contains the config file
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Download the data
|
|
wget https://ludwig.ai/latest/data/rotten_tomatoes.csv
|
|
wget https://ludwig.ai/latest/data/rotten_tomatoes_test.csv
|
|
|
|
# Check the first 5 rows
|
|
head -n 5 rotten_tomatoes.csv
|
|
|
|
# Train
|
|
ludwig train --config ${SCRIPT_DIR}/rotten_tomatoes.yaml --dataset rotten_tomatoes.csv
|
|
|
|
# Predict and Evaluate
|
|
ludwig predict --model_path results/experiment_run/model --dataset rotten_tomatoes_test.csv
|