Re: How to add MoreLikeThis MLT handler in Solr Cloud

2020-05-12 Thread Vignan Malyala
Any reference on this Is it possible actually? On Tue, May 12, 2020 at 2:21 PM Vignan Malyala wrote: > How to add mlt handler in Solr Cloud? > > There is very limited documentation on this. Using search component with > mlt=true doesn't include all configurations like boosting and mlt filters.

Re: How to add MoreLikeThis MLT handler in Solr Cloud

2020-05-12 Thread ART GALLERY
check out the videos on this website TROO.TUBE don't be such a sheep/zombie/loser/NPC. Much love! https://troo.tube/videos/watch/aaa64864-52ee-4201-922f-41300032f219 On Tue, May 12, 2020 at 12:59 PM Vignan Malyala wrote: > > Anyone knows how to add mlt handler in solr cloud? > > On Tue, May 12,

Re: How to add MoreLikeThis MLT handler in Solr Cloud

2020-05-12 Thread Vignan Malyala
Anyone knows how to add mlt handler in solr cloud? On Tue, May 12, 2020 at 2:21 PM Vignan Malyala wrote: > How to add mlt handler in Solr Cloud? > > There is very limited documentation on this. Using search component with > mlt=true doesn't include all configurations like boosting and mlt

How to add MoreLikeThis MLT handler in Solr Cloud

2020-05-12 Thread Vignan Malyala
How to add mlt handler in Solr Cloud? There is very limited documentation on this. Using search component with mlt=true doesn't include all configurations like boosting and mlt filters. Also the results with filters don't seem to work. Adding mlt handler seem better, but how to add in solr cloud.

Re: MoreLikeThis does not work

2019-12-22 Thread Jörn Franke
> *http://localhost:8983/solr/playground/select?mlt.fl=name=true=*%3A* > <http://localhost:8983/solr/playground/select?mlt.fl=name=true=*%3A*>* > > > I always get > > "moreLikeThis":{ "0553573403":{"numFound":0,"start":0,"docs&

MoreLikeThis does not work

2019-12-22 Thread Nehemia Litterat
layground/select?mlt.fl=name=true=*%3A*>* I always get "moreLikeThis":{ "0553573403":{"numFound":0,"start":0,"docs":[] }} in the end of my results this is the full result { "responseHeader":{ "status":0, "QTime&qu

Use "relatedness(...)" faceting function as a replacement for MoreLikeThis?

2019-06-20 Thread Scott Bouma
Hi all! First question to the group so hopefully this is the right way to ask a question :) I watched one of Trey Grainger's talks in which he said that the new relatedness metric is an improvement on MoreLikeThis (MLT). I would like to use it to analyze a set of text files from different

Re: MoreLikeThis & Synonyms

2018-12-27 Thread Nicolas Paris
On Wed, Dec 26, 2018 at 09:09:02PM -0800, Erick Erickson wrote: > bq. However multiword synonyms are only compatible with queryTime synonyms > expansion. > > Why do you say this? What version of Solr? Query-time mult-word > synonyms were _added_, but AFAIK the capability of multi-word synonyms >

Re: MoreLikeThis & Synonyms

2018-12-26 Thread Erick Erickson
with multi-word synonyms? What version of Solr are you using? Best, Erick On Wed, Dec 26, 2018 at 5:25 AM Nicolas Paris wrote: > > Hi > > It turns out that MoreLikeThis handler does not use queryTime synonyms > expansion. > > It is only compatible with indexTime synonyms.

MoreLikeThis & Synonyms

2018-12-26 Thread Nicolas Paris
Hi It turns out that MoreLikeThis handler does not use queryTime synonyms expansion. It is only compatible with indexTime synonyms. However multiword synonyms are only compatible with queryTime synonyms expansion. For this reason this does not allow the use of multiword synonyms within

Re: Solr 7 MoreLikeThis boost calculation

2018-06-29 Thread Alessandro Benedetti
Hi Jesse, you are correct, the variable 'bestScore' used in the createQuery(PriorityQueue q) should be "minScore". it is used to normalise the terms score : tq = new BoostQuery(tq, boostFactor * myScore / bestScore); e.g. Queue -> Term1:100 , Term2:50, Term3:20, Term4:10 The minScore will be 10

Solr 7 MoreLikeThis boost calculation

2018-06-22 Thread Jesse Wang
, when calculating the boost MoreLikeThis::createQuery() it still uses the PriorityQueue’s first pop() as the bestScore, when that actually would be the least element now. We worked around this in our production instance by iterating thru the entire PriorityQueue to find the largest score (since we

no stable results using morelikethis in distributed mode

2018-06-21 Thread guenterh.li...@bluewin.ch
3653341-17) [c:green s:shard2 r:core_node4 x:green_shard2_replica_n2] o.a.s.c.S.Request [green_shard2_replica_n2] webapp=/solr path=/select params={q=id:"508364329"=morelikethis=arrarr=*,score=40=5=json} status=0 QTime=1 2018-06-21 15:36:05.679 INFO (qtp1873653341-70)

Re: MoreLikeThis in Solr 7.3.1

2018-06-20 Thread Monique Monteiro
Hi Anshum, Thanks! By using Zookeeper CLI I managed to update the configs. On Tue, Jun 19, 2018 at 6:29 PM Anshum Gupta wrote: > That explains it :) > > I assume you did make those changes on disk and did not upload the updated > configset to zookeeper. > > SolrCloud instances use the

