Serialized Form


Package uk.ac.gla.dcs.renaissance.iqir

Class uk.ac.gla.dcs.renaissance.iqir.DensityTracker extends bpiwowar.maths.eigen.IncrementalSymmetricED implements Serializable

serialVersionUID: 3L

Serialized Fields

map

it.unimi.dsi.fastutil.ints.Int2IntSortedMap map
Map a word id to a new id such that we deal only with dense matrices


compactionInterval

int compactionInterval
Compact the data structure every N vectors added


compactionTreshold

double compactionTreshold
Compaction threshold


sum

bpiwowar.maths.matrix.DenseDoubleMatrix1D sum
Our current sum (null means that we don't store)


numberOfUpdates

int numberOfUpdates
Total number of updates


updateMap

boolean updateMap
True if the map should be updated (otherwise, components are ignored)


weightsSum

double weightsSum
Sum of the weights


nonZeroSelector

bpiwowar.maths.eigen.selector.Selector nonZeroSelector

Class uk.ac.gla.dcs.renaissance.iqir.QIAException extends RuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

context

ArrayList<E> context

Class uk.ac.gla.dcs.renaissance.iqir.SubspaceTracker extends Object implements Serializable

serialVersionUID: 3L

Serialized Fields

map

it.unimi.dsi.fastutil.ints.Int2IntRBTreeMap map
Deprecated. 
Map a word id to a new id such that we deal only with dense matrices


svd

bpiwowar.maths.svd.IncrementalSVD svd
Deprecated. 
Our current SVD decomposition


negativesvd

bpiwowar.maths.svd.IncrementalSVD negativesvd
Deprecated. 
Our current SVD decomposition (negative subspace)


compactionInterval

int compactionInterval
Deprecated. 
Compact the data structure every N vectors added


sum

bpiwowar.maths.matrix.DenseDoubleMatrix1D sum
Deprecated. 
Our current sum (null means that we don't store)


Package uk.ac.gla.dcs.renaissance.iqir.parser

Class uk.ac.gla.dcs.renaissance.iqir.parser.ParseException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class uk.ac.gla.dcs.renaissance.iqir.parser.Token extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class uk.ac.gla.dcs.renaissance.iqir.parser.TokenMgrError extends Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package uk.ac.gla.dcs.renaissance.iqir.qpr

Class uk.ac.gla.dcs.renaissance.iqir.qpr.Density extends EigenDecomposition implements Serializable

serialVersionUID: 1L

Class uk.ac.gla.dcs.renaissance.iqir.qpr.EigenDecomposition extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

mS

bpiwowar.maths.matrix.DiagonalDoubleMatrix mS
The singular values


mU

bpiwowar.maths.matrix.DoubleMatrix2D mU
The basis of the subspace


map

it.unimi.dsi.fastutil.ints.Int2IntSortedMap map
Map from global id (index-based) to local ids - the map should be ordered (this is needed for fast intersections)

Class uk.ac.gla.dcs.renaissance.iqir.qpr.Subspace extends EigenDecomposition implements Serializable

serialVersionUID: 1L


Package uk.ac.gla.dcs.renaissance.iqir.query

Class uk.ac.gla.dcs.renaissance.iqir.query.TopicDensity extends ArrayList<WeightedDensity> implements Serializable

serialVersionUID: 1L

Class uk.ac.gla.dcs.renaissance.iqir.query.WeightedDensity extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

weight

double weight

density

Density density

Package uk.ac.gla.dcs.renaissance.ir

Class uk.ac.gla.dcs.renaissance.ir.DefaultDocumentFactory extends it.unimi.dsi.mg4j.document.PropertyBasedDocumentFactory implements Serializable

serialVersionUID: 6311198380557719462L


Package uk.ac.gla.dcs.renaissance.ir.xmlpos

Class uk.ac.gla.dcs.renaissance.ir.xmlpos.POSTermProcessor extends bpiwowar.experiments.AbstractTask implements Serializable

serialVersionUID: 3L

Serialized Fields

stopwords

TreeSet<E> stopwords

stoplemmas

TreeSet<E> stoplemmas

posMap

TreeMap<K,V> posMap

stopSymbols

it.unimi.dsi.fastutil.chars.CharSet stopSymbols

filterNonStandardWords

boolean filterNonStandardWords

stemmer

it.unimi.dsi.mg4j.index.snowball.AbstractSnowballTermProcessor stemmer

Class uk.ac.gla.dcs.renaissance.ir.xmlpos.XMLPOSDocumentFactory extends DefaultDocumentFactory implements Serializable

serialVersionUID: 3L

Serialization Methods

readResolve

Object readResolve()
Serialized Fields

titleXPath

bpiwowar.xml.SimpleXPath titleXPath

gzipped

boolean gzipped

fis

boolean fis

Package uk.ac.gla.dcs.renaissance.kqpr

Class uk.ac.gla.dcs.renaissance.kqpr.Density extends KernelEigenDecomposition<T extends KernelVector> implements Serializable

serialVersionUID: 1L

Class uk.ac.gla.dcs.renaissance.kqpr.KernelEigenDecomposition extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

mX

KernelVectorList<T extends KernelVector> mX
The base vector list


mY

bpiwowar.maths.matrix.DoubleMatrix2D mY
The basis of the subspace


mS

bpiwowar.maths.matrix.DiagonalDoubleMatrix mS
The singular values

Class uk.ac.gla.dcs.renaissance.kqpr.Subspace extends KernelEigenDecomposition<T extends KernelVector> implements Serializable

serialVersionUID: 1L


Package uk.ac.gla.dcs.renaissance.mg4j

Class uk.ac.gla.dcs.renaissance.mg4j.GetMG4JWordRecogniser.Recogniser extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

indexCfg

IndexConfiguration indexCfg

termProcessor

it.unimi.dsi.mg4j.index.TermProcessor termProcessor

Package uk.ac.gla.dcs.renaissance.mg4j.index

Class uk.ac.gla.dcs.renaissance.mg4j.index.DigitsSqueezer extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

symbol

String symbol

Class uk.ac.gla.dcs.renaissance.mg4j.index.ProcessorPipeline extends Object implements Serializable

serialVersionUID: 1960485797187056313L

Serialized Fields

processors

ArrayList<E> processors
List of term processors

Class uk.ac.gla.dcs.renaissance.mg4j.index.StopListProcessor extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

stopwords

TreeSet<E> stopwords

Class uk.ac.gla.dcs.renaissance.mg4j.index.StopListProcessor2 extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

stopwords

TreeSet<E> stopwords

Class uk.ac.gla.dcs.renaissance.mg4j.index.TermFilter extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

allowNumber

boolean allowNumber
True if we keep words with number in them


allowMixed

boolean allowMixed
True if we keep words with number in them


minimumLength

int minimumLength
Minimum token length


Package uk.ac.gla.dcs.renaissance.mg4j.trec

Class uk.ac.gla.dcs.renaissance.mg4j.trec.TRECDocumentCollection extends AbstractDocumentCollection implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Deserialization

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

file

String[] file
The list of the files containing the documents.


compression

TRECDocumentCollection.Compression compression
Whether the files in TRECDocumentCollection.file are gzipped.


factory

it.unimi.dsi.mg4j.document.DocumentFactory factory
The document factory.


bufferSize

int bufferSize
The buffer size.

Class uk.ac.gla.dcs.renaissance.mg4j.trec.TRECDocumentFactory extends it.unimi.dsi.mg4j.document.PropertyBasedDocumentFactory implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

collectionType

TRECDocumentFactory.CollectionType collectionType
The collection type (e.g. TREC, WARC)

Class uk.ac.gla.dcs.renaissance.mg4j.trec.WARCDocumentCollection extends TRECDocumentCollection implements Serializable

serialVersionUID: 1L

Serialized Fields

debugEnabled

boolean debugEnabled



Copyright © 2011. All Rights Reserved.