Home
last modified time | relevance | path

Searched refs:VectorTypeInformation (Results 1 – 23 of 23) sorted by relevance

/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-api/src/main/java/de/lmu/ifi/dbs/elki/data/type/
H A DVectorTypeInformation.java36 public class VectorTypeInformation<V extends FeatureVector<?>> extends SimpleTypeInformation<V> { class
48 …public static <V extends FeatureVector<?>> VectorTypeInformation<V> typeRequest(Class<? super V> c… in typeRequest()
49 return new VectorTypeInformation<>(cls, -1, Integer.MAX_VALUE); in typeRequest()
60 …public static <V extends FeatureVector<?>> VectorTypeInformation<V> typeRequest(Class<? super V> c… in typeRequest()
61 return new VectorTypeInformation<>(cls, mindim, maxdim); in typeRequest()
81 public VectorTypeInformation(Class<? super V> cls, int mindim, int maxdim) { in VectorTypeInformation() method in VectorTypeInformation
97 …public VectorTypeInformation(FeatureVector.Factory<V, ?> factory, ByteBufferSerializer<? super V> … in VectorTypeInformation() method in VectorTypeInformation
109 if(!super.isAssignableFromType(type) || !(type instanceof VectorTypeInformation)) { in isAssignableFromType()
112 VectorTypeInformation<?> othertype = (VectorTypeInformation<?>) type; in isAssignableFromType()
H A DTypeInformationSerializer.java96 if (VectorTypeInformation.class.equals(clz)) { in toByteBuffer()
98 VECTOR_TYPE_SERIALIZER.toByteBuffer(buffer, (VectorTypeInformation<?>) object); in toByteBuffer()
117 if (VectorTypeInformation.class.equals(clz)) { in getByteSize()
118 return 1 + VECTOR_TYPE_SERIALIZER.getByteSize((VectorTypeInformation<?>) object); in getByteSize()
134 …static final ByteBufferSerializer<VectorTypeInformation<?>> VECTOR_TYPE_SERIALIZER = new VectorTyp…
225 static class VectorTypeSerializer implements ByteBufferSerializer<VectorTypeInformation<?>> {
228 …public VectorTypeInformation<?> fromByteBuffer(ByteBuffer buffer) throws IOException, UnsupportedO… in fromByteBuffer()
239 return new VectorTypeInformation<NumberVector>(factory, serializer, mindim, maxdim); in fromByteBuffer()
250 …public void toByteBuffer(ByteBuffer buffer, VectorTypeInformation<?> object) throws IOException, U… in toByteBuffer()
275 …public int getByteSize(VectorTypeInformation<?> object) throws IOException, UnsupportedOperationEx… in getByteSize()
H A DVectorFieldTypeInformation.java34 public class VectorFieldTypeInformation<V extends FeatureVector<?>> extends VectorTypeInformation<V…
143 VectorTypeInformation<?> other = (VectorTypeInformation<?>) type; in isAssignableFromType()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-data/src/main/java/de/lmu/ifi/dbs/elki/data/type/
H A DTypeUtil.java117 …public static final VectorTypeInformation<NumberVector> NUMBER_VECTOR_VARIABLE_LENGTH = VectorType…
156 …public static final VectorTypeInformation<BitVector> BIT_VECTOR = VectorTypeInformation.typeReques…
166 …public static final VectorTypeInformation<SparseNumberVector> SPARSE_VECTOR_VARIABLE_LENGTH = Vect…
225 …public static final VectorTypeInformation<FeatureVector<?>> FEATURE_VECTORS = VectorTypeInformatio…
H A DMultivariateSeriesTypeInformation.java34 …ss MultivariateSeriesTypeInformation<V extends FeatureVector<?>> extends VectorTypeInformation<V> {
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-api/src/main/java/de/lmu/ifi/dbs/elki/data/
H A DFeatureVector.java23 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
39VectorTypeInformation<FeatureVector<?>> TYPE = VectorTypeInformation.typeRequest(FeatureVector.cla…
H A DSparseNumberVector.java24 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
37VectorTypeInformation<SparseNumberVector> VARIABLE_LENGTH = VectorTypeInformation.typeRequest(Spar…
H A DNumberVector.java25 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
50VectorTypeInformation<NumberVector> VARIABLE_LENGTH = VectorTypeInformation.typeRequest(NumberVect…
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-input/src/main/java/de/lmu/ifi/dbs/elki/datasource/filter/
H A DFilterUtil.java28 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
57 if(in instanceof VectorTypeInformation) { in guessFactory()
58 factory = (NumberVector.Factory<V>) ((VectorTypeInformation<V>) in).getFactory(); in guessFactory()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-input/src/main/java/de/lmu/ifi/dbs/elki/datasource/filter/typeconversions/
H A DMultivariateTimeSeriesFilter.java27 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
81 VectorTypeInformation<V> vin = (VectorTypeInformation<V>) in; in convertedType()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-input/src/main/java/de/lmu/ifi/dbs/elki/datasource/filter/cleaning/
H A DVectorDimensionalityFilter.java27 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
163 final VectorTypeInformation<V> castType = (VectorTypeInformation<V>) type; in updateMeta()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-distance/src/main/java/de/lmu/ifi/dbs/elki/distance/distancefunction/timeseries/
H A DAbstractEditDistanceFunction.java24 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
73 public VectorTypeInformation<? super NumberVector> getInputTypeRestriction() { in getInputTypeRestriction()
H A DLCSSDistanceFunction.java24 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
138 public VectorTypeInformation<? super NumberVector> getInputTypeRestriction() { in getInputTypeRestriction()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-data/src/main/java/de/lmu/ifi/dbs/elki/data/projection/
H A DNumericalFeatureSelection.java29 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
121 return VectorTypeInformation.typeRequest(NumberVector.class, mindim, Integer.MAX_VALUE); in getInputDataTypeInformation()
H A DFeatureSelection.java29 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
129 return VectorTypeInformation.typeRequest(cls, mindim, Integer.MAX_VALUE); in getInputDataTypeInformation()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-input/src/main/java/de/lmu/ifi/dbs/elki/datasource/parser/
H A DSimpleTransactionParser.java28 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
173 … meta.add(new VectorTypeInformation<>(BitVector.FACTORY, BitVector.SHORT_SERIALIZER, 0, numterms)); in getMeta()
H A DSparseNumberVectorLabelParser.java31 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
194 return new VectorTypeInformation<>(factory, factory.getDefaultSerializer(), mindim, maxdim); in getTypeInformation()
H A DTermFrequencyParser.java30 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
187 return new VectorTypeInformation<>(factory, factory.getDefaultSerializer(), mindim, maxdim); in getTypeInformation()
H A DNumberVectorLabelParser.java36 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
357 return new VectorTypeInformation<>(factory, factory.getDefaultSerializer(), mindim, maxdim); in getTypeInformation()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-distance/src/main/java/de/lmu/ifi/dbs/elki/distance/distancefunction/subspace/
H A DOnedimensionalDistanceFunction.java26 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
124 public VectorTypeInformation<? super NumberVector> getInputTypeRestriction() { in getInputTypeRestriction()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-input/src/main/java/de/lmu/ifi/dbs/elki/datasource/filter/normalization/instancewise/
H A DInstanceMeanVarianceNormalization.java26 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
142 multiplicity = ((VectorTypeInformation<?>) type).getMultiplicity(); in initializeOutputType()
H A DInstanceMinMaxNormalization.java26 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
126 multiplicity = ((VectorTypeInformation<?>) type).getMultiplicity(); in initializeOutputType()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-distance/src/test/java/de/lmu/ifi/dbs/elki/distance/distancefunction/
H A DAbstractDistanceFunctionTest.java33 import de.lmu.ifi.dbs.elki.data.type.VectorTypeInformation;
81 …length.", dist.getInputTypeRestriction().isAssignableFromType(new VectorTypeInformation<>(DoubleVe… in varyingLengthBasic()