001/*
002 * Copyright (c) 2015-2020, Oracle and/or its affiliates. All rights reserved.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.tribuo.classification.experiments;
018
019import com.oracle.labs.mlrg.olcut.config.ConfigurationManager;
020import com.oracle.labs.mlrg.olcut.config.Options;
021import com.oracle.labs.mlrg.olcut.config.UsageException;
022import org.tribuo.Trainer;
023import org.tribuo.classification.Label;
024import org.tribuo.classification.TrainTestHelper;
025import org.tribuo.data.DataOptions;
026
027import java.io.IOException;
028import java.util.logging.Logger;
029
030/**
031 * Build and run a classifier for a standard dataset.
032 */
033public class TrainTest {
034
035    private static final Logger logger = Logger.getLogger(TrainTest.class.getName());
036
037    public static class AllClassificationOptions implements Options {
038        @Override
039        public String getOptionsDescription() {
040            return "Trains and tests the specified classifier on the supplied datasets.";
041        }
042
043        public AllTrainerOptions trainerOptions;
044        public DataOptions general;
045    }
046
047    public static void main(String[] args) throws IOException {
048        AllClassificationOptions o = new AllClassificationOptions();
049        try (ConfigurationManager cm = new ConfigurationManager(args,o)){
050            Trainer<Label> trainer = o.trainerOptions.getTrainer();
051            TrainTestHelper.run(cm, o.general, trainer);
052        } catch (UsageException e) {
053            logger.info(e.getMessage());
054            return;
055        }
056    }
057}