Re: MoreLikeThis in Solr 7.3.1

2018-06-19 Thread Anshum Gupta
That explains it :) I assume you did make those changes on disk and did not upload the updated configset to zookeeper. SolrCloud instances use the configset from zk, so all changed files would have to be uploaded to zk. You can re-uplaod the configset using the zkcli.sh script that comes with

Re: MoreLikeThis in Solr 7.3.1

2018-06-19 Thread Monique Monteiro
I reloaded the collection with the command: http://localhost:8983/solr/admin/collections?action=RELOAD=documentos_ce But stil the same problem... On Tue, Jun 19, 2018 at 4:48 PM Monique Monteiro wrote: > Hi Anshum, > > I'm using SolrCloud, but both instances are on the same Solr installation

Re: MoreLikeThis in Solr 7.3.1

2018-06-19 Thread Monique Monteiro
Hi Anshum, I'm using SolrCloud, but both instances are on the same Solr installation (it's just for test purposes), so I suppose they share configuration in solr-7.3.1/server/solr/configsets/_default/conf/solrconfig.xml. So should I recreate the collection ? Thanks, Monique On Tue, Jun 19,

Re: MoreLikeThis in Solr 7.3.1

2018-06-19 Thread Anshum Gupta
Hi Monique, Is this standalone Solr or SolrCloud ? If it is cloud, then you’d have to make sure that you uploaded the right config and collection should also be reloaded if you enabled it after creating the collection. Also, did you check the MLT Query parser that does the same thing but

MoreLikeThis in Solr 7.3.1

2018-06-19 Thread Monique Monteiro
Hi all, I'm trying to access /mlt in Solr, but the index returns HTTP 404 error. I've already configured the following: - /solr-7.3.1/server/solr/configsets/_default/conf/solrconfig.xml: ** ** * _text_* ** * * AND ** ** *list * * * * * But none of

Re: Judging the MoreLikeThis results for relevancy

2018-02-14 Thread Alessandro Benedetti
So let me answer point by point : 1) Similarity is misleading here if you interpret it as a probabilistic measure. Given a query, it doesn't exist the "Ideal Document". Both with TF-IDF and BM25 ( that solves the problem better) you are scoring the document. Higher the score, higher the

Re: Judging the MoreLikeThis results for relevancy

2018-02-13 Thread Arnold Bronley
8, 2018 at 7:02 AM, Alessandro Benedetti <a.benede...@sease.io> wrote: > Hi, > I have been personally working a lot with the MoreLikeThis and I am close > to > contribute a refactor of that module ( to break up the monolithic giant > facade class mostly) . > > First of all t

Re: Judging the MoreLikeThis results for relevancy

