Displaying 20 results from an estimated 690 matches for "synonyms".
Did you mean:
synonym
2012 Jan 05
1
Enhance synonyms feature of the query parser (patch included)
Very few people seem to be using synonym in Xapian, I recently found some problems in the use of synonyms.
Normally, I think we should not contain any prefix info in synonym table except that 'Z'.
For example, I have the following synonyms and prefix info:
db.add_synonym("search", "find");
db.add_synonym("Zsearch", "Zfind");
db.add_synonym("foo ba...
2011 Jul 28
1
Xapian and Synonyms
...and British English in our
searches and we have had plans for a while now to implement something
that allows users to find 'colour' and 'color', 'tap' and 'faucet' by
doing some clever programming.
Looking at the Xapian docs, though, it appears I can do this using
synonyms although the documentation's not clear on how this works (sorry
if this is starting to sound a little annoying). Having dug through the
mailing list, I can surmise that:
o Synonyms only need to be added to a database once and are
transaction-persistent
o They're activated by adding...
2016 Jan 05
2
synonym expansion for boolean prefixes.
...robably a FieldProcessor - you set one for
> a prefix and the it gets passed the value and returns a Query object
> for it. E.g. in lua (where you can just pass an anon function for the
> FieldProcessor - we ought to support C++11 lambdas for such things):
[snip]
> To achieve this with synonyms in a configurable way you'd need to
> rewrite the synonyms in the database to match the current configuration,
> so it's not as dynamic as the above.
Well, the configuration needs to be somewhere. Would it make sense to
from a performance point of view to be looking up foo_tag_term...
2015 Dec 28
3
synonym expansion for boolean prefixes.
I have an application for synonyms for tags in in notmuch, which means
synonym expansion for a particular boolean prefix. I have a vague memory
of Olly telling me this doesn't work, but I'm not sure about the
details.
My higher level goal is to support a kind of indirection with tags,
where query tag:foo can really generate...
2006 Mar 23
11
ActiveRecord: Oracle metadata loading slow on large database
...following SQL:
select column_name, data_type, data_default, nullable,
decode(data_type, ''NUMBER'', data_precision,
''VARCHAR2'', data_length,
null) as length,
decode(data_type, ''NUMBER'', data_scale, null) as scale
from user_catalog cat, user_synonyms syn, all_tab_columns col
where cat.table_name = ''#{NAME_OF_TABLE}''
and syn.synonym_name (+)= cat.table_name
and col.table_name = nvl(syn.table_name, cat.table_name)
and col.owner = nvl(syn.table_owner, user)
At first glance, the query looks okay. Oracle should apply the WHERE...
2012 Jan 20
2
Perl version of sortable_serialize missing?
I attempted to use the sortable_serialize function from perl, however
doesn't seem to exist. The only occurrence of the string "sortable" in
the /usr/local/perl/5.10.1/Search/ tree is in the pod in Xapian.pm.
What am I doing wrong?
use Search::Xapian;
...
$doc->add_value(4,sortable_serialize($recdate));
Undefined subroutine &main::sortable_serialize called
2008 Apr 24
3
how to delete all document from the DB (without deleting the DB itself)
Hello,
I'm still testing PHP5 bindings and I could'nt find a way to delete
all documents from a DB without deleting other informations stored in
the DB such as synonyms.
Since the process of adding synonyms is time consuming, I would like
to use the same DB but restart my test without any document in the DB,
is this possibile?
I could'nt find a delete_all or a method like that, nor an iterator
over all documents without querying.
Any idea?
--
Alessandro P...
2009 Aug 15
1
extracting text from wordnet using synonym()
Dear group,
There are postings on extracting partial string using sub()/gsub()/gsubfn()
but I still couldn't figure this one out. Supposed I am pulling the
synonyms of "help" using synonyms("help") from wordnet and get the
followings:
> synonyms("help")
[1] "c(\"aid\", \"assist\", \"assistance\", \"help\")"
[2] "c(\"aid\", \"assistance\", \"he...
2008 Feb 22
0
Association to indicate synonyms
Which is the better way to indicating synonyms into a table? But I''d
get all those synonyms together to the main table. Althought if is
choosed a synonym I''d that it were directed to the object of the main
table.
I don''t know if a polymorphic association could be helpful in this
case. Any help please?
-------------...
2016 Jan 05
0
synonym expansion for boolean prefixes.
On Sun, Dec 27, 2015 at 11:24:36PM -0400, David Bremner wrote:
> I have an application for synonyms for tags in in notmuch, which means
> synonym expansion for a particular boolean prefix. I have a vague memory
> of Olly telling me this doesn't work, but I'm not sure about the
> details.
Yes, synonym expansion isn't done for boolean terms (only "probabilistic
terms"...
2016 Jan 09
0
synonym expansion for boolean prefixes.
On Tue, Jan 05, 2016 at 08:43:13AM -0400, David Bremner wrote:
> Olly Betts <olly at survex.com> writes:
>
> > To achieve this with synonyms in a configurable way you'd need to
> > rewrite the synonyms in the database to match the current configuration,
> > so it's not as dynamic as the above.
>
> Well, the configuration needs to be somewhere. Would it make sense to
> from a performance point of view to be...
2016 Jan 09
1
synonym expansion for boolean prefixes.
Olly Betts <olly at survex.com> writes:
> On Tue, Jan 05, 2016 at 08:43:13AM -0400, David Bremner wrote:
>> Olly Betts <olly at survex.com> writes:
>>
>> > To achieve this with synonyms in a configurable way you'd need to
>> > rewrite the synonyms in the database to match the current configuration,
>> > so it's not as dynamic as the above.
>>
>> Well, the configuration needs to be somewhere. Would it make sense to
>> from a performance...
2006 Aug 22
3
synonyms
Hi,
Using ferret and acts_as_ferret.
Great work.
Is there a way to define some synonyms (searchable words that would not
appear in the texts ?
Like stop words, but instead of being removed from query and index,
they would be added ;-)
Can some synonyms be regexp ? I''d like for instance to have ? (oelig)
be equivalent to oe in French.
Or maybe an utf8 normalization could...
2014 Nov 10
0
[PATCH] Update documentation for new compression presets
---
doc/html/documentation_tools_flac.html | 6 ++---
include/FLAC/stream_encoder.h | 42 +++++++++++++++++-----------------
src/flac/main.c | 20 ++++++++--------
3 files changed, 34 insertions(+), 34 deletions(-)
diff --git a/doc/html/documentation_tools_flac.html b/doc/html/documentation_tools_flac.html
index 9f85a25..0964cd2 100644
---
2017 Jan 15
3
unsigned int and FLAC__uint32 are used interchangeably
lvqcl wrote:
> Also MSVC fails because src/libFLAC/include/private/bitmath.h now
> contains "uint32_t long idx" instead of "unsigned long idx".
Ah, missed that because it was MSVC code. They should be `uint64_t`.
> According to MSDN _BitScanReverse*() functions have signatures:
> unsigned char _BitScanReverse(unsigned long *, unsigned long);
> unsigned char
2012 Oct 04
1
Synonyms of Abbreviations
Hello,
I am looking for a documentation or an example to use the synonym function.
I tried this
db.add_synonym("omega","xapain");
and this works by adding the flag FLAG_AUTO_SYNONYMS.
If i try to use the
db.add_synonym("omega","xapain is search engine ");
it fails why? Can xapian use synonym for Abbreviations like MBA => Master
of business administration?
--Naveen.A.N
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <...
2007 Jul 07
2
Extending/Modifying QueryParser
...search for the synonym of a word or not. Preferably by extending the
query language to parse a construct similar to ''%word1'' and then have
the word turned into a or list (i.e., word1|word2|word3|...).
Currently, the query parser constantly calls SynonymTokenFilter to
get synonyms for each token. Is there a way I can go about achieving
this functionality?
Here''s an overview of what I''ve done so far:
My model classes in my rails app use acts_as_ferret with a call that
looks like:
acts_as_ferret(
:fields => [:body],
:store_class_name =>...
2015 Oct 07
2
how to treat synonymous domain names as one
Hallo List Users,
I am curious if there is a way to rewrite domain name to another domain
name. My goal is to provide authentication and mailboxes for the synonymous
domains in a single source while keeping all other domains separate.
I have setup:
auth_username_format = %Lu
mail_location = /var/vmail/%d/%u/Maildir
in userdb/passdb (passwd-file):
/etc/dovecot/%d/users
Say I
2011 Sep 23
2
understanding stemming and synonyms
I am working with version 1.2.7 and want to use stemming and synonyms.
I use the perl-bindings and get some problems.
First of all: the perl-bindings dont allow the QueryParser a third
argument when calling parse_query! So i cannot set a default prefix
(which perhaps is the solution to my problem, but later more)
i have a simple testcase:
3 documents, every...
2019 Sep 19
3
Improving partial lookup results
Incidentally, if you're actually aiming to match different forms of a
name (Peter vs Pete, Ann vs Anne vs Annette) then you might find the
synonym feature a better option than wildcarding.
You'd need to give it a list of names to treat as synonyms, but it
should have many fewer false positives, and can also handle cases
which aren't just a substring - e.g. Robert vs Rob vs Bob vs Bobby, or
look entirely different: e.g. Terence vs Terrence vs Spike or
Margaret vs Peggy vs Daisy.
Cheers,
Olly