257 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
57
views
How to get Tag inner text and Attribute value in the same loop and row HtmlAgilityPack C#
Following is the HTML i am working on; (C# project)
</TR>
<TR>
`<TD ALIGN="center"> <INPUT TYPE="checkbox" NAME="f0" VALUE="14652 4-76-...
0
votes
1
answer
68
views
Reading output of tokens_compound into a dictionary
I want to use tokens_compound to examine the frequency of phrases in the documents of a corpus. I used the corpus data_corpus_inaugural for illustrative purposes and selected some ngrams to search for....
-1
votes
1
answer
33
views
gensim for Political Ad verification?
I am trying to build a model that uses transcribed audio and on-screen text to classify a video ad as political or non-political, as well as extracts the name of the candidate and sponsor. How can I ...
0
votes
1
answer
101
views
How to translate a text with a variable
Let say I want to translate
The Price is 2,99 EUR until next monday.
This 2,99 is variable and can change. My Angular HTML part of this is like.
<div>The Price is {{ price| currency: 'EUR' }} ...
0
votes
1
answer
119
views
Problem adding training phrases in several dialogflow intents, whit several acounts
Today we had a problem with dialogflow.
We have tried adding training phrases in several dialogflow intents, from different accounts, without getting the changes applied. An agent message appears ...
0
votes
1
answer
144
views
Atlas Mongo DB - Sub Phrase title search
Im new to Mongo and would like some help on how to do a phrase search on Atlas Mongo. I have tried doing a title search from the out of the box movies collection using the "sample-mflix" ...
0
votes
1
answer
36
views
Speech synthesis: How mark a usual saying as idiom
There are a couple of idioms or phrases or popular colloquial sayings like „Oh my dear!" , „Be careful", „please wait" or (German)„Ach so!" or „Achtung". How can I mark these as special expressions so ...
2
votes
1
answer
610
views
PowerQuery - Find a phrase and return a word containing that phrase
I have a column in which the phrase "23PL..........") occurs in various random places (sometimes at the beginning, sometimes at the end, sometimes in the middle.) The phrase 23PL is followed ...
2
votes
2
answers
289
views
MySQL Fulltext in Binary Mode doesn't match phrases
Implementing a simple fulltext search I encountered a problem with the combination of boolean mode and phrases. Also worth noting is that the column has a binary collation (utf8_bin) whilst the table ...
0
votes
0
answers
91
views
iMacros - Extract first words from a phrase
I use the code below in iMacros to extract the first 10 words of a phrase. There are situations when it works 100%, but there are also other situations when some of the extracted words are called &...
2
votes
1
answer
847
views
Can someone assist me with a multi-word synonym problem in Lucene?
Simple synonyms (wordA = wordB) are fine. When the synonym is a phrase (wordA = wordB word C), then matching is hit-or-miss.
I have a simple test case (it's delivered as an Ant project) which ...
0
votes
1
answer
591
views
Generate Bigrams Using Gensim Phrases and Concatenate with Tokenized Unigrams
I am trying to include frequently shown bigrams into a set of unigram tokens using Gensim Phrases function but here I am stuck at the last stage.
What I am getting as an output is shown below (Having) ...
0
votes
1
answer
95
views
Elastic Search Sorting on a number field that matches phrase field
I want to do sorting on nested field quality score where the trade name matches the search term.
My code is as below which works fine when search term is one word. It fails to sort when search term is ...
0
votes
3
answers
709
views
How to remove sentences/phrases of a certain length from a list?
So this is a smaller version of my sentences/phrase list:
search = ['More than words', 'this way', 'go round', 'the same', 'end With', 'be sure', 'care for', 'see you in hell', 'see you', 'according ...
1
vote
1
answer
571
views
Generating Trigrams with Gensim's Phraser Package in Python
I have the following code snippet which I created with the help of this tutorial for unsupervised sentiment analysis purposes:
sent = [row for row in file_model.message]
phrases = Phrases(sent, ...