2018-02-08 Thread Alessandro Benedetti
Hi, I have been personally working a lot with the MoreLikeThis and I am close to contribute a refactor of that module ( to break up the monolithic giant facade class mostly) . First of all the MoreLikeThis handler will return the original document ( not scored) + the similar documents(scored

Judging the MoreLikeThis results for relevancy

2018-02-07 Thread Arnold Bronley
Hi, I am using MoreLikeThis handler to get related documents for a given document. To determine if I am getting good results or not, here is what I do: The same original document should be returned as a top match. If it is not, then there is some problem with the relevancy. Then, as same input

Re: Do I need to declare TermVectorComponent for best MoreLikeThis results?

2017-07-13 Thread alessandro.benedetti
.472066.n3.nabble.com/Do-I-need-to-declare-TermVectorComponent-for-best-MoreLikeThis-results-tp4345646p4345794.html Sent from the Solr - User mailing list archive at Nabble.com.

Do I need to declare TermVectorComponent for best MoreLikeThis results?

2017-07-12 Thread Max Bridgewater
Hi, The MLT documentation says that for best results, the fields should have stored term vectors in schema.xml, with: My question: should I also create the TermVectorComponent and declare it in the search handler? In other terms, do I have to do this in my solrconfig.xml for best results?

MoreLikeThis Clarifications

2017-06-22 Thread Max Bridgewater
I am trying to confirm my understanding of MLT after going through following page: https://cwiki.apache.org/confluence/display/solr/MoreLikeThis. Three approaches are mentioned: 1) Use it as a request handler and send text to the MoreLikeThis request handler as needed. 2) Use it as a search

Re: qf boosts with MoreLikeThis query parser

2016-10-14 Thread Ere Maijala
extraneous terms in the final query, and I'll take a stab at fixing that too. --Ere 1.8.2016, 9.12, Ere Maijala kirjoitti: Hi All, I, too, would like to know the answer to these questions. I saw a similar question by Nikaash Puri on 22 June with subject "help with moreLikeThis" go unans

Re: qf boosts with MoreLikeThis query parser

2016-10-12 Thread Ere Maijala
to know the answer to these questions. I saw a similar question by Nikaash Puri on 22 June with subject "help with moreLikeThis" go unanswered. Any insight? Regards, Ere 11.7.2016, 18.32, Demian Katz kirjoitti: Hello, I am currently using field-specific boosts in the

Re: qf boosts with MoreLikeThis query parser

2016-08-01 Thread Ere Maijala
Hi All, I, too, would like to know the answer to these questions. I saw a similar question by Nikaash Puri on 22 June with subject "help with moreLikeThis" go unanswered. Any insight? Regards, Ere 11.7.2016, 18.32, Demian Katz kirjoitti: Hello, I am currently using field-speci

qf boosts with MoreLikeThis query parser

2016-07-11 Thread Demian Katz
Hello, I am currently using field-specific boosts in the qf setting of the MoreLikeThis request handler: https://github.com/vufind-org/vufind/blob/master/solr/vufind/biblio/conf/solrconfig.xml#L410 I would like to accomplish the same effect using the MoreLikeThis query parser, so that I can

help with moreLikeThis

2016-06-22 Thread Nikaash Puri
Hi, I was looking for some help with the more like this query parser syntax. Concretely, using the select handler I can do a query like: mlt=true& mlt.fl=name,message& mlt.mintf=1& mlt.qf=name^10 message^1 which lets me boost individual fields. However, with the query parser: {!mlt mintf=1

Solr 4.9.1 MoreLikeThis Handler CursorMark

2016-05-27 Thread Esan London
Hi The MoreLikeThis handler doesn't appear to be returning a nextcursor value in solr 4.9.1. Is this by design or something that was changed in the later versions? thanks for the help

Re: Re: Re: MoreLikeThis Component - how to get fields of documents

2016-05-09 Thread Dr. Jan Frederik Maas
llo, I want to use the moreLikeThis Component to get similar documents from a sharded SOLR. This works quite well except for the fact that the documents in the moreLikeThis-list only contain the id/unique key of the documents. Is it possible to get the other fields? I can of course do another query f

Re: Re: MoreLikeThis Component - how to get fields of documents

2016-05-09 Thread Alessandro Benedetti
n > > > Am 05.05.2016 um 05:26 schrieb Zheng Lin Edwin Yeo: > >> Hi Jan, >> >> Which version of Solr are you using? >> >> Regards, >> Edwin >> >> >> On 26 April 2016 at 23:46, Dr. Jan Frederik Maas < >> jan.m...@sub.uni-hambur

Re: Re: MoreLikeThis Component - how to get fields of documents

2016-05-09 Thread Dr. Jan Frederik Maas
I want to use the moreLikeThis Component to get similar documents from a sharded SOLR. This works quite well except for the fact that the documents in the moreLikeThis-list only contain the id/unique key of the documents. Is it possible to get the other fields? I can of course do another

Re: Can Highlighting and MoreLikeThis works together in same requestHandler?

2016-05-06 Thread Zheng Lin Edwin Yeo
, Zheng Lin Edwin Yeo <edwinye...@gmail.com> wrote: > Hi, > > I'm finding out if we could possibly implement highlighting and > MoreLikeThis (MLT) function in the same requestHandler. > > I understand that highlighting uses the normal SearchHandler, while MLT > uses Mor

Can Highlighting and MoreLikeThis works together in same requestHandler?

2016-05-05 Thread Zheng Lin Edwin Yeo
Hi, I'm finding out if we could possibly implement highlighting and MoreLikeThis (MLT) function in the same requestHandler. I understand that highlighting uses the normal SearchHandler, while MLT uses MoreLikeThisHandler, and reach requestHandler can only have one handler. For this case, we have

Using MoreLikeThis for multiple documents/keywords

2016-05-04 Thread Zheng Lin Edwin Yeo
Hi, I would like to find out, if it is possible to use MoreLikeThis to get the response and interesting terms based on 2 or more multiple documents or keywords, by adding the AND or OR parameters in the query like what we do during search? For example: http://localhost:8983/solr/collection1/mlt

Re: MoreLikeThis Component - how to get fields of documents

2016-05-04 Thread Zheng Lin Edwin Yeo
Hi Jan, Which version of Solr are you using? Regards, Edwin On 26 April 2016 at 23:46, Dr. Jan Frederik Maas < jan.m...@sub.uni-hamburg.de> wrote: > Hello, > > I want to use the moreLikeThis Component to get similar documents from a > sharded SOLR. This works quite well e

MoreLikeThis (MLT) search

2016-05-04 Thread Zheng Lin Edwin Yeo
Hi, Would like to find out, must the fieldType be indexing with string, before we can perform a MoreLikeThis (MLT) query? Currently, my indexes are indexed with the HMMChineseTokenizer, so will it work well for MLT query? Below is my configuration for the fileType which I'm planning to execute

MoreLikeThis Handler Solr 4.9

2016-04-27 Thread Esan London
Hi all, I set up a morelikethis request in solr 4.9 handler and it works fine for fields that are text but when I try to use a float field the results "seem" like it treats the float value as text eg. For the input document with a float field value of 3, in the top ten resul

MoreLikeThis Component - how to get fields of documents

2016-04-26 Thread Dr. Jan Frederik Maas
Hello, I want to use the moreLikeThis Component to get similar documents from a sharded SOLR. This works quite well except for the fact that the documents in the moreLikeThis-list only contain the id/unique key of the documents. Is it possible to get the other fields? I can of course do

SOLR-8418: Nasty bug in MoreLikeThis handler in Solr 5.4.0

2015-12-22 Thread Ere Maijala
Those of you who are planning to upgrade to Solr 5.4.0, be aware that there's a bug in the MoreLikeThis handler that makes it fail with boosting. There's a Solr issue with a patch thanks to Jens Wille: https://issues.apache.org/jira/browse/SOLR-8418. I really hope this gets into 5.4.1, for us

Solr MLT Interestingterms return different terms than Lucene MoreLikeThis for some of the documents

2015-08-12 Thread Ali Nazemian
Hi, I am going to implement a searchcomponent for Solr to return document main keywords with using the more like this interesting terms. The main part of implemented component which uses mlt.retrieveInterestingTerms by lucene docID does not work for all of the documents. I mean for some of the

Re: Implementing MoreLikeThis feature

2015-07-14 Thread Upayavira
Edwin Yeo wrote: Hi, I'm using Solr 5.2.1 and I'm trying to implement MoreLikeThis feature in Solr. But the results that I've been getting for the MoreLikeThis has not been accurate so far. I've been getting the entire documents in the collection returned in the response section even though

Re: Implementing MoreLikeThis feature

2015-07-14 Thread Zheng Lin Edwin Yeo
/IDF). For this to really work, you need a reasonable amount of content. Upayavira On Tue, Jul 14, 2015, at 07:40 AM, Zheng Lin Edwin Yeo wrote: Hi, I'm using Solr 5.2.1 and I'm trying to implement MoreLikeThis feature in Solr. But the results that I've been getting

Re: Implementing MoreLikeThis feature

2015-07-14 Thread Upayavira
). For this to really work, you need a reasonable amount of content. Upayavira On Tue, Jul 14, 2015, at 07:40 AM, Zheng Lin Edwin Yeo wrote: Hi, I'm using Solr 5.2.1 and I'm trying to implement MoreLikeThis feature in Solr. But the results that I've been getting

