Package

quasar

mimir

Permalink

package mimir

Visibility
  1. Public
  2. All

Type Members

  1. trait ArrayLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  2. trait AssignClusterModule[M[+_]] extends ColumnarTableLibModule[M] with ModelLibModule[M]

    Permalink
  3. class BigDecimalPrecision extends AnyRef

    Permalink
  4. case class ClassificationForest[K](trees: List[DecisionTree[K]]) extends Forest[K] with Product with Serializable

    Permalink
  5. class ClassificationTreeMaker[K] extends TreeMaker[K]

    Permalink
  6. trait ClusteringLibModule[M[+_]] extends ColumnarTableModule[M] with AssignClusterModule[M]

    Permalink
  7. trait ColumnarTableLibModule[M[+_]] extends TableLibModule[M] with ColumnarTableModule[M]

    Permalink
  8. trait CondRewriter extends DAG

    Permalink
  9. trait CrossOrdering extends DAG

    Permalink
  10. trait DAG extends Instructions

    Permalink
  11. trait DAGTransform extends DAG

    Permalink
  12. sealed trait DecisionTree[A] extends AnyRef

    Permalink

    A simple decision tree.

    A simple decision tree. Each internal node is assigned an axis aligned boundary which divides the space in 2 (left and right). To determine the value of an input point, we simple determine which side of the boundary line the input lies on, then recurse on that side. When we reach a leaf node, we output its value.

  13. trait DepFn1[In <: Singleton, Out[_ <: In]] extends AnyRef

    Permalink
  14. trait EvaluatorMethodsModule[M[+_]] extends DAG with TableModule[M] with TableLibModule[M] with OpFinderModule[M]

    Permalink
  15. trait EvaluatorModule[M[+_]] extends CrossOrdering with Memoizer with TypeInferencer with CondRewriter with JoinOptimizerModule[M] with OpFinderModule[M] with StaticInlinerModule[M] with ReductionFinderModule[M] with TransSpecableModule[M] with PredicatePullupsModule[M] with TableModule[M] with TableLibModule[M]

    Permalink
  16. trait ExceptionQueryLogger[M[+_], -P] extends QueryLogger[M, P]

    Permalink
  17. trait FSLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  18. case class FatalQueryException(msg: String) extends RuntimeException with Product with Serializable

    Permalink
  19. sealed trait Forest[A] extends AnyRef

    Permalink
  20. trait InfixLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  21. trait JoinOptimizerModule[M[+_]] extends DAGTransform with TransSpecableModule[M]

    Permalink
  22. trait KMediansCoreSetClustering extends AnyRef

    Permalink
  23. case class Leaf[A](value: A) extends DecisionTree[A] with Product with Serializable

    Permalink
  24. trait LoggingQueryLogger[M[+_], P] extends QueryLogger[M, P]

    Permalink
  25. class LongAdder extends AnyRef

    Permalink
  26. trait LongIdMemoryDatasetConsumer[M[+_]] extends MemoryDatasetConsumer[M]

    Permalink
  27. trait MathLibModule[M[+_]] extends ColumnarTableLibModule[M] with InfixLibModule[M]

    Permalink
  28. trait Memoizer extends DAG

    Permalink
  29. trait MemoryDatasetConsumer[M[+_]] extends EvaluatorModule[M]

    Permalink
  30. trait ModelLibModule[M[+_]] extends AnyRef

    Permalink
  31. trait NormalizationHelperModule[M[+_]] extends ColumnarTableLibModule[M] with ReductionLibModule[M]

    Permalink
  32. trait NormalizationLibModule[M[+_]] extends NormalizationHelperModule[M]

    Permalink
  33. trait OpFinderModule[M[+_]] extends Instructions with TableModule[M] with TableLibModule[M]

    Permalink
  34. class Precog extends SecureVFSModule[Future, Slice] with ActorVFSModule with VFSColumnarTableModule

    Permalink
  35. trait PredicatePullupsModule[M[+_]] extends TransSpecableModule[M]

    Permalink
  36. trait QueryLogger[M[+_], -P] extends AnyRef

    Permalink
  37. trait RandomForestLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  38. trait RandomLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  39. trait ReductionFinderModule[M[+_]] extends DAG with EvaluatorMethodsModule[M] with TransSpecableModule[M]

    Permalink
  40. trait ReductionLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  41. case class RegressionForest(trees: List[DecisionTree[Double]]) extends Forest[Double] with Product with Serializable

    Permalink
  42. class RegressionTreeMaker extends TreeMaker[Double]

    Permalink
  43. case class Split[A](variable: Int, boundary: Double, left: DecisionTree[A], right: DecisionTree[A]) extends DecisionTree[A] with Product with Serializable

    Permalink
  44. trait StaticInlinerModule[M[+_]] extends DAG with EvaluatorMethodsModule[M]

    Permalink
  45. trait StatsLibModule[M[+_]] extends ColumnarTableLibModule[M] with ReductionLibModule[M]

    Permalink
  46. trait StdLibEvaluatorStack[M[+_]] extends EvaluatorModule[M] with StdLibModule[M] with StdLibOpFinderModule[M] with StdLibStaticInlinerModule[M] with ReductionFinderModule[M] with JoinOptimizerModule[M] with PredicatePullupsModule[M]

    Permalink
  47. trait StdLibModule[M[+_]] extends InfixLibModule[M] with UnaryLibModule[M] with ArrayLibModule[M] with MathLibModule[M] with TypeLibModule[M] with StringLibModule[M] with StatsLibModule[M] with SummaryLibModule[M] with NormalizationLibModule[M] with ClusteringLibModule[M] with RandomForestLibModule[M] with FSLibModule[M] with RandomLibModule[M]

    Permalink
  48. trait StdLibOpFinderModule[M[+_]] extends Instructions with StdLibModule[M] with OpFinderModule[M]

    Permalink
  49. trait StdLibStaticInlinerModule[M[+_]] extends StaticInlinerModule[M] with StdLibModule[M]

    Permalink
  50. trait StringLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  51. trait SummaryLibModule[M[+_]] extends ReductionLibModule[M]

    Permalink
  52. trait TableLibModule[M[+_]] extends TableModule[M] with TransSpecModule

    Permalink
  53. trait TimingQueryLogger[M[+_], P] extends QueryLogger[M, P]

    Permalink
  54. trait TransSpecableModule[M[+_]] extends TransSpecModule with TableModule[M] with EvaluatorMethodsModule[M]

    Permalink
  55. trait TreeMaker[A] extends AnyRef

    Permalink
  56. case class TreeMakerOptions(features: Int, featuresSampled: Int, minSplitSize: Int) extends Product with Serializable

    Permalink
  57. trait TypeInferencer extends DAG

    Permalink
  58. trait TypeLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink
  59. trait UnaryLibModule[M[+_]] extends ColumnarTableLibModule[M]

    Permalink

Value Members

  1. object BigDecimalOperations

    Permalink
  2. object ClassificationForest extends Serializable

    Permalink
  3. object LoggingQueryLogger

    Permalink
  4. object Mimir extends BackendModule with Logging

    Permalink
  5. object RangeUtil

    Permalink
  6. object RegressionForest extends Serializable

    Permalink
  7. object StdLib

    Permalink

Ungrouped