You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2019/10/09 20:48:23 UTC

[lucene-solr] branch SOLR-13105-visual updated: SOLR-13105: Improve ml docs 12

This is an automated email from the ASF dual-hosted git repository.

jbernste pushed a commit to branch SOLR-13105-visual
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/SOLR-13105-visual by this push:
     new 085ec9b  SOLR-13105: Improve ml docs 12
085ec9b is described below

commit 085ec9beaa80304d1cb03784dc0a2f995f01783c
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Wed Oct 9 16:48:15 2019 -0400

    SOLR-13105: Improve ml docs 12
---
 solr/solr-ref-guide/src/machine-learning.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/machine-learning.adoc b/solr/solr-ref-guide/src/machine-learning.adoc
index adc3311..86bfd01 100644
--- a/solr/solr-ref-guide/src/machine-learning.adoc
+++ b/solr/solr-ref-guide/src/machine-learning.adoc
@@ -767,8 +767,8 @@ rather than a single trial of the `kmeans` function.
 [source,text]
 ----
 let(a=select(search(reviews, q="review_t:\"star wars\"", rows="500"),
-                    id,
-                    analyze(review_t, text_bigrams) as terms),
+             id,
+             analyze(review_t, text_bigrams) as terms),
     vectors=termVectors(a, maxDocFreq=.10, minDocFreq=.03, minTermLength=13, exclude="_,br,have"),
     clusters=multiKmeans(vectors, 5, 15),
     centroids=getCentroids(clusters),