import java.util.ArrayList;
import java.util.List;
import java.util.Random;

public class MultiViewData {
    public static void main(String[] args) {
        List<Double> inputData = new ArrayList<>();
        int ret = 0;

        // Add code

        if (ret == 0) {
            // Generate some random data and make predictions, five times
            final int TRIALS = 5;
            Random rand = new Random();
            for (int i = 0; i < TRIALS; ++i) {
                final int NUM = 1000;
                for (int j = 0; j < NUM; ++j) {
                    inputData.add((double) rand.nextInt(1000) / 1000); // generate a number between 0 and 1
                }
                // Make a prediction using the trained model and display it in all views

                // clear out the list for the next trial
                inputData.clear();
                System.out.println();
            }
        }

        // Add code

        // Do something with the return value if needed
    }
}