Implementing MoreLikeThis feature

2015-07-14 Thread Zheng Lin Edwin Yeo
Hi, I'm using Solr 5.2.1 and I'm trying to implement MoreLikeThis feature in Solr. But the results that I've been getting for the MoreLikeThis has not been accurate so far. I've been getting the entire documents in the collection returned in the response section even though the documents has

Re: Implementing MoreLikeThis feature

2015-07-14 Thread Zheng Lin Edwin Yeo
14, 2015, at 07:40 AM, Zheng Lin Edwin Yeo wrote: Hi, I'm using Solr 5.2.1 and I'm trying to implement MoreLikeThis feature in Solr. But the results that I've been getting for the MoreLikeThis has not been accurate so far. I've been getting the entire documents

Re: Understanding the MoreLikeThis Handler

2015-06-23 Thread Sreekant Sreedharan
,contributor:Flirt}]}} So I am clearly missing something... -- View this message in context: http://lucene.472066.n3.nabble.com/Understanding-the-MoreLikeThis-Handler-tp4213279p4213388.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Understanding the MoreLikeThis Handler

2015-06-23 Thread Sreekant Sreedharan
This has been resolved. The issue was indeed the mlt.mintf value. -- View this message in context: http://lucene.472066.n3.nabble.com/Understanding-the-MoreLikeThis-Handler-tp4213279p4213399.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Understanding the MoreLikeThis Handler

