index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/processor/LuQueryProcessor.java | package ai.preferred.cerebro.index.search.processor;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.ScoreDoc;
import ai.preferred.cerebro.index.exception.UnsupportedDataType;
import ai.preferred.cerebro.index.reque... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/processor/QueryProcessor.java | package ai.preferred.cerebro.index.search.processor;
import ai.preferred.cerebro.index.request.QueryRequest;
import ai.preferred.cerebro.index.response.QueryResponse;
import ai.preferred.cerebro.index.search.structure.VersatileSearcher;
/**
* An interface to enforce the functionality of any type
* of Processor used... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/CeBulkScorer.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.search.*;
import org.apache.lucene.util.Bits;
import ai.preferred.cerebro.index.utils.IndexUtils;
import java.io.IOException;
/**
* Cerebro internal scorer.
*/
public class CeBulkScorer extends BulkScorer {
private final Scorer sco... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/CeCollector.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.search.Collector;
import org.apache.lucene.search.LeafCollector;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TopDocs;
import ai.preferred.cerebro.index.store.C... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/CeTermMatchesIterator.java | package ai.preferred.cerebro.index.search.structure;
import java.io.IOException;
import org.apache.lucene.index.PostingsEnum;
import org.apache.lucene.search.MatchesIterator;
import org.apache.lucene.search.Query;
/**
* A {@link MatchesIterator} over a single term's postings list.
*/
class CeTermMatchesIterator im... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/CeTopScoreDocCollector.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.search.*;
import ai.preferred.cerebro.index.store.DocArray;
import ai.preferred.cerebro.index.utils.IndexUtils;
import java.io.IOException;
/**
* Class to handle Cerebro internal retriev... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/LatentVecScorer.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.index.PostingsEnum;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.search.Weight;
import org.apache.lucene.search.similarities.Similarity;
import java.io.IOException;
/**... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/LatentVectorQuery.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.index.*;
import org.apache.lucene.search.*;
import org.apache.lucene.search.similarities.Similarity;
import ai.preferred.cerebro.index.builder.LocalitySensitiveHash;
import ai.preferred.cerebro.index.similarity.CosineSimilarity;
import a... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/LuIndexSearcher.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.index.*;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.*;
import org.apache.lucene.store.NI... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/search/structure/VersatileSearcher.java | package ai.preferred.cerebro.index.search.structure;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.ScoreDoc;
import ai.preferred.cerebro.core.entity.AbstractVector;
import ai.preferred.cerebro.core.entity.TopKItem;
import ai.preferred.cerebro.core.jpa.entity.IndexMetadata;
... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/similarity/CosineSimilarity.java | package ai.preferred.cerebro.index.similarity;
import org.apache.lucene.document.Document;
import org.apache.lucene.index.FieldInvertState;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.search.CollectionStatistics;
import org.apache.lucene.searc... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/store/Container.java | package ai.preferred.cerebro.index.store;
import org.apache.lucene.util.ArrayUtil;
import ai.preferred.cerebro.index.utils.IndexUtils;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Random;
import java.util.function.Supplier;
/**
* Base class to contain, rank and retrieve to... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/store/DocArray.java | package ai.preferred.cerebro.index.store;
import org.apache.lucene.search.ScoreDoc;
/**
* A data construct to get out the top k document
* according a specific score measurement.
*/
public class DocArray extends Container<ScoreDoc> {
public DocArray(int size, boolean prePopulate) {
super(size, () -> ... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/store/DoubleStoredField.java | package ai.preferred.cerebro.index.store;
import org.apache.lucene.document.StoredField;
import org.apache.lucene.util.BytesRef;
import ai.preferred.cerebro.index.utils.IndexConst;
import java.nio.ByteBuffer;
/**
* Cerebro's class to store a double number into Lucene's index.
*/
public class DoubleStoredField ext... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/store/VectorField.java | package ai.preferred.cerebro.index.store;
import org.apache.lucene.document.StoredField;
import org.apache.lucene.util.BytesRef;
import ai.preferred.cerebro.index.utils.IndexConst;
import java.nio.ByteBuffer;
/**
* Cerebro's class to store a vector into Lucene's index.
*/
public class VectorField extends StoredFi... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/utils/IndexConst.java | package ai.preferred.cerebro.index.utils;
import java.util.Collections;
import java.util.Set;
/**
* Cerebro's reserved keyword list and necessary constants
*/
public class IndexConst {
//Reserved keywords to avoid using as fieldname
public final static String IDFieldName = "ID";
public final static Stri... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/utils/IndexUtils.java | package ai.preferred.cerebro.index.utils;
import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
import ai.preferred.cerebro.core.entity.AbstractVector;
import java.io.*;
import java.nio.ByteBuffer;
import java.util.*;
/**
* Utility class to fa... |
0 | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index | java-sources/ai/preferred/cerebro/1.0/ai/preferred/cerebro/index/utils/JPAUtils.java | package ai.preferred.cerebro.index.utils;
import java.util.List;
import ai.preferred.cerebro.core.entity.AbstractVector;
import ai.preferred.cerebro.core.jpa.entity.IndexMetadata;
import ai.preferred.cerebro.core.jpa.entity.IndexType;
import ai.preferred.cerebro.core.jpa.entity.ItemModel;
import ai.preferred.cerebro.... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/ApplyRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/Command.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/EvaluateRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/PlotData.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/PlotLinearRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/PrintRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/Shell.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/TrainLinearRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/TrainLogisticRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/WekaUtils.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E00_IceCream.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E01_MyFirstRegressionWithIceCream.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E02_ReadingRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E03_RawIceCream.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E04_RegressionForTemperature.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E05_TryX2Only.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E06_TryX1AndX2AndX3.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E07_AmazonText.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E08_AmazonCheap.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E09_AmazonExpensive.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E10_AmazonYourOwnWord.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E11_CameraCategories.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E12_CameraWithAutoFocus.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E13_ShuffleAndPartitionIceCream.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E14_TrainTest.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E15_TestX123.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E16_AmazonTrainTest.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E17_AmazonLogistic.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E18_LogisticRidgeRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E19_LinearRidgeRegression.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/exercise/E20_GrandFinale.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/io/ARFFDataReader.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/io/CSVInputData.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/io/CSVUtils.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/AddX2.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/AddX3.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/AverageCell.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/Dummy.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/EncodeTextAsFrequency.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/EncodeValueAsOneHot.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/Partition.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/ProcessingElement.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/ProjectColumns.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/RemoveColumn.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/RemoveOversizedRows.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/SelectEquals.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/Shuffle.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/SwapColumns.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/pe/data/Vocabulary.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/plot/XYChart.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression | java-sources/ai/preferred/csvpl/1.0/ai/preferred/regression/reset/DataFiles.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be use... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/Crawler.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/FatalHandlerException.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/Handler.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/HandlerRouter.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/Interruptible.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/ProxyProvider.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/Session.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/SleepScheduler.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ma... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/ThreadedWorkerManager.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/UrlRouter.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/ValidatorRouter.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/Worker.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/WorkerManager.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/AsyncFetcher.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/AsyncResponseConsumer.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/Callback.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/Fetcher.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/StopCodeException.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/StorageFetcher.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/fetcher/ValidationException.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/AbstractJobQueue.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/AbstractPriorityJobQueue.java | /*
* Copyright (c) 2019 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/FIFOJobQueue.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/FIFOQueueScheduler.java | package ai.preferred.venom.job;
/**
* For backwards compatibility.
*/
@Deprecated
public class FIFOQueueScheduler extends FIFOJobQueue {
}
|
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/Job.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/JobAttribute.java | /*
* Copyright (c) 2019 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/LazyPriorityJobQueue.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/LazyScheduler.java | /*
* Copyright (c) 2019 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/Priority.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/PriorityJobAttribute.java | /*
* Copyright (c) 2019 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... |
0 | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom | java-sources/ai/preferred/venom/4.2.7/ai/preferred/venom/job/PriorityJobQueue.java | /*
* Copyright 2018 Preferred.AI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.