This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package vahy.collectors; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.List; | |
import java.util.Set; | |
import java.util.SplittableRandom; | |
import java.util.function.BiConsumer; | |
import java.util.function.BinaryOperator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RandomizedMaxCollector<elementType> implements Collector<elementType, List<elementType>, elementType> { | |
private final Comparator<elementType> comparator; | |
private final SplittableRandom random; | |
public RandomizedMaxCollector(Comparator<elementType> comparator, SplittableRandom random) { | |
this.comparator = comparator; | |
this.random = random; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Filip Procházka | |
email = [email protected] | |
[github] | |
token = 123 | |
user = fprochazka | |
[core] | |
whitespace = fix,-indent-with-non-tab,space-before-tab,trailing-space,cr-at-eol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IV029 Úvod do transparentní intenzionální logiky | |
PV211 Introduction to Information Retrieval | |
IA158 Real Time Systems |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Theano CRBM implementation. | |
For details, see: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv | |
Sample data: | |
http://www.uoguelph.ca/~gwtaylor/publications/nips2006mhmublv/motion.mat | |
@author Graham Taylor""" | |
import numpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.NullPointerException | |
at org.optaplanner.core.config.localsearch.LocalSearchPhaseConfig.buildMoveSelector(LocalSearchPhaseConfig.java:230) | |
at org.optaplanner.core.config.localsearch.LocalSearchPhaseConfig.buildDecider(LocalSearchPhaseConfig.java:129) | |
at org.optaplanner.core.config.localsearch.LocalSearchPhaseConfig.buildPhase(LocalSearchPhaseConfig.java:114) | |
at org.optaplanner.core.config.localsearch.LocalSearchPhaseConfig.buildPhase(LocalSearchPhaseConfig.java:57) | |
at org.optaplanner.core.config.solver.SolverConfig.buildPhaseList(SolverConfig.java:251) | |
at org.optaplanner.core.config.solver.SolverConfig.buildSolver(SolverConfig.java:184) | |
at org.optaplanner.examples.common.integration.SolverConfigCombinationsTest.defaultMoveSelectorWithMultipleVariables(SolverConfigCombinationsTest.java:56) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) |