2015-06-23 Thread Alessandro Benedetti
You are welcome ;) 2015-06-23 9:27 GMT+01:00 Sreekant Sreedharan sreeka...@alamy.com: This has been resolved. The issue was indeed the mlt.mintf value. -- View this message in context: http://lucene.472066.n3.nabble.com/Understanding-the-MoreLikeThis-Handler-tp4213279p4213399.html Sent

Re: Understanding the MoreLikeThis Handler

2015-06-22 Thread Sreekant Sreedharan
Also, in the documentation it says: /MoreLikeThis constructs a lucene query based on terms within a document. For best results, use stored TermVectors in the schema.xml for fields you will use for similarity. If termVectors are not stored, MoreLikeThis will generate terms from stored fields

Re: Understanding the MoreLikeThis Handler

2015-06-22 Thread Alessandro Benedetti
, title:flirt}, { id:86C532948364505D822FA6FBE5EBD49E, title:flirt}, { id:864R2948364505D822FA6FBE5EBD49E, title:flirt}] }} Cheers 2015-06-22 16:24 GMT+01:00 Sreekant Sreedharan sreeka...@alamy.com: Also, in the documentation it says: /MoreLikeThis

Understanding the MoreLikeThis Handler

2015-06-22 Thread Sreekant Sreedharan
I am trying to implement a search for documents with similar texts like a sample document. I assumed that the SOLR MoreLikeThis handler would suit me well. I have been able to setup the handler and it seems to work. I have a core called images2. And I have the following entry in my

Re: No results for MoreLikeThis

2015-05-26 Thread John Blythe
Good call. I'd previously attempted to use one of my fields, however, and it didn't work. I then thought maybe broadening it to list anything could help. I'd tried using the interestingTerms parameter as well. Just for the sake of double checking before replying to your message, though, I

Re: No results for MoreLikeThis

2015-05-26 Thread Upayavira
I doubt mlt.fl=* will work. Provide it with specific field names that should be used for the comparison. Upayavira On Tue, May 26, 2015, at 08:17 PM, John Blythe wrote: hi all, running a query like this, but am getting no results from the mlt handler:

Re: No results for MoreLikeThis

2015-05-26 Thread John Blythe
Just checked my schema.xml and think that the issue is resulting from the stored property being set false on descript2 and true on descript. -- *John Blythe* Product Manager Lead Developer 251.605.3071 | j...@curvolabs.com www.curvolabs.com 58 Adams Ave Evansville, IN 47713 On Tue, May 26,

No results for MoreLikeThis

2015-05-26 Thread John Blythe
hi all, running a query like this, but am getting no results from the mlt handler: http://localhost:8983/solr/parts/select?q=mfgname2%3A+Acme Corp+descript2%3A+(SCREW+3.5X50MM)start=0rows=1fl=*%2C+scorewt=jsonindent=truemlt=truemlt.fl=*mlt.mintf=1mlt.mindf=1mlt.minwl=1 been googling around

Re: No results for MoreLikeThis

2015-05-26 Thread Upayavira
If the source document is in your index (i.e. not passed in via stream.body) then the fields used will either need to be stored or have term vectors enabled. The latter is more performant. Upayavira On Tue, May 26, 2015, at 09:24 PM, John Blythe wrote: Just checked my schema.xml and think that

NPE with faceting query on MoreLikeThis handler

2015-05-18 Thread Tim Hearn
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at

NPE when Faceting with MoreLikeThis handler in Solr 5.1.0

2015-05-15 Thread Tim Hearn
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at

NPE when Faceting with MoreLikeThis handler in Solr 5.1.0

2015-05-14 Thread Tim Hearn
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at

Re: MoreLikeThis (mlt) in sharded SolrCloud

