在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#图形模型中运行贝叶斯推断的框架(Infer.NET)源码

C#图形模型中运行贝叶斯推断的框架(Infer.NET)源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:8.19M
  • 下载次数:0
  • 浏览次数:4
  • 发布时间:2024-04-28
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: .NET 贝叶斯 NET 模型 图形

实例介绍

【实例简介】

Infer.NET是一个用于在图形模型中运行贝叶斯推断的框架。它也可以用于概率编程。

你可以使用Infer.NET来解决许多不同类型的机器学习问题 - 从标准问题如分类、推荐或聚类,到针对特定领域问题的定制解决方案。

Infer.NET已在信息检索、生物信息学、流行病学、视觉等多个领域得到应用。

【实例截图】
【核心代码】
文件清单
└── infer-885a5e561e0d4adda2d7a629409d72aac46d8b96
    ├── build
    │   ├── all-compiler-options.yml
    │   ├── common.props
    │   ├── copyassemblies.sh
    │   ├── evaluator-netcore.yml
    │   ├── evaluator-netframework.yml
    │   ├── netcoretest-fast.yml
    │   ├── nightly-netcore.yml
    │   ├── nightly-windows.yml
    │   ├── nuget-properties.props
    │   ├── pr-factordocs.yml
    │   ├── pr-msbuild.yml
    │   ├── pr-netcore-linux.yml
    │   ├── pr-netcore-macOS.yml
    │   ├── pr-netcore-windows.yml
    │   ├── pr-netcore.yml
    │   ├── release.yml
    │   ├── sign.proj
    │   ├── updateversion.sh
    │   ├── vstest-fast.yml
    │   └── windows-msbuild.yml
    ├── BUILDING.md
    ├── CodeAnalysis.ruleset
    ├── CodeCoverage.runsettings
    ├── CODE-OF-CONDUCT.md
    ├── CONTRIBUTING.md
    ├── Directory.Build.props
    ├── docs
    │   ├── _build
    │   │   └── makeApiDocs.ps1
    │   ├── docfx.json
    │   ├── favicon.ico
    │   ├── images
    │   │   └── infernet.png
    │   ├── index.md
    │   ├── README.md
    │   ├── template
    │   │   └── styles
    │   │       └── main.css
    │   └── toc.yml
    ├── Infer.sln
    ├── Infer.snk
    ├── LICENSE.txt
    ├── nuget.config
    ├── README.md
    ├── Settings.StyleCop
    ├── src
    │   ├── Compiler
    │   │   ├── Compiler.csproj
    │   │   ├── Dynamic
    │   │   │   ├── Binding.cs
    │   │   │   ├── Conversion.cs
    │   │   │   ├── DelegateGroup.cs
    │   │   │   └── Invoker.cs
    │   │   ├── Graphs
    │   │   │   ├── BreadthFirstSearch.cs
    │   │   │   ├── CliqueFinder.cs
    │   │   │   ├── CollectionWrapper.cs
    │   │   │   ├── CycleFinder.cs
    │   │   │   ├── CyclicDependencySort.cs
    │   │   │   ├── DepthFirstSearch.cs
    │   │   │   ├── DistanceSearch.cs
    │   │   │   ├── Edge.cs
    │   │   │   ├── Graph.cs
    │   │   │   ├── GraphSearcher.cs
    │   │   │   ├── GroupGraph.cs
    │   │   │   ├── IGraph.cs
    │   │   │   ├── IndexedGraph.cs
    │   │   │   ├── IndexedGraphWrapper.cs
    │   │   │   ├── IndexedProperty.cs
    │   │   │   ├── JoinCollections.cs
    │   │   │   ├── LabeledCollection.cs
    │   │   │   ├── LabeledCollectionWrapper.cs
    │   │   │   ├── LabeledListT.cs
    │   │   │   ├── LabeledSet.cs
    │   │   │   ├── MinCut.cs
    │   │   │   ├── Node.cs
    │   │   │   ├── ParallelScheduler.cs
    │   │   │   ├── PathFinder.cs
    │   │   │   ├── PseudoPeripheralSearch.cs
    │   │   │   ├── Sequence.cs
    │   │   │   ├── StackAsList.cs
    │   │   │   └── StrongComponents.cs
    │   │   ├── Infer
    │   │   │   ├── Algorithms
    │   │   │   │   ├── AlgorithmBase.cs
    │   │   │   │   ├── ExpectationPropagation.cs
    │   │   │   │   ├── GibbsSampling.cs
    │   │   │   │   ├── IAlgorithm.cs
    │   │   │   │   ├── MaxProductBeliefPropagation.cs
    │   │   │   │   └── VariationalMessagePassing.cs
    │   │   │   ├── CompilerAttributes
    │   │   │   │   ├── Containers.cs
    │   │   │   │   ├── DebugInfo.cs
    │   │   │   │   ├── DependencyInformation.cs
    │   │   │   │   ├── DescriptionAttribute.cs
    │   │   │   │   ├── LoopContext.cs
    │   │   │   │   ├── LoopMergingInfo.cs
    │   │   │   │   ├── MultiplyAllCompilerAttribute.cs
    │   │   │   │   ├── QualityBandCompilerAttribute.cs
    │   │   │   │   ├── QueryTypeCompilerAttribute.cs
    │   │   │   │   ├── RepeatContext.cs
    │   │   │   │   └── VariableInformation.cs
    │   │   │   ├── InferCompilerException.cs
    │   │   │   ├── Infer.ico
    │   │   │   ├── ModelCompiler.cs
    │   │   │   ├── Models
    │   │   │   │   ├── ConditionBlock.cs
    │   │   │   │   ├── FuncOut.cs
    │   │   │   │   ├── GlobalCounter.cs
    │   │   │   │   ├── IModelExpression.cs
    │   │   │   │   ├── InferenceEngine.cs
    │   │   │   │   ├── InferenceProgress.cs
    │   │   │   │   ├── MethodInvoke.cs
    │   │   │   │   ├── ModelAttributes.cs
    │   │   │   │   ├── ModelBuilder.cs
    │   │   │   │   ├── Range.cs
    │   │   │   │   ├── SharedVariableArray2D.cs
    │   │   │   │   ├── SharedVariableArray.cs
    │   │   │   │   ├── SharedVariable.cs
    │   │   │   │   ├── VariableArray2D.cs
    │   │   │   │   ├── VariableArray3D.cs
    │   │   │   │   ├── VariableArrayBase.cs
    │   │   │   │   ├── VariableArray.cs
    │   │   │   │   ├── Variable.cs
    │   │   │   │   └── VariableGroup.cs
    │   │   │   ├── Transforms
    │   │   │   │   ├── AccumulationTransform.cs
    │   │   │   │   ├── ArrayAnalysisTransform.cs
    │   │   │   │   ├── ArraySizeTracingTransform.cs
    │   │   │   │   ├── Channel2Transform.cs
    │   │   │   │   ├── ChannelAnalysisTransform.cs
    │   │   │   │   ├── ChannelInfo.cs
    │   │   │   │   ├── ChannelTransform.cs
    │   │   │   │   ├── ConditionBinding.cs
    │   │   │   │   ├── ConstantFoldingTransform.cs
    │   │   │   │   ├── CopyPropagationTransform.cs
    │   │   │   │   ├── DeadCode2Transform.cs
    │   │   │   │   ├── DeadCodeTransform.cs
    │   │   │   │   ├── DebuggingSupport.cs
    │   │   │   │   ├── DependencyAnalysisTransform.cs
    │   │   │   │   ├── DependencyGraph2.cs
    │   │   │   │   ├── DependencyGraph.cs
    │   │   │   │   ├── DependencyPruningTransform.cs
    │   │   │   │   ├── DepthAnalysisTransform.cs
    │   │   │   │   ├── DepthCloningTransform.cs
    │   │   │   │   ├── DerivedVariableTransform.cs
    │   │   │   │   ├── EqualityPropagationTransform.cs
    │   │   │   │   ├── ExpressionNormalizationTransform.cs
    │   │   │   │   ├── ExternalVariablesTransform.cs
    │   │   │   │   ├── FactorDocumentationWriter.cs
    │   │   │   │   ├── FactorManager.cs
    │   │   │   │   ├── ForwardBackwardTransform.cs
    │   │   │   │   ├── GateAnalysisTransform.cs
    │   │   │   │   ├── GateTransform.cs
    │   │   │   │   ├── GroupTransform.cs
    │   │   │   │   ├── HoistingTransform.cs
    │   │   │   │   ├── HybridAlgorithmTransform.cs
    │   │   │   │   ├── IExpressionTransform.cs
    │   │   │   │   ├── IfCuttingTransform.cs
    │   │   │   │   ├── IncrementPruningTransform.cs
    │   │   │   │   ├── IncrementTransform.cs
    │   │   │   │   ├── IndexAnalysisTransform.cs
    │   │   │   │   ├── IndexingTransform.cs
    │   │   │   │   ├── InitializerTransform.cs
    │   │   │   │   ├── IntermediateVariableTransform.cs
    │   │   │   │   ├── IsIncreasingTransform.cs
    │   │   │   │   ├── IsolateModelTransform.cs
    │   │   │   │   ├── IterationTransform.cs
    │   │   │   │   ├── IterativeProcessTransform.cs
    │   │   │   │   ├── LinqExpressionTransform.cs
    │   │   │   │   ├── LocalAllocationTransform2.cs
    │   │   │   │   ├── LocalAllocationTransform.cs
    │   │   │   │   ├── LocalTransform.cs
    │   │   │   │   ├── LoggingTransform.cs
    │   │   │   │   ├── LoopCuttingTransform.cs
    │   │   │   │   ├── LoopMergingTransform.cs
    │   │   │   │   ├── LoopOrderingTransform.cs
    │   │   │   │   ├── LoopRemovalTransform.cs
    │   │   │   │   ├── LoopReversalTransform.cs
    │   │   │   │   ├── LoopUnrollingTransform.cs
    │   │   │   │   ├── MarginalAnalysisTransform.cs
    │   │   │   │   ├── MessageAnalysisTransform.cs
    │   │   │   │   ├── MessageFcnInfo.cs
    │   │   │   │   ├── MessageTransform.cs
    │   │   │   │   ├── MethodReference.cs
    │   │   │   │   ├── ModelAnalysisTransform.cs
    │   │   │   │   ├── ParallelForTransform.cs
    │   │   │   │   ├── ParallelScheduleTransform.cs
    │   │   │   │   ├── ParameterInsertionTransform.cs
    │   │   │   │   ├── PointMassAnalysisTransform.cs
    │   │   │   │   ├── PowerTransform.cs
    │   │   │   │   ├── PruningTransform.cs
    │   │   │   │   ├── ReplicationTransform.cs
    │   │   │   │   ├── Scheduler.cs
    │   │   │   │   ├── SchedulingTransform.cs
    │   │   │   │   ├── ShallowCopyTransform.cs
    │   │   │   │   ├── StocAnalysisTransform.cs
    │   │   │   │   ├── TracingTransform.cs
    │   │   │   │   ├── UniquenessTransform.cs
    │   │   │   │   └── VariableTransform.cs
    │   │   │   └── Visualizers
    │   │   │       ├── Default
    │   │   │       │   ├── DefaultFactorManager.cs
    │   │   │       │   ├── DefaultVisualizer.cs
    │   │   │       │   ├── GraphViews
    │   │   │       │   │   ├── Color.cs
    │   │   │       │   │   ├── DependencyGraphView.cs
    │   │   │       │   │   ├── Edge.cs
    │   │   │       │   │   ├── GraphWriter.cs
    │   │   │       │   │   ├── Legend.cs
    │   │   │       │   │   ├── ModelView.cs
    │   │   │       │   │   ├── Node.cs
    │   │   │       │   │   └── TaskGraphView.cs
    │   │   │       │   ├── Graphviz.cs
    │   │   │       │   ├── HtmlTransformChainView.cs
    │   │   │       │   └── WriteHelpers.cs
    │   │   │       └── Visualizer.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   └── TransformFramework
    │   │       ├── Attrib.cs
    │   │       ├── AttributeRegistry.cs
    │   │       ├── BasicTransformContext.cs
    │   │       ├── CodeBuilder.cs
    │   │       ├── CodeBuilderFactory.cs
    │   │       ├── CodeModel
    │   │       │   ├── AddressDereferenceExpression.cs
    │   │       │   ├── AddressOutExpression.cs
    │   │       │   ├── AddressReferenceExpression.cs
    │   │       │   ├── AnonymousMethodExpression.cs
    │   │       │   ├── ArgumentReferenceExpression.cs
    │   │       │   ├── ArrayCreateExpression.cs
    │   │       │   ├── ArrayIndexerExpression.cs
    │   │       │   ├── ArrayType.cs
    │   │       │   ├── AssemblyReference.cs
    │   │       │   ├── AssignExpression.cs
    │   │       │   ├── BaseReferenceExpression.cs
    │   │       │   ├── BinaryExpression.cs
    │   │       │   ├── BlockExpression.cs
    │   │       │   ├── BlockStatement.cs
    │   │       │   ├── BreakStatement.cs
    │   │       │   ├── BrokenForStatement.cs
    │   │       │   ├── CanCastExpression.cs
    │   │       │   ├── CastExpression.cs
    │   │       │   ├── CatchClause.cs
    │   │       │   ├── CheckedExpression.cs
    │   │       │   ├── Comment.cs
    │   │       │   ├── CommentStatement.cs
    │   │       │   ├── CompareItems.cs
    │   │       │   ├── ConditionCase.cs
    │   │       │   ├── ConditionExpression.cs
    │   │       │   ├── ConditionStatement.cs
    │   │       │   ├── ConstructorDeclaration.cs
    │   │       │   ├── ContinueStatement.cs
    │   │       │   ├── CustomAttribute.cs
    │   │       │   ├── DefaultCase.cs
    │   │       │   ├── DefaultExpression.cs
    │   │       │   ├── DelegateCreateExpression.cs
    │   │       │   ├── DelegateInvokeExpression.cs
    │   │       │   ├── EventDeclaration.cs
    │   │       │   ├── EventReference.cs
    │   │       │   ├── EventReferenceExpression.cs
    │   │       │   ├── Expression.cs
    │   │       │   ├── ExpressionStatement.cs
    │   │       │   ├── FieldDeclaration.cs
    │   │       │   ├── FieldReference.cs
    │   │       │   ├── FieldReferenceExpression.cs
    │   │       │   ├── ForEachStatement.cs
    │   │       │   ├── ForStatement.cs
    │   │       │   ├── FusedBlockStatement.cs
    │   │       │   ├── GenericArgument.cs
    │   │       │   ├── GenericParameter.cs
    │   │       │   ├── Generics.cs
    │   │       │   ├── Interfaces
    │   │       │   │   ├── IAddressDereferenceExpression.cs
    │   │       │   │   ├── IAddressOutExpression.cs
    │   │       │   │   ├── IAddressReferenceExpression.cs
    │   │       │   │   ├── IAnonymousMethodExpression.cs
    │   │       │   │   ├── IArgumentReferenceExpression.cs
    │   │       │   │   ├── IArrayCreateExpression.cs
    │   │       │   │   ├── IArrayIndexerExpression.cs
    │   │       │   │   ├── IArrayType.cs
    │   │       │   │   ├── IAssembly.cs
    │   │       │   │   ├── IAssemblyReference.cs
    │   │       │   │   ├── IAssignExpression.cs
    │   │       │   │   ├── IBaseReferenceExpression.cs
    │   │       │   │   ├── IBinaryExpression.cs
    │   │       │   │   ├── IBlockExpression.cs
    │   │       │   │   ├── IBlockStatement.cs
    │   │       │   │   ├── IBreakStatement.cs
    │   │       │   │   ├── ICanCastExpression.cs
    │   │       │   │   ├── ICastExpression.cs
    │   │       │   │   ├── ICatchClause.cs
    │   │       │   │   ├── ICheckedExpression.cs
    │   │       │   │   ├── IComment.cs
    │   │       │   │   ├── ICommentStatement.cs
    │   │       │   │   ├── IConditionCase.cs
    │   │       │   │   ├── IConditionExpression.cs
    │   │       │   │   ├── IConditionStatement.cs
    │   │       │   │   ├── IConstructorDeclaration.cs
    │   │       │   │   ├── IContinueStatement.cs
    │   │       │   │   ├── ICustomAttribute.cs
    │   │       │   │   ├── ICustomAttributeProvider.cs
    │   │       │   │   ├── IDefaultCase.cs
    │   │       │   │   ├── IDefaultExpression.cs
    │   │       │   │   ├── IDelegateCreateExpression.cs
    │   │       │   │   ├── IDelegateInvokeExpression.cs
    │   │       │   │   ├── IDocumentationProvider.cs
    │   │       │   │   ├── IEventDeclaration.cs
    │   │       │   │   ├── IEventReference.cs
    │   │       │   │   ├── IEventReferenceExpression.cs
    │   │       │   │   ├── IExpression.cs
    │   │       │   │   ├── IExpressionStatement.cs
    │   │       │   │   ├── IFieldDeclaration.cs
    │   │       │   │   ├── IFieldReference.cs
    │   │       │   │   ├── IFieldReferenceExpression.cs
    │   │       │   │   ├── IForEachStatement.cs
    │   │       │   │   ├── IForStatement.cs
    │   │       │   │   ├── IGenericArgument.cs
    │   │       │   │   ├── IGenericArgumentProvider.cs
    │   │       │   │   ├── IGenericParameter.cs
    │   │       │   │   ├── ILambdaExpression.cs
    │   │       │   │   ├── ILiteralExpression.cs
    │   │       │   │   ├── IMemberDeclaration.cs
    │   │       │   │   ├── IMemberInitializerExpression.cs
    │   │       │   │   ├── IMemberReference.cs
    │   │       │   │   ├── IMethodDeclaration.cs
    │   │       │   │   ├── IMethodInvokeExpression.cs
    │   │       │   │   ├── IMethodReference.cs
    │   │       │   │   ├── IMethodReferenceExpression.cs
    │   │       │   │   ├── IMethodReturnStatement.cs
    │   │       │   │   ├── IMethodReturnType.cs
    │   │       │   │   ├── IMethodSignature.cs
    │   │       │   │   ├── IModule.cs
    │   │       │   │   ├── INamespace.cs
    │   │       │   │   ├── INullCoalescingExpression.cs
    │   │       │   │   ├── IObjectCreateExpression.cs
    │   │       │   │   ├── IOptionalModifier.cs
    │   │       │   │   ├── IParameterDeclaration.cs
    │   │       │   │   ├── IParameterReference.cs
    │   │       │   │   ├── IPointerType.cs
    │   │       │   │   ├── IPropertyDeclaration.cs
    │   │       │   │   ├── IPropertyIndexerExpression.cs
    │   │       │   │   ├── IPropertyReference.cs
    │   │       │   │   ├── IPropertyReferenceExpression.cs
    │   │       │   │   ├── IReferenceType.cs
    │   │       │   │   ├── IRepeatStatement.cs
    │   │       │   │   ├── IRequiredModifier.cs
    │   │       │   │   ├── ISettableTypeDeclaration.cs
    │   │       │   │   ├── IStatement.cs
    │   │       │   │   ├── ISwitchCase.cs
    │   │       │   │   ├── ISwitchStatement.cs
    │   │       │   │   ├── IThisReferenceExpression.cs
    │   │       │   │   ├── IThrowExceptionStatement.cs
    │   │       │   │   ├── ITryCatchFinallyStatement.cs
    │   │       │   │   ├── IType.cs
    │   │       │   │   ├── ITypeDeclaration.cs
    │   │       │   │   ├── ITypeOfExpression.cs
    │   │       │   │   ├── ITypeReference.cs
    │   │       │   │   ├── ITypeReferenceExpression.cs
    │   │       │   │   ├── IUnaryExpression.cs
    │   │       │   │   ├── IUsingStatement.cs
    │   │       │   │   ├── IVariableDeclaration.cs
    │   │       │   │   ├── IVariableDeclarationExpression.cs
    │   │       │   │   ├── IVariableReference.cs
    │   │       │   │   ├── IVariableReferenceExpression.cs
    │   │       │   │   └── IWhileStatement.cs
    │   │       │   ├── LambdaExpression.cs
    │   │       │   ├── LiteralExpression.cs
    │   │       │   ├── MemberInitializerExpression.cs
    │   │       │   ├── MethodDeclaration.cs
    │   │       │   ├── MethodInstanceDeclaration.cs
    │   │       │   ├── MethodInstanceReference.cs
    │   │       │   ├── MethodInvokeExpression.cs
    │   │       │   ├── MethodReference.cs
    │   │       │   ├── MethodReferenceExpression.cs
    │   │       │   ├── MethodReturnStatement.cs
    │   │       │   ├── MethodReturnType.cs
    │   │       │   ├── Namespace.cs
    │   │       │   ├── NullCoalescingExpression.cs
    │   │       │   ├── ObjectCreateExpression.cs
    │   │       │   ├── OptionalModifier.cs
    │   │       │   ├── ParameterDeclaration.cs
    │   │       │   ├── PointerType.cs
    │   │       │   ├── PropertyDeclaration.cs
    │   │       │   ├── PropertyIndexerExpression.cs
    │   │       │   ├── PropertyReference.cs
    │   │       │   ├── PropertyReferenceExpression.cs
    │   │       │   ├── ReferenceType.cs
    │   │       │   ├── RepeatStatement.cs
    │   │       │   ├── RequiredModifier.cs
    │   │       │   ├── Statement.cs
    │   │       │   ├── SwitchStatement.cs
    │   │       │   ├── ThisReferenceExpression.cs
    │   │       │   ├── ThrowExceptionStatement.cs
    │   │       │   ├── TryCatchFinallyStatement.cs
    │   │       │   ├── TypeDeclaration.cs
    │   │       │   ├── TypeInstanceDeclaration.cs
    │   │       │   ├── TypeInstanceReference.cs
    │   │       │   ├── TypeOfExpression.cs
    │   │       │   ├── TypeReference.cs
    │   │       │   ├── TypeReferenceExpression.cs
    │   │       │   ├── UnaryExpression.cs
    │   │       │   ├── UsingStatement.cs
    │   │       │   ├── VariableDeclaration.cs
    │   │       │   ├── VariableDeclarationExpression.cs
    │   │       │   ├── VariableReference.cs
    │   │       │   ├── VariableReferenceExpression.cs
    │   │       │   └── WhileStatement.cs
    │   │       ├── CodeRecognizer.cs
    │   │       ├── CodeTransformer.cs
    │   │       ├── ExpressionEvaluator.cs
    │   │       ├── ICodeTransformContext.cs
    │   │       ├── ICodeTransform.cs
    │   │       ├── ICompilerAttribute.cs
    │   │       ├── IDeclarationProvider.cs
    │   │       ├── IDotNetType.cs
    │   │       ├── ILanguageWriter.cs
    │   │       ├── InferNet.cs
    │   │       ├── LanguageWriter.cs
    │   │       ├── LanguageWriters
    │   │       │   └── CSharpWriter.cs
    │   │       ├── Quoter.cs
    │   │       ├── SourceNode.cs
    │   │       ├── StackContext.cs
    │   │       ├── TransformerChain.cs
    │   │       └── TransformResults.cs
    │   ├── Csoft
    │   │   ├── Csoft.cs
    │   │   ├── Csoft.csproj
    │   │   ├── DeclarationTreeBuilder.cs
    │   │   ├── EmbeddedResourceSourceProvider.cs
    │   │   ├── ISourceProvider.cs
    │   │   ├── MethodBodySynthesizer.cs
    │   │   ├── ModelMethodAttribute.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── QueryTransform.cs
    │   │   ├── RoslynDeclarationProvider.cs
    │   │   └── TypeSymbolConverter.cs
    │   ├── Examples
    │   │   ├── ClickThroughModel
    │   │   │   ├── ClickThroughModel.csproj
    │   │   │   ├── Figures
    │   │   │   │   ├── clickFF.png
    │   │   │   │   ├── clickFT.png
    │   │   │   │   ├── clickModel.png
    │   │   │   │   ├── clickTF.png
    │   │   │   │   ├── clickTT.png
    │   │   │   │   └── click_v4.png
    │   │   │   ├── Form1.cs
    │   │   │   ├── Form1.Designer.cs
    │   │   │   ├── Form1.resx
    │   │   │   ├── Inference.cs
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Resources.Designer.cs
    │   │   │   │   ├── Resources.resx
    │   │   │   │   ├── Settings.Designer.cs
    │   │   │   │   └── Settings.settings
    │   │   │   └── UserData.cs
    │   │   ├── ClinicalTrial
    │   │   │   ├── App.xaml
    │   │   │   ├── App.xaml.cs
    │   │   │   ├── ClinicalTrial.csproj
    │   │   │   ├── ClinicalTrialModel.cs
    │   │   │   ├── ClinicalTrial.xaml
    │   │   │   ├── ClinicalTrial.xaml.cs
    │   │   │   ├── Images
    │   │   │   │   ├── Infer.ico
    │   │   │   │   ├── patient.png
    │   │   │   │   ├── pill-yellow.png
    │   │   │   │   └── placebo-blue.png
    │   │   │   └── Properties
    │   │   │       ├── AssemblyInfo.cs
    │   │   │       ├── Resources.Designer.cs
    │   │   │       ├── Resources.resx
    │   │   │       ├── Settings.Designer.cs
    │   │   │       └── Settings.settings
    │   │   ├── Crowdsourcing
    │   │   │   ├── ActiveLearning.cs
    │   │   │   ├── BCC.cs
    │   │   │   ├── CommunityModel.cs
    │   │   │   ├── Crowdsourcing.cs
    │   │   │   ├── Crowdsourcing.csproj
    │   │   │   ├── Data
    │   │   │   │   └── CF.csv
    │   │   │   ├── DataMapping.cs
    │   │   │   └── Results.cs
    │   │   ├── CrowdsourcingWithWords
    │   │   │   ├── BCC.cs
    │   │   │   ├── BCCPosteriors.cs
    │   │   │   ├── BCCWords.cs
    │   │   │   ├── BCCWordsPosteriors.cs
    │   │   │   ├── CrowdsourcingWithWords.cs
    │   │   │   ├── CrowdsourcingWithWords.csproj
    │   │   │   ├── Data
    │   │   │   │   ├── stopwords.txt
    │   │   │   │   └── weatherTweets.tsv.gz
    │   │   │   ├── DataMapping.cs
    │   │   │   ├── DataMappingWords.cs
    │   │   │   ├── Datum.cs
    │   │   │   ├── EnglishWord.cs
    │   │   │   ├── ReceiverOperatingCharacteristic.cs
    │   │   │   ├── Results.cs
    │   │   │   ├── ResultsWords.cs
    │   │   │   └── TFIDFClass.cs
    │   │   ├── ImageClassifier
    │   │   │   ├── BayesPointMachine.cs
    │   │   │   ├── ClassifierView.xaml
    │   │   │   ├── ClassifierView.xaml.cs
    │   │   │   ├── Form1.cs
    │   │   │   ├── Form1.Designer.cs
    │   │   │   ├── Form1.resx
    │   │   │   ├── Image_Classifier.csproj
    │   │   │   ├── ImageFeatures.cs
    │   │   │   ├── Images
    │   │   │   │   ├── 101_0125.JPG
    │   │   │   │   ├── 101_0154.JPG
    │   │   │   │   ├── 101_0161.JPG
    │   │   │   │   ├── 101_0188.JPG
    │   │   │   │   ├── 101_0190.JPG
    │   │   │   │   ├── 102_0256.JPG
    │   │   │   │   ├── 103_0343.JPG
    │   │   │   │   ├── 104_0460.JPG
    │   │   │   │   ├── 105_0595.JPG
    │   │   │   │   ├── 106_0676.JPG
    │   │   │   │   ├── 106_0686.JPG
    │   │   │   │   ├── 106_0687.JPG
    │   │   │   │   ├── 110_1016.JPG
    │   │   │   │   ├── 111_1192.JPG
    │   │   │   │   ├── 112_1243.JPG
    │   │   │   │   ├── 112_1251.JPG
    │   │   │   │   ├── 115_1529.JPG
    │   │   │   │   ├── 115_1553.JPG
    │   │   │   │   ├── 115_1582.JPG
    │   │   │   │   ├── 117_1783.JPG
    │   │   │   │   ├── 118_1830.JPG
    │   │   │   │   ├── 119_1910.JPG
    │   │   │   │   ├── 119_1911.JPG
    │   │   │   │   ├── 119_1921.JPG
    │   │   │   │   ├── 119_1958.JPG
    │   │   │   │   ├── 160_6022.JPG
    │   │   │   │   ├── 160_6071.JPG
    │   │   │   │   ├── 161_6172.JPG
    │   │   │   │   ├── 178_7837.JPG
    │   │   │   │   ├── 178_7849.JPG
    │   │   │   │   ├── 178_7883.JPG
    │   │   │   │   ├── 178_7897.JPG
    │   │   │   │   ├── 179_7901.JPG
    │   │   │   │   ├── anitha.jpg
    │   │   │   │   ├── Images.txt
    │   │   │   │   ├── joguiver.jpg
    │   │   │   │   ├── jwinn2.jpg
    │   │   │   │   ├── Labels.txt
    │   │   │   │   └── Tom.jpg
    │   │   │   ├── ItemsModel.cs
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       ├── AssemblyInfo.cs
    │   │   │       ├── Resources.Designer.cs
    │   │   │       ├── Resources.resx
    │   │   │       ├── Settings.Designer.cs
    │   │   │       └── Settings.settings
    │   │   ├── InferNET101
    │   │   │   ├── CyclingTime2.cs
    │   │   │   ├── CyclingTime3.cs
    │   │   │   ├── CyclingTime4.cs
    │   │   │   ├── CyclingTime5.cs
    │   │   │   ├── InferNET101.cs
    │   │   │   ├── InferNET101.csproj
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── RunCyclingSamples.cs
    │   │   ├── LDA
    │   │   │   ├── LDA.csproj
    │   │   │   ├── LDAModel.cs
    │   │   │   ├── LDAPredictionModel.cs
    │   │   │   ├── LDAShared.cs
    │   │   │   ├── LDATopicInferenceModel.cs
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── Utilities.cs
    │   │   ├── MontyHall
    │   │   │   ├── App.xaml
    │   │   │   ├── App.xaml.cs
    │   │   │   ├── Images
    │   │   │   │   ├── car1.gif
    │   │   │   │   ├── car2.gif
    │   │   │   │   ├── car3.png
    │   │   │   │   ├── door-blue.png
    │   │   │   │   ├── door-red.png
    │   │   │   │   ├── door-yellow.png
    │   │   │   │   ├── frame-blue.png
    │   │   │   │   ├── frame-red.png
    │   │   │   │   ├── frame-yellow.png
    │   │   │   │   ├── goat.png
    │   │   │   │   └── Infer.ico
    │   │   │   ├── MontyHall.csproj
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Resources.Designer.cs
    │   │   │   │   ├── Resources.resx
    │   │   │   │   ├── Settings.Designer.cs
    │   │   │   │   └── Settings.settings
    │   │   │   ├── Window1.xaml
    │   │   │   └── Window1.xaml.cs
    │   │   ├── MotifFinder
    │   │   │   ├── MotifFinder.csproj
    │   │   │   ├── Program.cs
    │   │   │   └── Properties
    │   │   │       └── AssemblyInfo.cs
    │   │   ├── ReviewerCalibration
    │   │   │   ├── Program.cs
    │   │   │   ├── Review.cs
    │   │   │   ├── ReviewerCalibration.cs
    │   │   │   └── ReviewerCalibration.csproj
    │   │   └── RobustGaussianProcess
    │   │       ├── Data
    │   │       │   └── insurance.csv
    │   │       ├── GaussianProcessDataGenerator.cs
    │   │       ├── GaussianProcessRegressor.cs
    │   │       ├── Program.cs
    │   │       ├── RobustGaussianProcess.csproj
    │   │       └── Utilities.cs
    │   ├── FSharpWrapper
    │   │   ├── AssemblyInfo.fs
    │   │   ├── FSharpWrapper.fs
    │   │   └── FSharpWrapper.fsproj
    │   ├── IronPythonWrapper
    │   │   ├── InferNetExamples
    │   │   │   ├── InferNetExamples
    │   │   │   │   ├── BayesPointMachine.py
    │   │   │   │   ├── ClinicalTrial.py
    │   │   │   │   ├── GaussianMixture.py
    │   │   │   │   ├── GaussianRanges.py
    │   │   │   │   ├── InferNetExamples.py
    │   │   │   │   ├── InferNetExamples.pyproj
    │   │   │   │   ├── InferNetWrapper.py
    │   │   │   │   ├── TruncatedGaussian.py
    │   │   │   │   └── TwoCoins.py
    │   │   │   └── InferNetExamples.sln
    │   │   ├── __init__.py
    │   │   ├── README.md
    │   │   ├── SetupCompiler.cmd
    │   │   └── TestWrapper
    │   │       ├── TestWrapper
    │   │       │   ├── TestWrapperFuncs.py
    │   │       │   ├── TestWrapper.py
    │   │       │   └── TestWrapper.pyproj
    │   │       └── TestWrapper.sln
    │   ├── Learners
    │   │   ├── Classifier
    │   │   │   ├── BayesPointMachineClassifierCapabilities.cs
    │   │   │   ├── BayesPointMachineClassifier.cs
    │   │   │   ├── BayesPointMachineClassifierException.cs
    │   │   │   ├── BayesPointMachineClassifierInternal
    │   │   │   │   ├── Algorithms
    │   │   │   │   │   ├── BinaryFactorizedInferenceAlgorithms.cs
    │   │   │   │   │   ├── CompoundBinaryFactorizedInferenceAlgorithms.cs
    │   │   │   │   │   ├── CompoundMulticlassFactorizedInferenceAlgorithms.cs
    │   │   │   │   │   ├── GaussianBinaryFactorizedInferenceAlgorithms.cs
    │   │   │   │   │   ├── GaussianMulticlassFactorizedInferenceAlgorithms.cs
    │   │   │   │   │   ├── IInferenceAlgorithms.cs
    │   │   │   │   │   ├── InferenceAlgorithms.cs
    │   │   │   │   │   ├── InferenceAlgorithmUtilities.cs
    │   │   │   │   │   ├── InferenceQueryVariableNames.cs
    │   │   │   │   │   └── MulticlassFactorizedInferenceAlgorithms.cs
    │   │   │   │   ├── Classifiers
    │   │   │   │   │   ├── BinaryNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── BinaryStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── CompoundBinaryNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── CompoundBinaryStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── CompoundMulticlassNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── CompoundMulticlassStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── GaussianBinaryNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── GaussianBinaryStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── GaussianMulticlassNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── GaussianMulticlassStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── MulticlassNativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── MulticlassStandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   ├── NativeDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   │   └── StandardDataFormatBayesPointMachineClassifier.cs
    │   │   │   │   ├── GeneratedAlgorithms
    │   │   │   │   │   ├── CompoundDenseBinaryBpmTraining_EP.cs
    │   │   │   │   │   ├── CompoundDenseBinaryBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── CompoundDenseMulticlassBpmTraining_EP.cs
    │   │   │   │   │   ├── CompoundDenseMulticlassBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── CompoundSparseBinaryBpmTraining_EP.cs
    │   │   │   │   │   ├── CompoundSparseBinaryBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── CompoundSparseMulticlassBpmTraining_EP.cs
    │   │   │   │   │   ├── CompoundSparseMulticlassBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryBpmPrediction_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryBpmTraining_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryVectorBpmPrediction_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryVectorBpmTraining_EP.cs
    │   │   │   │   │   ├── GaussianDenseBinaryVectorBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── GaussianDenseMulticlassBpmPrediction_EP.cs
    │   │   │   │   │   ├── GaussianDenseMulticlassBpmTraining_EP.cs
    │   │   │   │   │   ├── GaussianDenseMulticlassBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── GaussianSparseBinaryBpmPrediction_EP.cs
    │   │   │   │   │   ├── GaussianSparseBinaryBpmTraining_EP.cs
    │   │   │   │   │   ├── GaussianSparseBinaryBpmTrainingEvidence_EP.cs
    │   │   │   │   │   ├── GaussianSparseMulticlassBpmPrediction_EP.cs
    │   │   │   │   │   ├── GaussianSparseMulticlassBpmTraining_EP.cs
    │   │   │   │   │   └── GaussianSparseMulticlassBpmTrainingEvidence_EP.cs
    │   │   │   │   ├── Mappings
    │   │   │   │   │   ├── BinaryNativeClassifierMapping.cs
    │   │   │   │   │   ├── MulticlassNativeClassifierMapping.cs
    │   │   │   │   │   └── NativeClassifierMapping.cs
    │   │   │   │   └── Settings
    │   │   │   │       ├── GaussianBayesPointMachineClassifierAdvancedTrainingSettings.cs
    │   │   │   │       ├── GaussianBayesPointMachineClassifierTrainingSettings.cs
    │   │   │   │       ├── GaussianBinaryBayesPointMachineClassifierSettings.cs
    │   │   │   │       └── GaussianMulticlassBayesPointMachineClassifierSettings.cs
    │   │   │   ├── BayesPointMachineClassifierIterationChangedEventArgs.cs
    │   │   │   ├── CalibrationPair.cs
    │   │   │   ├── Classifier.csproj
    │   │   │   ├── ClassifierEvaluator.cs
    │   │   │   ├── ConfusionMatrix.cs
    │   │   │   ├── IBayesPointMachineClassifier.cs
    │   │   │   ├── Mappings
    │   │   │   │   ├── BayesPointMachineClassifierMappingExtensions.cs
    │   │   │   │   ├── ClassifierEvaluatorMapping.cs
    │   │   │   │   ├── ClassifierEvaluatorMappingExtensions.cs
    │   │   │   │   ├── ClassifierMappingExtensions.cs
    │   │   │   │   ├── IBayesPointMachineClassifierMapping.cs
    │   │   │   │   ├── IClassifierEvaluatorMapping.cs
    │   │   │   │   └── IClassifierMapping.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   └── Settings
    │   │   │       ├── BayesPointMachineClassifierPredictionSettings.cs
    │   │   │       ├── BayesPointMachineClassifierSettings.cs
    │   │   │       ├── BayesPointMachineClassifierTrainingSettings.cs
    │   │   │       ├── BinaryBayesPointMachineClassifierPredictionSettings.cs
    │   │   │       ├── BinaryBayesPointMachineClassifierSettings.cs
    │   │   │       ├── IBayesPointMachineClassifierPredictionSettings.cs
    │   │   │       ├── IBayesPointMachineClassifierSettings.cs
    │   │   │       ├── MulticlassBayesPointMachineClassifierPredictionSettings.cs
    │   │   │       └── MulticlassBayesPointMachineClassifierSettings.cs
    │   │   ├── ClassifierModels
    │   │   │   ├── AlgorithmFactories.cs
    │   │   │   ├── ClassifierModels.csproj
    │   │   │   ├── DenseBinaryModel.cs
    │   │   │   ├── DenseBinaryVectorModel.cs
    │   │   │   ├── DenseMulticlassModel.cs
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   └── launchSettings.json
    │   │   │   ├── SparseBinaryModel.cs
    │   │   │   └── SparseMulticlassModel.cs
    │   │   ├── Core
    │   │   │   ├── Core.csproj
    │   │   │   ├── DummyFeatureSource.cs
    │   │   │   ├── FalseAndTruePositiveRate.cs
    │   │   │   ├── ICapabilities.cs
    │   │   │   ├── ICustomSerializable.cs
    │   │   │   ├── ILearner.cs
    │   │   │   ├── IndexedSet.cs
    │   │   │   ├── IPredictorCapabilities.cs
    │   │   │   ├── IPredictor.cs
    │   │   │   ├── IPredictorIncrementalTraining.cs
    │   │   │   ├── IRecommenderCapabilities.cs
    │   │   │   ├── IRecommender.cs
    │   │   │   ├── ISettings.cs
    │   │   │   ├── IStarRatingInfo.cs
    │   │   │   ├── Mappings
    │   │   │   │   ├── IPredictorMapping.cs
    │   │   │   │   ├── IRatingRecommenderMapping.cs
    │   │   │   │   ├── IRecommenderMapping.cs
    │   │   │   │   ├── IStarRatingRecommenderMapping.cs
    │   │   │   │   ├── MappingException.cs
    │   │   │   │   └── PredictorMappingExtensions.cs
    │   │   │   ├── Metrics.cs
    │   │   │   ├── NoFeatureSource.cs
    │   │   │   ├── PointEstimator.cs
    │   │   │   ├── PrecisionRecall.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── RoundingStarRatingInfo.cs
    │   │   │   ├── SerializationVersionAttribute.cs
    │   │   │   ├── SettingsGuard.cs
    │   │   │   ├── StarRatingInfo.cs
    │   │   │   └── Utilities.cs
    │   │   ├── LearnersNuGet
    │   │   │   ├── LearnersNuGet.csproj
    │   │   │   └── LearnersNuGet.nuspec
    │   │   ├── Recommender
    │   │   │   ├── DelegatingWrappedBinaryReader.cs
    │   │   │   ├── DelegatingWrappedBinaryWriter.cs
    │   │   │   ├── IMatchboxRecommender.cs
    │   │   │   ├── Mappings
    │   │   │   │   ├── IMatchboxRecommenderMapping.cs
    │   │   │   │   ├── IRecommenderEvaluatorMapping.cs
    │   │   │   │   ├── IStarRatingRecommenderEvaluatorMapping.cs
    │   │   │   │   ├── NegativeDataGeneratorMapping.cs
    │   │   │   │   ├── RecommenderEvaluatorMapping.cs
    │   │   │   │   ├── RecommenderEvaluatorMappingExtensions.cs
    │   │   │   │   ├── RecommenderMappingExtensions.cs
    │   │   │   │   ├── SplitInstanceSource.cs
    │   │   │   │   ├── StarRatingRecommenderEvaluatorMapping.cs
    │   │   │   │   ├── TrainTestSplittingRatingRecommenderMapping.cs
    │   │   │   │   ├── TrainTestSplittingRecommenderMapping.cs
    │   │   │   │   └── TrainTestSplittingStarRatingRecommenderMapping.cs
    │   │   │   ├── MatchboxRecommenderAdvancedTrainingSettings.cs
    │   │   │   ├── MatchboxRecommenderCapabilities.cs
    │   │   │   ├── MatchboxRecommender.cs
    │   │   │   ├── MatchboxRecommenderException.cs
    │   │   │   ├── MatchboxRecommenderInternal
    │   │   │   │   ├── AlgorithmUtils.cs
    │   │   │   │   ├── ColdUserItemParameterAlgorithm.cs
    │   │   │   │   ├── CommunityTrainingAlgorithm.cs
    │   │   │   │   ├── EntityParameterDistribution.cs
    │   │   │   │   ├── FeatureHyperparameters.cs
    │   │   │   │   ├── FeatureParameterDistribution.cs
    │   │   │   │   ├── GeneratedAlgorithms
    │   │   │   │   │   ├── MatchboxCommunityTraining_EP.cs
    │   │   │   │   │   └── MatchboxRatingPrediction_EP.cs
    │   │   │   │   ├── HistogramSampler.cs
    │   │   │   │   ├── InstanceData.cs
    │   │   │   │   ├── InstanceMetadata.cs
    │   │   │   │   ├── ItemHyperparameters.cs
    │   │   │   │   ├── ItemParameterDistribution.cs
    │   │   │   │   ├── NativeDataFormatMatchboxRecommender.cs
    │   │   │   │   ├── NoiseHyperparameters.cs
    │   │   │   │   ├── ParameterDistributions.cs
    │   │   │   │   ├── RatingPredictionAlgorithm.cs
    │   │   │   │   ├── SparseFeatureMatrix.cs
    │   │   │   │   ├── SparseFeatureVector.cs
    │   │   │   │   ├── StandardDataFormatMatchboxRecommender.cs
    │   │   │   │   ├── UserHyperparameters.cs
    │   │   │   │   └── UserParameterDistribution.cs
    │   │   │   ├── MatchboxRecommenderPredictionSettings.cs
    │   │   │   ├── MatchboxRecommenderSettings.cs
    │   │   │   ├── MatchboxRecommenderTrainingSettings.cs
    │   │   │   ├── PosteriorDistributions
    │   │   │   │   ├── EntityPosteriorDistribution.cs
    │   │   │   │   ├── FeaturePosteriorDistribution.cs
    │   │   │   │   ├── ItemPosteriorDistribution.cs
    │   │   │   │   ├── PosteriorDistributions.cs
    │   │   │   │   └── UserPosteriorDistribution.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── RandomStarRatingRecommenderCapabilities.cs
    │   │   │   ├── RandomStarRatingRecommender.cs
    │   │   │   ├── RatingInstance.cs
    │   │   │   ├── RatingMatrix.cs
    │   │   │   ├── Recommender.csproj
    │   │   │   ├── RecommenderEvaluator.cs
    │   │   │   ├── RecommenderMetricAggregationMethod.cs
    │   │   │   └── StarRatingRecommenderEvaluator.cs
    │   │   ├── RecommenderModels
    │   │   │   ├── AlgorithmFactories.cs
    │   │   │   ├── Models.cs
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   └── launchSettings.json
    │   │   │   └── RecommenderModels.csproj
    │   │   └── Runners
    │   │       ├── CommandLine
    │   │       │   ├── Classifier
    │   │       │   │   ├── BayesPointMachineClassifierModuleUtilities.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierCrossValidationModule.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierIncrementalTrainingModule.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierPredictionModule.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierSampleWeightsModule.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierTrainingDiagnosticsModule.cs
    │   │       │   │   ├── BinaryBayesPointMachineClassifierTrainingModule.cs
    │   │       │   │   ├── ClassifierEvaluationModule.cs
    │   │       │   │   ├── MulticlassBayesPointMachineClassifierCrossValidationModule.cs
    │   │       │   │   ├── MulticlassBayesPointMachineClassifierIncrementalTrainingModule.cs
    │   │       │   │   ├── MulticlassBayesPointMachineClassifierPredictionModule.cs
    │   │       │   │   ├── MulticlassBayesPointMachineClassifierSampleWeightsModule.cs
    │   │       │   │   ├── MulticlassBayesPointMachineClassifierTrainingDiagnosticsModule.cs
    │   │       │   │   └── MulticlassBayesPointMachineClassifierTrainingModule.cs
    │   │       │   ├── CommandLine.csproj
    │   │       │   ├── Program.cs
    │   │       │   ├── Properties
    │   │       │   │   └── AssemblyInfo.cs
    │   │       │   └── Recommender
    │   │       │       ├── RecommenderEvaluateFindRelatedItemsModule.cs
    │   │       │       ├── RecommenderEvaluateFindRelatedUsersModule.cs
    │   │       │       ├── RecommenderEvaluateItemRecommendationModule.cs
    │   │       │       ├── RecommenderEvaluateRatingPredictionModule.cs
    │   │       │       ├── RecommenderFindRelatedItemsModule.cs
    │   │       │       ├── RecommenderFindRelatedUsersModule.cs
    │   │       │       ├── RecommenderGenerateNegativeData.cs
    │   │       │       ├── RecommenderPredictRatingsModule.cs
    │   │       │       ├── RecommenderRecommendItemsModule.cs
    │   │       │       ├── RecommenderSplitDataModule.cs
    │   │       │       └── RecommenderTrainModule.cs
    │   │       ├── Common
    │   │       │   ├── CommandLine
    │   │       │   │   ├── CommandLineModule.cs
    │   │       │   │   ├── CommandLineModuleSelector.cs
    │   │       │   │   ├── CommandLineParameterType.cs
    │   │       │   │   └── CommandLineParser.cs
    │   │       │   ├── Common.csproj
    │   │       │   ├── Configuration
    │   │       │   │   ├── ConfigurationBase.cs
    │   │       │   │   ├── ConfigurationElement.cs
    │   │       │   │   └── InvalidConfigurationException.cs
    │   │       │   ├── DataModel
    │   │       │   │   ├── ClassifierMapping.cs
    │   │       │   │   ├── ClassifierPersistenceUtils.cs
    │   │       │   │   ├── FileParsingContext.cs
    │   │       │   │   ├── InvalidFileFormatException.cs
    │   │       │   │   ├── Item.cs
    │   │       │   │   ├── LabelDistribution.cs
    │   │       │   │   ├── LabeledFeatureValues.cs
    │   │       │   │   ├── Mappings.cs
    │   │       │   │   ├── RatedUserItem.cs
    │   │       │   │   ├── RecommenderDataset.cs
    │   │       │   │   ├── RecommenderPersistenceUtils.cs
    │   │       │   │   └── User.cs
    │   │       │   └── Properties
    │   │       │       └── AssemblyInfo.cs
    │   │       └── Evaluator
    │   │           ├── app.config
    │   │           ├── Configuration
    │   │           │   ├── DatasetSplitSettingsConfigurationElement.cs
    │   │           │   ├── EvaluatorConfiguration.cs
    │   │           │   ├── ItemRecommendationTestConfigurationElement.cs
    │   │           │   ├── MahoutRecommenderConfigurationElement.cs
    │   │           │   ├── MatchboxRecommenderConfigurationElement.cs
    │   │           │   ├── RandomRecommenderConfigurationElement.cs
    │   │           │   ├── RatingPredictionTestConfigurationElement.cs
    │   │           │   ├── RecommenderConfigurationElement.cs
    │   │           │   ├── RecommenderDatasetConfigurationElement.cs
    │   │           │   ├── RecommenderGeneratedDatasetConfigurationElement.cs
    │   │           │   ├── RecommenderRunConfigurationElement.cs
    │   │           │   ├── RecommenderTestConfigurationElement.cs
    │   │           │   ├── RelatedItemPredictionTestConfigurationElement.cs
    │   │           │   ├── RelatedUserPredictionTestConfigurationElement.cs
    │   │           │   └── VowpalWabbitRecommenderConfigurationElement.cs
    │   │           ├── Config.xml
    │   │           ├── Data
    │   │           │   └── Bin
    │   │           │       ├── BuildMahoutRunner.bat
    │   │           │       ├── MahoutRunner.jar
    │   │           │       └── MahoutRunner.java
    │   │           ├── DatasetGenerators
    │   │           │   ├── BookCrossingGenerator.cs
    │   │           │   ├── DownloadingDatasetGenerator.cs
    │   │           │   ├── IDatasetGenerator.cs
    │   │           │   ├── JesterGenerator.cs
    │   │           │   ├── MovieLens
    │   │           │   │   ├── FeatureProcessor.cs
    │   │           │   │   ├── Features.cs
    │   │           │   │   └── MovieLensConverter.cs
    │   │           │   └── MovieLensGenerator.cs
    │   │           ├── Evaluator.csproj
    │   │           ├── InferNetRunsOnly.xml
    │   │           ├── MetricValueDistributionCollection.cs
    │   │           ├── MetricValueDistribution.cs
    │   │           ├── Program.cs
    │   │           ├── Properties
    │   │           │   ├── AssemblyInfo.cs
    │   │           │   └── launchSettings.json
    │   │           ├── RecommenderRunCompletedEventArgs.cs
    │   │           ├── RecommenderRun.cs
    │   │           ├── RecommenderRunFoldProcessedEventArgs.cs
    │   │           ├── RecommenderRunInterruptedEventArgs.cs
    │   │           ├── Scripts
    │   │           │   ├── BookRating.sql
    │   │           │   ├── DDL.sql
    │   │           │   ├── JesterJokes.sql
    │   │           │   ├── MovieLens.sql
    │   │           │   ├── MSWeb.sql
    │   │           │   └── RecommendationOut.sql
    │   │           ├── Tests
    │   │           │   ├── ItemRecommendationTest.cs
    │   │           │   ├── RatingPredictionTest.cs
    │   │           │   ├── RecommenderTest.cs
    │   │           │   ├── RelatedItemPredictionTest.cs
    │   │           │   └── RelatedUserPredictionTest.cs
    │   │           ├── Wrappers
    │   │           │   ├── ExternalCommandExecutionException.cs
    │   │           │   ├── LazyListPredictionContext.cs
    │   │           │   ├── MahoutRecommender.cs
    │   │           │   ├── MahoutRecommenderSettings.cs
    │   │           │   ├── VowpalWabbitRecommender.cs
    │   │           │   ├── VowpalWabbitRecommenderSettings.cs
    │   │           │   └── WrapperUtils.cs
    │   │           └── x64JVMConfig.xml
    │   ├── Runtime
    │   │   ├── Core
    │   │   │   ├── Collections
    │   │   │   │   ├── Array2d.cs
    │   │   │   │   ├── ArrayAsList.cs
    │   │   │   │   ├── ArrayDictionary.cs
    │   │   │   │   ├── ArrayFromFunc.cs
    │   │   │   │   ├── ArrayHelper.cs
    │   │   │   │   ├── CollectionExtensions.cs
    │   │   │   │   ├── CursorArray.cs
    │   │   │   │   ├── Cursor.cs
    │   │   │   │   ├── DictionaryComparer.cs
    │   │   │   │   ├── EnumerableComparer.cs
    │   │   │   │   ├── EnumerableExtensions.cs
    │   │   │   │   ├── FileArray.cs
    │   │   │   │   ├── FuncExtensions.cs
    │   │   │   │   ├── GenerationalDictionary.cs
    │   │   │   │   ├── IArray.cs
    │   │   │   │   ├── IEnumerableExtensions.cs
    │   │   │   │   ├── IListExtensions.cs
    │   │   │   │   ├── IntPair.cs
    │   │   │   │   ├── JaggedArray.cs
    │   │   │   │   ├── KeyedPool.cs
    │   │   │   │   ├── ListComparer.cs
    │   │   │   │   ├── Option.cs
    │   │   │   │   ├── ParallelCursorArray.cs
    │   │   │   │   ├── PriorityQueue.cs
    │   │   │   │   ├── ReadOnlyArray.cs
    │   │   │   │   ├── ReadOnlyListComparer.cs
    │   │   │   │   ├── ReadOnlyList.cs
    │   │   │   │   ├── Set.cs
    │   │   │   │   ├── SortedSet.cs
    │   │   │   │   ├── SparseList.cs
    │   │   │   │   └── ValueAtIndex.cs
    │   │   │   ├── CommunicatorBase.cs
    │   │   │   ├── Communicator.cs
    │   │   │   ├── ICommunicator.cs
    │   │   │   ├── IGeneratedAlgorithm.cs
    │   │   │   ├── InferRuntimeException.cs
    │   │   │   ├── Maths
    │   │   │   │   ├── Beam.cs
    │   │   │   │   ├── BFGS.cs
    │   │   │   │   ├── BranchAndBound.cs
    │   │   │   │   ├── ContinuedFraction.cs
    │   │   │   │   ├── DenseVector.cs
    │   │   │   │   ├── ExtendedDouble.cs
    │   │   │   │   ├── GlobalSuppressions.cs
    │   │   │   │   ├── Interval.cs
    │   │   │   │   ├── Lapack.cs
    │   │   │   │   ├── LBFGS.cs
    │   │   │   │   ├── LineSearch.cs
    │   │   │   │   ├── LowerTriangularMatrix.cs
    │   │   │   │   ├── LuDecomposition.cs
    │   │   │   │   ├── Matrix.cs
    │   │   │   │   ├── MeanAccumulator.cs
    │   │   │   │   ├── MeanVarianceAccumulator.cs
    │   │   │   │   ├── PiecewiseVector.cs
    │   │   │   │   ├── PositiveDefiniteMatrix.cs
    │   │   │   │   ├── Quadrature.cs
    │   │   │   │   ├── Random.cs
    │   │   │   │   ├── Region.cs
    │   │   │   │   ├── SetTo.cs
    │   │   │   │   ├── SparseVector.cs
    │   │   │   │   ├── SpecialFunctions.cs
    │   │   │   │   ├── UpperTriangularMatrix.cs
    │   │   │   │   └── Vector.cs
    │   │   │   ├── MessageUpdatedEventArgs.cs
    │   │   │   ├── ProgressChangedEventArgs.cs
    │   │   │   ├── QueryType.cs
    │   │   │   ├── QueryTypes.cs
    │   │   │   ├── Serialization
    │   │   │   │   ├── BinaryReaderExtensions.cs
    │   │   │   │   ├── BinaryWriterExtensions.cs
    │   │   │   │   ├── InferDataContractResolver.cs
    │   │   │   │   ├── IReader.cs
    │   │   │   │   ├── IWriter.cs
    │   │   │   │   ├── MatlabReader.cs
    │   │   │   │   ├── MatlabWriter.cs
    │   │   │   │   ├── SerializationAttributes.cs
    │   │   │   │   ├── WrappedBinaryReader.cs
    │   │   │   │   ├── WrappedBinaryWriter.cs
    │   │   │   │   ├── WrappedTextReader.cs
    │   │   │   │   ├── WrappedTextWriter.cs
    │   │   │   │   └── XmlWriterExtensions.cs
    │   │   │   ├── ThreadCommunicator.cs
    │   │   │   └── Utils
    │   │   │       ├── Argument.cs
    │   │   │       ├── ArrayComparer.cs
    │   │   │       ├── Assert.cs
    │   │   │       ├── Hash.cs
    │   │   │       ├── StringUtil.cs
    │   │   │       └── Util.cs
    │   │   ├── Distributions
    │   │   │   ├── ArrayEstimator.cs
    │   │   │   ├── Automata
    │   │   │   │   ├── AutomatonBasedSequenceDistributionFormatBase.cs
    │   │   │   │   ├── Automaton.Builder.cs
    │   │   │   │   ├── Automaton.Condensation.cs
    │   │   │   │   ├── Automaton.cs
    │   │   │   │   ├── Automaton.DataContainer.cs
    │   │   │   │   ├── Automaton.Determinization.cs
    │   │   │   │   ├── Automaton.EnumerateSupport.cs
    │   │   │   │   ├── AutomatonEnumerationCountException.cs
    │   │   │   │   ├── Automaton.EpsilonClosure.cs
    │   │   │   │   ├── AutomatonException.cs
    │   │   │   │   ├── AutomatonFormats.cs
    │   │   │   │   ├── Automaton.GroupExtractor.cs
    │   │   │   │   ├── Automaton.Simplification.cs
    │   │   │   │   ├── Automaton.StateCollection.cs
    │   │   │   │   ├── Automaton.State.cs
    │   │   │   │   ├── Automaton.StateData.cs
    │   │   │   │   ├── Automaton.StronglyConnectedComponent.cs
    │   │   │   │   ├── AutomatonTooLargeException.cs
    │   │   │   │   ├── Automaton.Transition.cs
    │   │   │   │   ├── CondensationStateInfo.cs
    │   │   │   │   ├── DistributionKind.cs
    │   │   │   │   ├── GraphVizAutomatonFormat.cs
    │   │   │   │   ├── IAutomatonFormat.cs
    │   │   │   │   ├── ImmutablePairDistributionBase.cs
    │   │   │   │   ├── ImmutablePairDistribution.cs
    │   │   │   │   ├── ISequenceDistributionFormat.cs
    │   │   │   │   ├── ISequenceManipulator.cs
    │   │   │   │   ├── ListAutomaton.cs
    │   │   │   │   ├── ListManipulator.cs
    │   │   │   │   ├── ListTransducer.cs
    │   │   │   │   ├── PreallocatedAutomataObjects.cs
    │   │   │   │   ├── RegexpAutomatonFormat.cs
    │   │   │   │   ├── RegexpFormattingSettings.cs
    │   │   │   │   ├── RegexpTreeBuilder.cs
    │   │   │   │   ├── RegexpTreeNode.cs
    │   │   │   │   ├── RegexpTreeNodeType.cs
    │   │   │   │   ├── SequenceDistributionFormatPointMassAsAutomaton.cs
    │   │   │   │   ├── SequenceDistributionFormatPointMassAsString.cs
    │   │   │   │   ├── StringAutomaton.cs
    │   │   │   │   ├── StringManipulator.cs
    │   │   │   │   ├── StringTransducer.cs
    │   │   │   │   ├── TarjanStateInfo.cs
    │   │   │   │   ├── TransducerBase.cs
    │   │   │   │   ├── Transducer.cs
    │   │   │   │   ├── Weight.cs
    │   │   │   │   ├── WeightFunctions.DictionaryWeightFunction.cs
    │   │   │   │   ├── WeightFunctions.IWeightFunction.cs
    │   │   │   │   ├── WeightFunctions.MultiRepresentationWeightFunction.cs
    │   │   │   │   └── WeightFunctions.PointMassWeightFunction.cs
    │   │   │   ├── AutomatonFormats.cs
    │   │   │   ├── Bernoulli.cs
    │   │   │   ├── BernoulliEstimator.cs
    │   │   │   ├── BernoulliIntegerSubset.cs
    │   │   │   ├── Beta.cs
    │   │   │   ├── BetaEstimator.cs
    │   │   │   ├── Binomial.cs
    │   │   │   ├── ConjugateDirichlet.cs
    │   │   │   ├── Dirichlet.cs
    │   │   │   ├── DirichletEstimator.cs
    │   │   │   ├── DiscreteChar.cs
    │   │   │   ├── Discrete.cs
    │   │   │   ├── DiscreteEnum.cs
    │   │   │   ├── DiscreteEstimator.cs
    │   │   │   ├── DistributionArray2D.cs
    │   │   │   ├── DistributionArray.cs
    │   │   │   ├── Distribution.cs
    │   │   │   ├── DistributionCursorArray.cs
    │   │   │   ├── DistributionFileArray.cs
    │   │   │   ├── EstimatedDistribution.cs
    │   │   │   ├── Estimator.cs
    │   │   │   ├── Gamma.cs
    │   │   │   ├── GammaEstimator.cs
    │   │   │   ├── GammaPower.cs
    │   │   │   ├── GammaPowerEstimator.cs
    │   │   │   ├── Gaussian.cs
    │   │   │   ├── GaussianEstimator.cs
    │   │   │   ├── GaussianProcess
    │   │   │   │   ├── GaussianProcess.cs
    │   │   │   │   ├── IGaussianProcess.cs
    │   │   │   │   ├── SparseGP.cs
    │   │   │   │   └── SparseGPFixed.cs
    │   │   │   ├── GenericDiscreteBase.cs
    │   │   │   ├── GibbsMarginal.cs
    │   │   │   ├── GlobalSuppressions.cs
    │   │   │   ├── ICanTruncateLeft.cs
    │   │   │   ├── ICanTruncateRight.cs
    │   │   │   ├── ICollectionDistribution.cs
    │   │   │   ├── IDistribution.cs
    │   │   │   ├── IEstimatedDistribution.cs
    │   │   │   ├── IImmutableDistribution.cs
    │   │   │   ├── ImproperDistributionException.cs
    │   │   │   ├── InnerQuantiles.cs
    │   │   │   ├── IrregularQuantiles.cs
    │   │   │   ├── ITruncatableDistribution.cs
    │   │   │   ├── Kernels
    │   │   │   │   ├── ARD.cs
    │   │   │   │   ├── KernelFactory.cs
    │   │   │   │   ├── KernelFunction.cs
    │   │   │   │   ├── LinearKernel.cs
    │   │   │   │   ├── NNKernel.cs
    │   │   │   │   ├── SquaredExponential.cs
    │   │   │   │   ├── SummationKernel.cs
    │   │   │   │   └── WhiteNoise.cs
    │   │   │   ├── LeftTruncatedPoisson.cs
    │   │   │   ├── ListDistribution.cs
    │   │   │   ├── MatrixMeanVarianceAccumulator.cs
    │   │   │   ├── Mixture.cs
    │   │   │   ├── MutableWrapper.cs
    │   │   │   ├── NonconjugateGaussian.cs
    │   │   │   ├── OuterQuantiles.cs
    │   │   │   ├── Pareto.cs
    │   │   │   ├── PointMass.cs
    │   │   │   ├── PointMassEstimator.cs
    │   │   │   ├── Poisson.cs
    │   │   │   ├── PoissonEstimator.cs
    │   │   │   ├── QuantileEstimator.cs
    │   │   │   ├── SequenceDistribution.cs
    │   │   │   ├── SparseBernoulliList.cs
    │   │   │   ├── SparseBetaList.cs
    │   │   │   ├── SparseDistributionList.cs
    │   │   │   ├── SparseGammaList.cs
    │   │   │   ├── SparseGaussianList.cs
    │   │   │   ├── StringDistribution.cs
    │   │   │   ├── TruncatableDistribution.cs
    │   │   │   ├── TruncatedDistribution.cs
    │   │   │   ├── TruncatedGamma.cs
    │   │   │   ├── TruncatedGaussian.cs
    │   │   │   ├── TruncatedGaussianEstimator.cs
    │   │   │   ├── TruncatedPoisson.cs
    │   │   │   ├── UnnormalizedDiscrete.cs
    │   │   │   ├── VectorGaussian.cs
    │   │   │   ├── VectorGaussianEstimator.cs
    │   │   │   ├── VectorGaussianMoments.cs
    │   │   │   ├── VectorMeanVarianceAccumulator.cs
    │   │   │   ├── Wishart.cs
    │   │   │   ├── WishartEstimator.cs
    │   │   │   ├── WordStrings.cs
    │   │   │   └── WrappedGaussian.cs
    │   │   ├── Factors
    │   │   │   ├── AllTrue.cs
    │   │   │   ├── And.cs
    │   │   │   ├── AreEqual.cs
    │   │   │   ├── ArrayFromVector.cs
    │   │   │   ├── BeliefPropagationGateOps.cs
    │   │   │   ├── BernoulliFromBeta.cs
    │   │   │   ├── BernoulliFromBoolean.cs
    │   │   │   ├── BernoulliFromDiscrete.cs
    │   │   │   ├── BernoulliFromLogOdds.cs
    │   │   │   ├── BernoulliIntegerSubsetFromBeta.cs
    │   │   │   ├── BetaFromMeanAndTotalCountOp.cs
    │   │   │   ├── BetaFromMeanAndVarianceOp.cs
    │   │   │   ├── BetaOp.cs
    │   │   │   ├── BinomialOp.cs
    │   │   │   ├── Buffer.cs
    │   │   │   ├── CharFromProbabilitiesOp.cs
    │   │   │   ├── CharStringConcatOp.cs
    │   │   │   ├── Clone.cs
    │   │   │   ├── Collection.cs
    │   │   │   ├── Concat.cs
    │   │   │   ├── Constrain.cs
    │   │   │   ├── ConstraintViolatedException.cs
    │   │   │   ├── Copy.cs
    │   │   │   ├── CountTrueOp.cs
    │   │   │   ├── Cut.cs
    │   │   │   ├── DifferenceBetaOp.cs
    │   │   │   ├── DirichletOp.cs
    │   │   │   ├── DiscreteFromDirichlet.cs
    │   │   │   ├── DiscreteFromDiscrete.cs
    │   │   │   ├── DiscreteUniform.cs
    │   │   │   ├── DoubleOp.cs
    │   │   │   ├── EnumSupport.cs
    │   │   │   ├── Exp.cs
    │   │   │   ├── FactorAttributes.cs
    │   │   │   ├── Factor.cs
    │   │   │   ├── FactorDocs.xml
    │   │   │   ├── GammaFromShapeAndRate.cs
    │   │   │   ├── GammaPowerProductOp_Laplace.cs
    │   │   │   ├── GammaProductOp_Laplace.cs
    │   │   │   ├── Gate.cs
    │   │   │   ├── GateEnter.cs
    │   │   │   ├── GateExit.cs
    │   │   │   ├── GaussianFromMeanAndVariance.cs
    │   │   │   ├── GaussianOp.cs
    │   │   │   ├── GetDeepJaggedItems.cs
    │   │   │   ├── GetItem2D.cs
    │   │   │   ├── GetItem.cs
    │   │   │   ├── GetItems.cs
    │   │   │   ├── GetItemsFromDeepJaggedOp.cs
    │   │   │   ├── GetItemsFromJaggedOp.cs
    │   │   │   ├── GetItemsPointOp.cs
    │   │   │   ├── GetItemsWithDictionaryOp.cs
    │   │   │   ├── GetJaggedItems.cs
    │   │   │   ├── GetJaggedItemsFromJagged.cs
    │   │   │   ├── ImproperMessageException.cs
    │   │   │   ├── IndexOfMaximum.cs
    │   │   │   ├── InnerProductArray.cs
    │   │   │   ├── InnerProduct.cs
    │   │   │   ├── InnerProductPartialCovariance.cs
    │   │   │   ├── IntegralOp.cs
    │   │   │   ├── IsBetweenGaussianOp.cs
    │   │   │   ├── IsBetweenTruncatedGaussianOp.cs
    │   │   │   ├── IsGreaterThan.cs
    │   │   │   ├── IsGreaterThanDoubleOp.cs
    │   │   │   ├── IsPositive.cs
    │   │   │   ├── JaggedSubarray.cs
    │   │   │   ├── Log.cs
    │   │   │   ├── Logistic.cs
    │   │   │   ├── LowPriority.cs
    │   │   │   ├── MatrixMultiply.cs
    │   │   │   ├── MatrixVectorProduct.cs
    │   │   │   ├── Max.cs
    │   │   │   ├── MaxGammaOp.cs
    │   │   │   ├── MinGammaOp.cs
    │   │   │   ├── Multinomial.cs
    │   │   │   ├── NonconjugateUsesEqualDef.cs
    │   │   │   ├── Not.cs
    │   │   │   ├── Or.cs
    │   │   │   ├── PlusDouble.cs
    │   │   │   ├── PlusGamma.cs
    │   │   │   ├── PlusInt.cs
    │   │   │   ├── PlusVector.cs
    │   │   │   ├── PoissonOp.cs
    │   │   │   ├── Power.cs
    │   │   │   ├── PowerPlate.cs
    │   │   │   ├── ProbBetweenOp.cs
    │   │   │   ├── Product.cs
    │   │   │   ├── ProductExp.cs
    │   │   │   ├── ProductGamma.cs
    │   │   │   ├── ProductGaussianBeta.cs
    │   │   │   ├── ProductGaussianGamma.cs
    │   │   │   ├── ProductVectorGaussian.cs
    │   │   │   ├── ProductWishart.cs
    │   │   │   ├── ProductWrappedGaussian.cs
    │   │   │   ├── QuantileOp.cs
    │   │   │   ├── RatioGaussianOp.cs
    │   │   │   ├── Replicate.cs
    │   │   │   ├── ReplicateGibbsOp.cs
    │   │   │   ├── ReplicatePointOp.cs
    │   │   │   ├── Rotate.cs
    │   │   │   ├── ShiftAlpha.cs
    │   │   │   ├── SingleOp.cs
    │   │   │   ├── Softmax.cs
    │   │   │   ├── SparseBernoulliFromBeta.cs
    │   │   │   ├── SparseGaussianListOp.cs
    │   │   │   ├── SparseGPOp.cs
    │   │   │   ├── SplitOp.cs
    │   │   │   ├── SplitSubarray.cs
    │   │   │   ├── StringCapitalizedOfMinLengthOp.cs
    │   │   │   ├── StringCapitalizedOfMinMaxLengthOp.cs
    │   │   │   ├── StringCharConcatOp.cs
    │   │   │   ├── StringConcatOp.cs
    │   │   │   ├── StringFormatOp.cs
    │   │   │   ├── StringFromArrayOp.cs
    │   │   │   ├── StringOfLengthOp.cs
    │   │   │   ├── StringOfMinLengthOp.cs
    │   │   │   ├── StringOfMinMaxLengthOp.cs
    │   │   │   ├── StringsAreEqualOp.cs
    │   │   │   ├── Subarray2.cs
    │   │   │   ├── Subarray.cs
    │   │   │   ├── SubstringOp.cs
    │   │   │   ├── Subvector.cs
    │   │   │   ├── Sum.cs
    │   │   │   ├── SumExcept.cs
    │   │   │   ├── SumVectorGaussianOp.cs
    │   │   │   ├── Tracing.cs
    │   │   │   ├── TruncatedGammaFromShapeAndRateOp.cs
    │   │   │   ├── Unary.cs
    │   │   │   ├── Undirected.cs
    │   │   │   ├── UniformDouble.cs
    │   │   │   ├── UsesEqualDef.cs
    │   │   │   ├── VariableOp.cs
    │   │   │   ├── VariablePointOp.cs
    │   │   │   ├── VectorFromArray.cs
    │   │   │   ├── VectorGaussianOp.cs
    │   │   │   └── WishartOp.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   └── Runtime.csproj
    │   ├── Shared
    │   │   ├── SharedAssemblyFileVersion.cs
    │   │   ├── SharedAssemblyFileVersion.fs
    │   │   └── SharedAssemblyInfo.cs
    │   ├── Tools
    │   │   ├── BuildFactorDoc
    │   │   │   ├── Program.cs
    │   │   │   └── Tools.BuildFactorDoc.csproj
    │   │   ├── PrepareSource
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   └── launchSettings.json
    │   │   │   └── Tools.PrepareSource.csproj
    │   │   └── PythonScripts
    │   │       ├── CheckMathLibraries.py
    │   │       ├── ComputeSpecialFunctionsTestValues.py
    │   │       ├── GenerateSeries.py
    │   │       └── Tools.PythonScripts.pyproj
    │   ├── Tutorials
    │   │   ├── BayesianPCA.cs
    │   │   ├── BayesPointMachineExample.cs
    │   │   ├── BugsRats.cs
    │   │   ├── CausalityExample.cs
    │   │   ├── ChessAnalysis.cs
    │   │   ├── ClickModel.cs
    │   │   ├── ClinicalTrial.cs
    │   │   ├── DifficultyAbility.cs
    │   │   ├── ExampleAttribute.cs
    │   │   ├── ExamplesBrowser.cs
    │   │   ├── ExamplesViewer.cs
    │   │   ├── ExamplesViewer.resx
    │   │   ├── FirstExample.cs
    │   │   ├── GaussianProcessClassifier.cs
    │   │   ├── HelloStrings.cs
    │   │   ├── Infer.ico
    │   │   ├── LearningAGaussian.cs
    │   │   ├── LearningAGaussianWithRanges.cs
    │   │   ├── MixtureOfGaussians.cs
    │   │   ├── MultinomialRegression.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── RecommenderSystem.cs
    │   │   ├── RunMe.cs
    │   │   ├── StringFormat.cs
    │   │   ├── StudentSkills.cs
    │   │   ├── TruncatedGaussian.cs
    │   │   ├── TruncatedGaussianEfficient.cs
    │   │   ├── TutorialData
    │   │   │   └── ClickModel.txt
    │   │   ├── Tutorials.csproj
    │   │   └── WetGrassSprinklerRain.cs
    │   └── Visualizers
    │       └── Windows
    │           ├── GraphViews
    │           │   ├── DependencyGraphView.cs
    │           │   ├── ModelView.cs
    │           │   └── TaskGraphView.cs
    │           ├── TransformerChainView
    │           │   ├── AttributeView.xaml
    │           │   ├── AttributeView.xaml.cs
    │           │   ├── CodeElementInspectorView.xaml
    │           │   ├── CodeElementInspectorView.xaml.cs
    │           │   ├── CodeSearchQuery.cs
    │           │   ├── CollapsedCodeView.xaml
    │           │   ├── CollapsedCodeView.xaml.cs
    │           │   ├── ConsolidatingEventListener.cs
    │           │   ├── DeclarationView.xaml
    │           │   ├── DeclarationView.xaml.cs
    │           │   ├── LineOfCodeView.xaml
    │           │   ├── LineOfCodeView.xaml.cs
    │           │   ├── TransformChainView.xaml
    │           │   ├── TransformChainView.xaml.cs
    │           │   ├── TransformerView.xaml
    │           │   └── TransformerView.xaml.cs
    │           ├── Visualizers.Windows.csproj
    │           └── WindowsVisualizer.cs
    ├── test
    │   ├── Learners
    │   │   ├── LearnersTests
    │   │   │   ├── BayesPointMachineClassifierTests.cs
    │   │   │   ├── ClassifierEvaluatorTests.cs
    │   │   │   ├── CommandLineParserTests.cs
    │   │   │   ├── Comparers.cs
    │   │   │   ├── CsvMapping.cs
    │   │   │   ├── Data
    │   │   │   │   └── W5ANormalized.csv.gz
    │   │   │   ├── IndexedSetTests.cs
    │   │   │   ├── LearnersTests.csproj
    │   │   │   ├── MatchboxRecommenderTests.cs
    │   │   │   ├── MetricTests.cs
    │   │   │   ├── NegativeDataGenerationTests.cs
    │   │   │   ├── Properties
    │   │   │   │   └── AssemblyInfo.cs
    │   │   │   ├── RecommenderDataSplittingTests.cs
    │   │   │   ├── RecommenderEvaluatorTests.cs
    │   │   │   ├── RecommenderPersistenceUtilsTests.cs
    │   │   │   ├── Test.bat
    │   │   │   ├── TestUtils.cs
    │   │   │   ├── UtilityTests.cs
    │   │   │   └── xunit.runner.json
    │   │   └── TestApp
    │   │       ├── Program.cs
    │   │       ├── Properties
    │   │       │   └── AssemblyInfo.cs
    │   │       └── TestApp.csproj
    │   ├── monotest.sh
    │   ├── netcoretest.sh
    │   ├── TestAllCompilerOptions
    │   │   ├── CompilerOptionsTestUtils.cs
    │   │   ├── Program.cs
    │   │   └── TestAllCompilerOptions.csproj
    │   ├── TestApp
    │   │   ├── Program.cs
    │   │   └── TestApp.csproj
    │   ├── TestFSharp
    │   │   ├── App.config
    │   │   ├── AssemblyInfo.fs
    │   │   ├── BayesPointMachine.fs
    │   │   ├── ClinicalTrial.fs
    │   │   ├── DifficultyAbility.fs
    │   │   ├── GaussianwithRanges.fs
    │   │   ├── MixtureofGaussians.fs
    │   │   ├── TestFSharp.fsproj
    │   │   ├── TestTutorials.fs
    │   │   ├── TruncatedGaussian.fs
    │   │   └── TwoCoins.fs
    │   ├── TestPublic
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── TestPublic.csproj
    │   │   └── TutorialTests.cs
    │   ├── TestPython
    │   │   ├── TestPython.pyproj
    │   │   └── test_tutorials.py
    │   └── Tests
    │       ├── BayesPointMachineTests.cs
    │       ├── BioTests.cs
    │       ├── BlogTests.cs
    │       ├── BPMNoiseTests.cs
    │       ├── BpmSpeedTests.cs
    │       ├── Bugs
    │       │   ├── bugsModels.mat
    │       │   ├── Categorical1_bugs.txt
    │       │   ├── Categorical1c_bugs.txt
    │       │   ├── Categorical1p_bugs.txt
    │       │   ├── Categorical1pc_bugs.txt
    │       │   ├── Categorical1pp_bugs.txt
    │       │   ├── Categorical1ppc_bugs.txt
    │       │   ├── Clutter1_bugs.txt
    │       │   ├── Gaussian1_bugs.txt
    │       │   ├── Gaussian1p_bugs.txt
    │       │   ├── Gaussian1pp_bugs.txt
    │       │   ├── Gaussian2_bugs.txt
    │       │   ├── Gaussian2c_bugs.txt
    │       │   ├── Gaussian2p_bugs.txt
    │       │   ├── Gaussian2pc_bugs.txt
    │       │   ├── Gaussian2pp_bugs.txt
    │       │   ├── Gaussian2ppc_bugs.txt
    │       │   ├── HomogenousMixture1_bugs.txt
    │       │   ├── HomogenousMixture1p_bugs.txt
    │       │   ├── HomogenousMixture1pp_bugs.txt
    │       │   ├── Mixture1_bugs.txt
    │       │   ├── Mixture1p_bugs.txt
    │       │   ├── Mixture1pp_bugs.txt
    │       │   ├── Table1_bugs.txt
    │       │   ├── Table1p_bugs.txt
    │       │   ├── Table1pp_bugs.txt
    │       │   ├── Table2_bugs.txt
    │       │   ├── Table2p_bugs.txt
    │       │   ├── Table2pp_bugs.txt
    │       │   ├── Table3_bugs.txt
    │       │   ├── Table3p_bugs.txt
    │       │   ├── Table3pp_bugs.txt
    │       │   ├── Vibes1_bugs.txt
    │       │   └── Vibes2_bugs.txt
    │       ├── ChainTests.cs
    │       ├── ClickTest.cs
    │       ├── CodeCompilerTests
    │       │   ├── AbstractCompilerTesters.cs
    │       │   ├── AutoSelectedCodeCompilerTests.cs
    │       │   ├── CodeDomCompilerTests.cs
    │       │   └── RoslynCodeCompilerTests.cs
    │       ├── CodeModel
    │       │   └── LanguageWriterTests.cs
    │       ├── ConstrainEqualTests.cs
    │       ├── Core
    │       │   ├── ArrayDictionaryTests.cs
    │       │   ├── BeamTests.cs
    │       │   ├── BFGSTests.cs
    │       │   ├── BranchAndBoundTests.cs
    │       │   ├── CursorArrayTest.cs
    │       │   ├── CustomSerializationTests.cs
    │       │   ├── EnumerableExtensionsTests.cs
    │       │   ├── FloatTests.cs
    │       │   ├── IntervalTests.cs
    │       │   ├── JaggedTest.cs
    │       │   ├── KeyedPoolTests.cs
    │       │   ├── MathTests.cs
    │       │   ├── MatlabSerializationTests.cs
    │       │   ├── MatrixTest.cs
    │       │   ├── NormalCdf2Tests.cs
    │       │   ├── PriorityQueueTest.cs
    │       │   ├── QuadratureTest.cs
    │       │   ├── RandomTest.cs
    │       │   ├── SparseTests.cs
    │       │   ├── SpecialFunctionsTest.cs
    │       │   └── UtilsTests.cs
    │       ├── CultureTests.cs
    │       ├── cyclingTest.py
    │       ├── CyclistTests.cs
    │       ├── Data
    │       │   ├── ClickModel.txt
    │       │   ├── IRT2PL_10_1000.mat
    │       │   ├── IRT2PL_10_250.mat
    │       │   ├── pca.txt
    │       │   ├── SpecialFunctionsValues
    │       │   │   ├── BesselI.csv
    │       │   │   ├── BetaCdf.csv
    │       │   │   ├── Digamma.csv
    │       │   │   ├── Erfc.csv
    │       │   │   ├── ExpMinus1.csv
    │       │   │   ├── ExpMinus1RatioMinus1RatioMinusHalf.csv
    │       │   │   ├── Gamma.csv
    │       │   │   ├── GammaLn.csv
    │       │   │   ├── GammaLnSeries.csv
    │       │   │   ├── GammaLower.csv
    │       │   │   ├── GammaUpper.csv
    │       │   │   ├── GammaUpperRegularized.csv
    │       │   │   ├── GammaUpperScale.csv
    │       │   │   ├── Log1MinusExp.csv
    │       │   │   ├── Log1Plus.csv
    │       │   │   ├── LogExpMinus1.csv
    │       │   │   ├── Logistic.csv
    │       │   │   ├── logisticGaussian.csv
    │       │   │   ├── logisticGaussianDeriv2.csv
    │       │   │   ├── logisticGaussianDeriv.csv
    │       │   │   ├── LogisticLn.csv
    │       │   │   ├── LogSumExp.csv
    │       │   │   ├── NormalCdf2.csv
    │       │   │   ├── NormalCdf.csv
    │       │   │   ├── NormalCdfIntegral.csv
    │       │   │   ├── NormalCdfIntegralRatio.csv
    │       │   │   ├── NormalCdfLn2.csv
    │       │   │   ├── NormalCdfLn.csv
    │       │   │   ├── NormalCdfLogit.csv
    │       │   │   ├── NormalCdfMomentRatio.csv
    │       │   │   ├── NormalCdfRatioLn2.csv
    │       │   │   ├── Tetragamma.csv
    │       │   │   ├── Trigamma.csv
    │       │   │   ├── ulp.csv
    │       │   │   └── XMinusLog1Plus.csv
    │       │   └── test.mat
    │       ├── DiscreteTests.cs
    │       ├── DistributedTests.cs
    │       ├── Distributions
    │       │   ├── CodeSerializerTest.cs
    │       │   ├── DistributionTests.cs
    │       │   ├── EstimatorTest.cs
    │       │   ├── GPKernelTests.cs
    │       │   ├── SerializableTest.cs
    │       │   └── SparseTests.cs
    │       ├── DocumentationTests.cs
    │       ├── Dynamic
    │       │   └── TypeInference.cs
    │       ├── EnumTests.cs
    │       ├── EpTests.cs
    │       ├── ErrorTests.cs
    │       ├── expTest.m
    │       ├── FactorManagerTests.cs
    │       ├── FAresults.m
    │       ├── ForumTests.cs
    │       ├── GatedFactorTests.cs
    │       ├── GateModelTests.cs
    │       ├── GateTests.cs
    │       ├── GaussianFromMeanAndVarianceTests.cs
    │       ├── GaussianTests.cs
    │       ├── Gibbs
    │       │   ├── BugsTests.cs
    │       │   └── GibbsTests.cs
    │       ├── GPTests.cs
    │       ├── Graphs
    │       │   ├── GraphTest.cs
    │       │   ├── LabeledListTest.cs
    │       │   └── ParallelSchedulerTests.cs
    │       ├── IndexingTests.cs
    │       ├── IndexOfMaximumTests.cs
    │       ├── InferDataContractResolverTests.cs
    │       ├── InferTests.cs
    │       ├── InnerProductArrayTests.cs
    │       ├── LaplaceTests.cs
    │       ├── LDATests.cs
    │       ├── LogisticIRT_VMP.cs
    │       ├── MarginalPrototypeMslTests.cs
    │       ├── MarginalPrototypeTests.cs
    │       ├── MatchboxTests.cs
    │       ├── MaxProductTests.cs
    │       ├── MixtureTests.cs
    │       ├── ModelTests.cs
    │       ├── MslTests.cs
    │       ├── MulticlassRegressionTests.cs
    │       ├── MultinomialRegressionTests.cs
    │       ├── NonconjugateVMP2Tests.cs
    │       ├── NonconjugateVMPTests.cs
    │       ├── OnlineLearning.cs
    │       ├── Operators
    │       │   ├── DiscreteFromDirichletOpTests.cs
    │       │   ├── ExpOpTests.cs
    │       │   ├── GammaOpTests.cs
    │       │   ├── GateOpTests.cs
    │       │   ├── GaussianOpTests.cs
    │       │   ├── MaxGaussianOpTests.cs
    │       │   ├── OperatorTests.cs
    │       │   ├── ProductGaussianOpTests.cs
    │       │   └── SparseOpTests.cs
    │       ├── parallel.xunit.runner.json
    │       ├── PlatformTests.cs
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── PsychTests.cs
    │       ├── QualityBandTests.cs
    │       ├── QuantileTests.cs
    │       ├── QueryTests.cs
    │       ├── RAETest.cs
    │       ├── RegressionConvergenceTest_Helper.m
    │       ├── RegressionConvergenceTest.m
    │       ├── SchedulerTests.cs
    │       ├── sequential.xunit.runner.json
    │       ├── SerialTests.cs
    │       ├── SharedVariableTests.cs
    │       ├── SpeedTests.cs
    │       ├── Strings
    │       │   ├── AutomatonTests.cs
    │       │   ├── DiscreteCharTest.cs
    │       │   ├── GateStringModelTests.cs
    │       │   ├── LoopyAutomatonTests.cs
    │       │   ├── SequenceDistributionTests.cs
    │       │   ├── SingleOpTests.cs
    │       │   ├── StringAutomatonTests.cs
    │       │   ├── StringConcatOpTests.cs
    │       │   ├── StringDictionaryWeightFunctionTests.cs
    │       │   ├── StringFormatOpTests.cs
    │       │   ├── StringFormatTests.cs
    │       │   ├── StringFromArrayOpTests.cs
    │       │   ├── StringGetItemOpTests.cs
    │       │   ├── StringInferencePerformanceTests.cs
    │       │   ├── StringInferenceTestUtilities.cs
    │       │   ├── StringOfLengthOpTests.cs
    │       │   ├── StringsAreEqualOpTests.cs
    │       │   ├── SubstringOpTests.cs
    │       │   ├── TransducerTests.cs
    │       │   └── WordStringsTests.cs
    │       ├── StudentIsPositiveTests.cs
    │       ├── studentTest2.m
    │       ├── test_pointEstimator.m
    │       ├── Tests.csproj
    │       ├── TestUtils.cs
    │       ├── test_vectorPointEstimator.m
    │       ├── ThreadingTests.cs
    │       ├── TransformTests.cs
    │       ├── TrueSkillTests.cs
    │       ├── TruncatedGaussianTests.cs
    │       ├── Vibes
    │       │   ├── discreteArray.m
    │       │   ├── discreteArray.xml
    │       │   ├── discrete.m
    │       │   ├── discrete.xml
    │       │   ├── Gaussian_nonNoisy.m
    │       │   ├── Gaussian_nonNoisyTest.m
    │       │   ├── Gaussian_nonNoisy.xml
    │       │   ├── GaussianTest.m
    │       │   ├── Gaussian.xml
    │       │   ├── logistic_regression2.m
    │       │   ├── logistic_regression2.xml
    │       │   ├── logistic_regression.m
    │       │   ├── logistic_regression.xml
    │       │   ├── logistic_test.m
    │       │   ├── logistic_test.xml
    │       │   ├── Mixture1a2Test.m
    │       │   ├── Mixture1a2.xml
    │       │   ├── Mixture1aTest.m
    │       │   ├── Mixture1a.xml
    │       │   ├── Mixture1InferMeansTest.m
    │       │   ├── Mixture1InferMeans.xml
    │       │   ├── MultipleProduct2Test.m
    │       │   ├── MultipleProduct2.xml
    │       │   ├── MultipleProductTest.m
    │       │   ├── MultipleProduct.xml
    │       │   ├── Product2Test.m
    │       │   ├── Product2.xml
    │       │   ├── ProductObservedTwiceCopiedTest.m
    │       │   ├── ProductObservedTwiceCopied.xml
    │       │   ├── ProductObservedTwiceTest.m
    │       │   ├── ProductObservedTwice.xml
    │       │   ├── ProductTest.m
    │       │   ├── product.xml
    │       │   ├── regression.m
    │       │   ├── regression.xml
    │       │   ├── sum3ElementArrayTest.m
    │       │   ├── sum3ElementArrayTest.xml
    │       │   ├── sumOfProductTest.m
    │       │   ├── sumOfProduct.xml
    │       │   ├── sumofSumPlusProdTest.m
    │       │   ├── sumOfSumPlusProd.xml
    │       │   ├── sumTest.m
    │       │   └── sumTest.xml
    │       ├── VmpArrayTests.cs
    │       ├── VmpGateArrayTests.cs
    │       ├── VmpGateTests.cs
    │       ├── VMPMslTests.cs
    │       ├── VmpTests.cs
    │       └── xunit.runner.json
    ├── TestRunConfig1.testrunconfig
    ├── test.runsettings
    └── x86.runsettings

156 directories, 1624 files

实例下载地址

C#图形模型中运行贝叶斯推断的框架(Infer.NET)源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警