Package org.jamesii.asf.spdm.util

Examples of org.jamesii.asf.spdm.util.FixedPerfPredictor


    // Create configuration list sorted by overall performance
    List<Configuration> configs =
        new ArrayList<>(performances.keySet());
    Collections.sort(configs, new ConfigurationComparator(performances));

    return new FixedPerfPredictor(configs);
  }
View Full Code Here


    for (PerformanceTuple tuple : trainingData) {
      configs.add(tuple.getConfiguration());
    }
    List<Configuration> configList = new ArrayList<>(configs);
    Collections.shuffle(configList);
    return new FixedPerfPredictor(configList);
  }
View Full Code Here

TOP

Related Classes of org.jamesii.asf.spdm.util.FixedPerfPredictor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.