2015-04-19 Thread Ere Maijala
or is supposed to work with SolrCloud and a sharded collection. I've read issues SOLR-6248, SOLR-5480 and SOLR-4414, and docs at https://wiki.apache.org/solr/MoreLikeThis, but I'm still struggling with multiple issues. I've been testing with Solr 5.1 and the Getting Started sample cloud. So

Re: MoreLikeThis (mlt) in sharded SolrCloud

2015-04-17 Thread Anshum Gupta
, SOLR-5480 and SOLR-4414, and docs at https://wiki.apache.org/solr/MoreLikeThis, but I'm still struggling with multiple issues. I've been testing with Solr 5.1 and the Getting Started sample cloud. So, with a freshly extracted Solr, these are the steps I've done: bin/solr start -e cloud

Re: MoreLikeThis (mlt) in sharded SolrCloud

2015-04-17 Thread Anshum Gupta
Maijala ere.maij...@helsinki.fi wrote: Hi, I'm trying to gather information on how mlt works or is supposed to work with SolrCloud and a sharded collection. I've read issues SOLR-6248, SOLR-5480 and SOLR-4414, and docs at https://wiki.apache.org/solr/MoreLikeThis, but I'm still struggling

MoreLikeThis (mlt) in sharded SolrCloud

2015-04-15 Thread Ere Maijala
Hi, I'm trying to gather information on how mlt works or is supposed to work with SolrCloud and a sharded collection. I've read issues SOLR-6248, SOLR-5480 and SOLR-4414, and docs at https://wiki.apache.org/solr/MoreLikeThis, but I'm still struggling with multiple issues. I've been testing

How to get MoreLikeThis result

2015-03-09 Thread sumanta.pak...@wipro.com
I'm trying to understand how Solr MorelIkeThis works. Steps I've done - 1. In schema.xml I've written - field name=path_exact type=string indexed=true stored=true termVectors=true/ field name=title type=text_general indexed=true stored=true multiValued=true termVectors=true/ 2. Mentioned

Recommendations based on MoreLikeThis user likes/dislikes

2015-03-04 Thread Bryan Bende
Does anyone have experience tracking documents that a user liked / disliked and then incorporating that into a MoreLikeThis query? The idea would be to exclude any document a user disliked from ever returning as a similar document, and to boost any document a user liked so it shows up higher

Re: Recommendations based on MoreLikeThis user likes/dislikes

2015-03-04 Thread Ahmet Arslan
, 2015 7:51 PM, Bryan Bende bbe...@gmail.com wrote: Does anyone have experience tracking documents that a user liked / disliked and then incorporating that into a MoreLikeThis query? The idea would be to exclude any document a user disliked from ever returning as a similar document, and to boost any

Re: MoreLikeThis filter by score threshold

2015-02-04 Thread Ali Nazemian
-Original message- From:Ali Nazemian alinazem...@gmail.com Sent: Tuesday 3rd February 2015 16:22 To: solr-user@lucene.apache.org Subject: MoreLikeThis filter by score threshold Hi, I was wondering how can I limit the result of MoreLikeThis query by the score value

RE: MoreLikeThis filter by score threshold

2015-02-04 Thread Markus Jelsma
Hello Upayavira - Indeed, it works, except ... insert-counter-arguments. It doesn't work after all :) Markus -Original message- From:Upayavira u...@odoko.co.uk Sent: Tuesday 3rd February 2015 21:38 To: solr-user@lucene.apache.org Subject: Re: MoreLikeThis filter by score threshold

Re: MoreLikeThis filter by score threshold

2015-02-04 Thread Ali Nazemian
- Indeed, it works, except ... insert-counter-arguments. It doesn't work after all :) Markus -Original message- From:Upayavira u...@odoko.co.uk Sent: Tuesday 3rd February 2015 21:38 To: solr-user@lucene.apache.org Subject: Re: MoreLikeThis filter by score threshold I've seen

RE: MoreLikeThis filter by score threshold

2015-02-04 Thread Markus Jelsma
3rd February 2015 21:02 To: solr-user@lucene.apache.org Subject: RE: MoreLikeThis filter by score threshold Dear Markus, Hi, Thank you very much for your response. I did check the reason why it is not recommended to filter by score in search query. But I think it is reasonable to filter

MoreLikeThis filter by score threshold

2015-02-03 Thread Ali Nazemian
Hi, I was wondering how can I limit the result of MoreLikeThis query by the score value instead of filtering them by document count? Thank you very much. -- A.Nazemian

RE: MoreLikeThis filter by score threshold

