Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id F0366200D34 for ; Fri, 3 Nov 2017 20:36:08 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EE974160BFB; Fri, 3 Nov 2017 19:36:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 40D02160BDE for ; Fri, 3 Nov 2017 20:36:08 +0100 (CET) Received: (qmail 43047 invoked by uid 500); 3 Nov 2017 19:36:06 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 42788 invoked by uid 99); 3 Nov 2017 19:36:06 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2017 19:36:06 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id C3C941A06A9 for ; Fri, 3 Nov 2017 19:36:05 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 8jwKkNxBBIKT for ; Fri, 3 Nov 2017 19:36:05 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 6A4E35FD1B for ; Fri, 3 Nov 2017 19:36:04 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 14BE3E0E7A for ; Fri, 3 Nov 2017 19:36:03 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 54F24241A2 for ; Fri, 3 Nov 2017 19:36:01 +0000 (UTC) Date: Fri, 3 Nov 2017 19:36:01 +0000 (UTC) From: "ASF subversion and git services (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (SOLR-11602) Add Markov Chain Stream Evaluator MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 03 Nov 2017 19:36:09 -0000 [ https://issues.apache.org/jira/browse/SOLR-11602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16238237#comment-16238237 ] ASF subversion and git services commented on SOLR-11602: -------------------------------------------------------- Commit 27fca76651129429652017116e29697ecccbf962 in lucene-solr's branch refs/heads/branch_7x from [~joel.bernstein] [ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=27fca76 ] SOLR-11602: Add Markov Chain Stream Evaluator > Add Markov Chain Stream Evaluator > --------------------------------- > > Key: SOLR-11602 > URL: https://issues.apache.org/jira/browse/SOLR-11602 > Project: Solr > Issue Type: New Feature > Security Level: Public(Default Security Level. Issues are Public) > Reporter: Joel Bernstein > Assignee: Joel Bernstein > Fix For: 7.2 > > Attachments: SOLR-11602.patch, SOLR-11602.patch, SOLR-11602.patch > > > Now that Streaming Expressions supports Monte Carlo simulations it would be useful to also support Markov Chains. This ticket will add support for Markov Chain simulations. > Here is the syntax: > {code} > let(state0=array(.3, .4, .3), > state1=array(.2, .1, .7), > state2=array(.6, .2, .2), > states=matrix(state0, state1, state2), > m=markovChain(states, 0), > s=sample(m, 500)) > {code} > The Markov chain is initialized with a matrix who's rows represent the different *states* of the system. The columns represent the probabilities of changing from one state to another state. > For example if we are in state 1 represented by the array(.2,.1,.7), there is a .7 percent probability that it will transition to state 2. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org