Questions tagged [text-processing]
5 questions
5
votes
1 answer
How to evaluate the similarity of two columns containing strings?
I am new to text processing and stuck on a problem to identify the similarity of columns.
To detail the problem, consider we have two columns with string values:
Column A | Column B
-------------------------------
abcd | …
Rachit Tayal
- 213
- 1
- 2
- 4
1
vote
3 answers
The Right Approach / Method for Address Completion
I have data that formatted like this below:
{"input": "250 Hartford Avenue, Bellingham, MA, 2019",
"output": "{
'address': 'Hartford Avenue',
'city': 'Bellingham',
'state': 'MA',
'zip': '2019' }" },
{"input": "700 Oak…
Mico S
- 41
- 3
1
vote
0 answers
Is It Fundamentally Correct To The Text Classification Model To Train First Without Pre-Trained Word Vectors And Then With Pre-Trained Word Vectors?
Is this solution fundamentally correct to the text classification (sentiment analysis) model to train it by these three steps:
train the model without pre-trained word vectors untill reaches the minimum loss or maximum accuracy or even stopped by a…
Soroush Mirzaei
- 121
- 3
1
vote
0 answers
Is This Solution Fundamentally Correct To The Text Classification Model With Pre-Trained Word Vectors?
Is it fundamentally correct to training text classification (sentiment analysis) model with pre-trained word vectors; first with the locked embedding layer, and then train again with locked additional layers and unlocked embedding layer?
as you know…
Soroush Mirzaei
- 121
- 3
1
vote
1 answer
Questions of understanding - Fast Lexically Constrained Decoding with Dynamic Beam Allocation for Neural Machine Translation
I'm currently analysing the paper Fast Lexically Constrained Decoding with Dynamic Beam Allocation for Neural Machine Translation (Post, Vilar 2018): https://arxiv.org/abs/1804.06609
I have understanding problems how the data is processed. For…
Ramón Wilhelm
- 151
- 4