2015-02-03 Thread Markus Jelsma
, at all, so don't do it: https://wiki.apache.org/lucene-java/LuceneFAQ#Can_I_filter_by_score.3F -Original message- From:Ali Nazemian alinazem...@gmail.com Sent: Tuesday 3rd February 2015 16:22 To: solr-user@lucene.apache.org Subject: MoreLikeThis filter by score threshold Hi, I

RE: MoreLikeThis filter by score threshold

2015-02-03 Thread Ali Nazemian
2015 16:22 To: solr-user@lucene.apache.org Subject: MoreLikeThis filter by score threshold Hi, I was wondering how can I limit the result of MoreLikeThis query by the score value instead of filtering them by document count? Thank you very much. -- A.Nazemian

Re: MoreLikeThis filter by score threshold

2015-02-03 Thread Upayavira
- From:Ali Nazemian alinazem...@gmail.com Sent: Tuesday 3rd February 2015 16:22 To: solr-user@lucene.apache.org Subject: MoreLikeThis filter by score threshold Hi, I was wondering how can I limit the result of MoreLikeThis query by the score value instead of filtering them

enabling termVectors for a stored field/MoreLikeThis

2014-08-06 Thread Steven Sian
Hello, I'm currently using Solr's MoreLikeThis functionality. It's working, but slow. I've read that for best results, use stored TermVectors in schema.xml (https://wiki.apache.org/solr/MoreLikeThis). Can anyone tell me what other steps I need to perform to enable term vector storage, other

Solr MoreLikeThis returns no match while the source document is in Solr

2014-07-25 Thread Donglin Chen
Hi, I issued MoreLikeThis query using a uniquekey of a source document, and I got no match as below (but I can select this document fine in Solr). ?xml version=1.0 encoding=UTF-8? response lst name=responseHeader int name=status0/int int name=QTime0/int /lst result name=match

Re: Solr MoreLikeThis returns no match while the source document is in Solr

2014-07-25 Thread Anshum Gupta
Hi, These might help you: https://issues.apache.org/jira/browse/SOLR-4414 https://issues.apache.org/jira/browse/SOLR-5480 and https://issues.apache.org/jira/browse/SOLR-6248. On Fri, Jul 25, 2014 at 11:58 AM, Donglin Chen daniel.chen@gmail.com wrote: Hi, I issued MoreLikeThis query

Re: Solr MoreLikeThis returns no match while the source document is in Solr

2014-07-25 Thread Daniel Chen
/SOLR-6248. On Fri, Jul 25, 2014 at 11:58 AM, Donglin Chen daniel.chen@gmail.com wrote: Hi, I issued MoreLikeThis query using a uniquekey of a source document, and I got no match as below (but I can select this document fine in Solr). ?xml version=1.0 encoding=UTF-8? response

Re: MoreLikeThis

2014-02-07 Thread rubenboada
of dc.contributor.author. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/MoreLikeThis-tp4114605p4116022.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: MoreLikeThis

2014-02-02 Thread Ahmet Arslan
: Hi everybody, I'm working on DSpace 3.2 and I want to change 'Related Documents' functionality, which is based on Solr MoreLikeThis. Now when I open an item, below his metadata appears 'Related Documents' where would have to show other items of actual item's author, but appears items of another

MoreLikeThis

2014-01-31 Thread rubenboada
Hi everybody, I'm working on DSpace 3.2 and I want to change 'Related Documents' functionality, which is based on Solr MoreLikeThis. Now when I open an item, below his metadata appears 'Related Documents' where would have to show other items of actual item's author, but appears items of another

Re: SolrCloud and MoreLikeThis: SOLR-788

2013-12-12 Thread Furkan KAMACI
Hi; SOLR-4414 has no patch. It's related issue has patches bu it seems fixed since Solr 4.1 Thanks; Furkan KAMACI 2013/12/12 gf80 giuseppe_fe...@hotmail.com Hi guys, could you kindly help me to apply patch for MoreLikeThis on solrcloud. I'm using Solr 4.6 and I'm using solrcloud with 10

RE: SolrCloud and MoreLikeThis: SOLR-788

2013-12-12 Thread gf80
with this id?, if yes I can try to customize morelikethis to do this question before to ask for MLT on a owner shard. Obviously, I am assuming that after selecting the right shard the MLT answer include documents in other shards. Let me know if you have any suggestion, thanks in advance, -giuseppe

Re: SolrCloud and MoreLikeThis: SOLR-788

2013-12-12 Thread Furkan KAMACI
related issue my problem is not solved :(. I am just trying to find a warkaround, for example is there any way to ask solrcloud about where is document with this id?, if yes I can try to customize morelikethis to do this question before to ask for MLT on a owner shard. Obviously, I am assuming

RE: SolrCloud and MoreLikeThis: SOLR-788

2013-12-12 Thread gf80
To: giuseppe_fe...@hotmail.com Subject: Re: SolrCloud and MoreLikeThis: SOLR-788 Hi; Yes, I am talking about SOLR-788. There writes 4.1 so it means that it has fixed at 4.1. On the other hand some patches are applied both for ongoing versions and trunk. 5.0 is the trunk version of Solr

Re: SolrCloud and MoreLikeThis: SOLR-788

2013-12-12 Thread Furkan KAMACI
.nabble.com To: giuseppe_fe...@hotmail.com Subject: Re: SolrCloud and MoreLikeThis: SOLR-788 Hi; Yes, I am talking about SOLR-788. There writes 4.1 so it means that it has fixed at 4.1. On the other hand some patches are applied both for ongoing versions and trunk. 5.0

Re: SolrCloud and MoreLikeThis: SOLR-788

2013-12-11 Thread gf80
Hi guys, could you kindly help me to apply patch for MoreLikeThis on solrcloud. I'm using Solr 4.6 and I'm using solrcloud with 10 shards. The problem is described here https://issues.apache.org/jira/browse/SOLR-4414 but I think that it was solved but not already delivered in Solr4.6. Thanks

Re: Problems with distributed MoreLikeThis

2013-08-08 Thread Shawn Heisey
On 8/6/2013 9:43 PM, manju16832003 wrote: I'm not sure about the root cause in your case. However one thing to remember while MLT is that, *MLT does not work with integer fields*. In your case if 'catchall' is copyField and if you are trying to copy any integer values verify it again :-). The

Re: Problems with distributed MoreLikeThis

2013-08-08 Thread Shawn Heisey
On 8/6/2013 1:18 PM, Shawn Heisey wrote: I'm having some problems with distributed MLT. On 4.4, it seems completely broken. Searches that work on 4.2.1 return an exception on 4.4.0. This stackoverflow post shows the EarlyTerminatingCollectorException I'm getting:

Problems with distributed MoreLikeThis

2013-08-06 Thread Shawn Heisey
I'm having some problems with distributed MLT. On 4.4, it seems completely broken. Searches that work on 4.2.1 return an exception on 4.4.0. This stackoverflow post shows the EarlyTerminatingCollectorException I'm getting:

Re: Problems with distributed MoreLikeThis

2013-08-06 Thread manju16832003
: http://lucene.472066.n3.nabble.com/Problems-with-distributed-MoreLikeThis-tp4082873p4082932.html Sent from the Solr - User mailing list archive at Nabble.com.

MoreLikeThis handler and pivot facets

2013-06-26 Thread Achim Domma
as search text. So I do the same as above, but send the text via POST to a MoreLikeThis handler. Therefore I add those additional parameters: mlt.fl = 'text_field' mlt.minwl = 1 mlt.maxqt = 20 mlt.minf = 0 and remove of course the q parameter. The rest of the request - i.e. the faceting parameters

MoreLikeThis - No Results

2013-05-22 Thread Andy Pickler
I'm a developing a recommendation feature in our app using the MoreLikeThisHandler http://wiki.apache.org/solr/MoreLikeThisHandler, and so far it is doing a great job. We're using a user's competency keywords as the MLT field list and the user's corresponding document in Solr as the comparison

Re: MoreLikeThis - No Results

2013-05-22 Thread Andy Pickler
Answered my own question... mlt.mintf: Minimum Term Frequency - the frequency below which terms will be ignored in the source doc Our source doc is a set of limited terms...not a large content field. So in our case I need to set that value to 1 (rather than the default of 2). Now I'm getting

Re: Search MoreLikeThis ID into another collations

2013-05-15 Thread SweetEmerald
. Is this helpful? Thank you very much! -- View this message in context: http://lucene.472066.n3.nabble.com/Search-MoreLikeThis-ID-into-another-collations-tp4063352p4063551.html Sent from the Solr - User mailing list archive at Nabble.com.

Search MoreLikeThis ID into another collations

2013-05-14 Thread SweetEmerald
Hi! Im new in Solr, I would like to do a MoreLikeThis search for an ID into other collections, not only in the collection that owns that ID Is that posible? do you have an example? Thank you very much! -- View this message in context: http://lucene.472066.n3.nabble.com/Search-MoreLikeThis-ID

  1   2   3   4   5   >