The term tag has no wiki summary.
0
votes
0answers
21 views
Term::ReadKey and timeout
Is here the timeout on the second ReadKey needed by something or can I leave it out?
#!/usr/bin/env perl
use warnings;
use strict;
use 5.10.0;
use Term::ReadKey;
use constant {
KEY_ENTER ...
0
votes
1answer
53 views
Best way to construct term using Lucene 4.3.0 API?
I am currently constructing a term using the below steps,
Final Static (class level): Term t=new Term(fieldName);
Inside some function(s):
t.createTerm(termText);
It seems like createTerm ...
0
votes
0answers
13 views
Term extraction, how to make a language file
I've downloaded the Term extraction from FiveFilters.org and I want to make my own (dutch) language file. But I do not know how to make one. When I look in the english data file, i see this:
...
0
votes
1answer
27 views
Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)
I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
0
votes
0answers
33 views
Elasticsearch, trying to get stats on object in an array
I've walk through a lot of thread to resolve my issue but I think that it's not possible. Perhaps someone will have an idea :
I got a mapping including an array of objects (perhaps it's my mistake ?): ...
0
votes
1answer
31 views
Exclude term of current post in the list of terms of taxonomy
Under single-CPT.php, I have a select tag which displays terms of my taxonomy. I first return the term of the current post then return the other terms. The problem is that I have a redundant current ...
0
votes
1answer
34 views
Calculating B and |V| in naive bayes text classification
I found a link about multinomial naive bayes classifier
multinomial naive bayes link
How we could calculate the B' or |V|?
The page said that it is the number of terms in the vocabulary. In its ...
0
votes
1answer
47 views
Transfer my default post categories to custom-post-type terms of taxonomy
I have a website built in Wordpress default structure using default posts under about 200 categories.
Actual requirements need that I transform my website to a custom post type strucure using the ...
2
votes
2answers
99 views
How can I echo to /dev/tty?
Is there a way to send something like an "end of data" after executing
echo "test" > /dev/tty1
in order to gain the "input cursor" back to "receiving" terminal (in this case tty1)?
Screenshot: ...
0
votes
0answers
25 views
Wp_set_object_term child
I would like to set a term as a child. I used this function:
wp_set_object_terms( $post_id, array($brand,$model), 'brand', false );
$brand is the parent term and $model is the child of $brand, but ...
0
votes
1answer
154 views
Colors slightly off in “solarized” color scheme
I have installed the Solarized color-theme using package.el in the latest version of Emacs (24.3), but the colors seem to be off (the contrast seems to be too low)
My Solarized installation:
...
0
votes
1answer
20 views
What does “Based on top of” mean?
I always see this term and never understood it, for example:
TCP is being used on top of IP (Internet Protocol).
Here's another one:
Several of the RemObjects SDK components are based on top of ...
3
votes
1answer
70 views
Hilog terms in (XSB) Prolog
Are Hilog terms (i.e. compounds having as functors arbitrary terms) still regarded as a powerful feature in XSB Prolog (or any other Prolog) ?
Are there many XSB projects currently using this feature ...
0
votes
1answer
40 views
Use termfreq(field,term) function for phrase with space in SOLR 4.1
I am using termfreq(field,term) SOLR function. This works:
?fl=product_name,termfreq(product_name,"iphon")&q=iphone 4s //Found freq
But the problem is to have term like "iphone 4s" with ...
0
votes
1answer
68 views
How to set the TERM environment variable
I am writing a small shell and I need to launch emacs from it. However, when I call the emacs command I get the error "Please set TERM environment variable, see tset". Now, I have tried using tset ...
0
votes
1answer
44 views
How to get the term based on termPostion in Lucene?
Here are some code to access terms in a Lucene document:
int docId = hits[i].doc;
TermFreqVector tfvector = reader.getTermFreqVector(docId, "contents");
TermPositionVector tpvector = ...
0
votes
1answer
69 views
Wordpress do term is child of something term
For example I have term 'child', how to check do this term is child of term 'Mother' ?
0
votes
0answers
14 views
auto-tags for arabic text
I have a server that extract articles from specific web sites, written in Arabic language.
I would like to get tags list of the important topics discussed.
In other words doing auto-tags from each ...
0
votes
0answers
66 views
Wordpress url rewrite not work for pages
To add taxonomy terms to url for posts I use this function
add_filter('post_link', 'kalba_permalink', 10, 3);
add_filter('post_type_link', 'kalba_permalink', 10, 3);
function ...
1
vote
1answer
360 views
Wordpress get current post term parent by child ID
In page I have ID of term child, I need find out this child parent by child ID, it's passible, maybe someone can help with this ?
0
votes
1answer
309 views
Get terms related to custom post type
I am building a site based on categories of information given to each US state. I have created a taxonomy called state_data and a custom post type for each state. The state post types share the ...
1
vote
1answer
149 views
How to extract a single value from the array returned by wp_get_post_terms
In Wordpress I want to display the term attached to a post in the taxonomy 'chapters'].
I can get the taxonomy information for a post using
$sectiondata = wp_get_post_terms($post->ID, 'chapters', ...
1
vote
1answer
397 views
Compare Terms of Documents in Document Term Matrix in R
I need to build an Similarity Matrix by comparing terms of documents. So for example if Document1 and Document2 have 2 same terms, i need to write a 2 in my similarity matrix
at m[1, 2]. My ...
0
votes
0answers
26 views
Higest frequent terms from query
I'd like to crate a cloud with frequent terms. In the specific use case I need to query a list of Entities (for example Rss) for specific category and then extract the most frequent terms from this ...
0
votes
2answers
52 views
Leveling Gene Ontology represented by a graph
I uploaded a full Gene Ontology Terms file from this link http://www.geneontology.org/GO.downloads.ontology.shtml
I represented the data by a graph where GO Terms are nodes and isA and PartOf ...
0
votes
0answers
49 views
I'm trying to make a list of all the posts classified under one term for a custom taxonomy.
I'm trying to make a list of all the posts classified under one term for a custom taxonomy.
I have created a custom post type called "testimonial" with a custom taxonomy of "testimonial categories". ...
0
votes
0answers
53 views
wordpress taxonomy page next prev link
I created taxonomy page taxonomy-portfolio.category.php in which I display list of custom post connected with that custonomy. I display a title of the page like this
<h1><?php if( ...
1
vote
6answers
73 views
Python Start counting array of length x starting from second item and finishing on the first one
In Python
I have an array of length x.
let
array = [0, 1, 2, 3, 4, 5]
I want to get from the array above the result like this:
[1, 2, 3, 4, 5, 0]
So basically i wan't to skip the first term and ...
1
vote
1answer
71 views
Penalize documents with a lot of unique terms in lucene
My purpose is to find animals(doc) given a city (term)
I've indexed documents this way:
doc1(bear) = [city1, city2, city2, city3..]
doc2(dog) = [city1, city1, city1, city2, city2, city2, city3, ...
0
votes
1answer
86 views
Solr/Lucene result field term count
I am using solr to do a search. As result I get back a set of fields. One of the fields is "domains". The domain field is a many to many relationship in my database, so my docs contain an array of ...
0
votes
2answers
395 views
SOLR term frequency
I am using solr, and so far everything is going great. When I do a search, I want to get back how many times the search 'term' was per document, along with the document itself. I have found alot of ...
1
vote
1answer
69 views
Update multi-term buffer name based on PWD
If I use konsole or other terminal, the terminal tag name can change based on PWD. But in multi-term, the buffer name is *terminal<number>*. This is not very nice. Because when I switch between ...
1
vote
1answer
218 views
how to Sort post by custom taxonomy in wordpress?
I have created custom post in WordPress named "job_listing".
All posts are stored under "job_listing" and for the job we have information for the job type eg. permanent , part time etc.
This ...
3
votes
1answer
126 views
Why restricts Lucene's MoreLikeThis it's TermQueries to the field with the highest docFreq?
I'm currently working on a modified version of Lucenes MoreLikeThis, to fit my own purposes.
There is one thing i still can't understand.
When creating the queue, MoreLikeThis searches for the field ...
1
vote
1answer
229 views
R DocumentTermMatrix control list not working
I have two following DTM-s:
dtm <- DocumentTermMatrix(t)
dtmImproved <- DocumentTermMatrix(t,
control=list(minWordLength = 4, minDocFreq=5))
When I impement this, I see two ...
0
votes
2answers
225 views
Lucene.net query for contains and avoiding empty string fields
I have a Lucene index setup which I can query fine. I just am not able to get a "field not equals to empty string" condition to work. For example in the below code specimen, I want to have 3 ...
0
votes
1answer
82 views
How to use font-lock-add-keywords inside an ansi-term?
I can easily add keywords that I want to highlight to, say, lisp-interaction-mode, by doing the following:
(font-lock-add-keywords 'lisp-interaction-mode '(("foo" (0 '(font-lock-warning-face)))))
...
0
votes
1answer
39 views
How to disable automatical line-cutting in emacs-term?
I'm using emacs terminal emulator. GNU Emacs 23.2.1 with GNU bash, version 3.00.0(1)-release.
When some command, say grep 1 file.txt prints very long lines, emacs trunkate them to fit the window ...
1
vote
1answer
84 views
solr : how to boost query term after tokenizer
If the query word is "ABCD", then after being tokenized it is "A" "BC" "D". I want to boost term "BC", so the query word is like this:
A BC^10 D" and phrase query "ABCD"
All query words users typing ...
0
votes
1answer
103 views
WP custom taxonomy description by term
Seen a lot of posts elsewhere, but nothing quite hitting the mark.
I need to echo the description of a specific term of a custom taxonomy related to a custom post type.
Right now, I'm doing the ...
0
votes
1answer
72 views
How do I access Terminal Status responses?
http://www.termsys.demon.co.uk/vtansi.htm this link has a bunch of escape codes, and I've written scripts that have moved the cursor and changed the color - I'm curious how one goes about ...
0
votes
1answer
166 views
How to see if the addition of an interaction term affects the dependent variable?
I have a model of a few independent variables and one dependent one. I need to know how can I see if the addition of the interaction terms of two independent variable affect the dependent variable. I ...
0
votes
1answer
33 views
resolve to a new url
I got this term when reading document.
..What this method does is it will resolve to a relative path to where our theme folder resides.
I find the definition of resolve on online dictionary and found ...
0
votes
2answers
390 views
How do I move terms from one vocabulary to another in Drupal 7 without losing the node reference?
I've inherited a site with a very big hierarchical taxonomy:
Vocabulary name: categories
--term: company name
---- many child terms
-- term: country
---- many child terms
-- term: issue
---- many ...
2
votes
1answer
879 views
Elastic Search Hyphen issue with term filter
I have the following Elastic Search query with only a term filter. My query is much more complex but I am just trying to show the issue here.
{
"filter": {
"term": {
...
0
votes
0answers
34 views
Wordpess – Showing content only in custom taxonomy posts
I've a custom taxonomy called CLASS which is hierarchial. As a Sub-taxonomy, I've PHYSICS.
I want to show a certain text only when users view posts (not archive pages as well) in PHYSICS taxonomy ...
1
vote
1answer
102 views
Emacs term-mode: stop setting remote default-directory on some hosts
I use term-mode to run Bash shells within Emacs. On remote hosts, term-mode's directory tracking feature helpfully sets default-directory to have the host name in it, so that tab completion and file ...
0
votes
0answers
156 views
How to combine Solr Term Frequency and Field Boosting
for my search module I want to combine the solr term frequency and the field boosting.
For example:
A search for "House" would result in a list of documents whose entries were boosted by the title ...
0
votes
2answers
369 views
Add taxonomy terms directly to node through SQL (term_node)
How can I add taxonomy terms directly to a node through SQL?
I used:
db_query("INSERT INTO {term_node} (nid, vid, tid) VALUES ( " . $row['nid'] . "," . $the_term->vid . "," . $row['next_tid'] . ...
2
votes
2answers
141 views
Fixed width in Emacs term-mode
I've been using term-mode (called by (term)) more frequently lately
to run some shell subprocesses, and something is bothering me.
The problem is that some of these processes have a text UI, and they
...


