Posts by Junior Costa • 1 point
3 posts
-
-3
votes0
answers61
viewsQ: How to make web scraping with Selenium on all pages of a website?
I’d like to do web scraping with Selenium on every Free Market offering page, but so far I’ve only been able to do it on the first one. I use Pandas to store the data in a dataframe. How do I do it…
-
-1
votes1
answer29
viewsQ: Problems with Freqdist and Conditionalfreqdist from NLTK
I tokenized and tagged a Pandas column with nltk and then exported my column as a list. list1 = esquizo['Enunciados_limpos'].apply(lambda x: nltk.word_tokenize(x)).apply(lambda x:…
nltkasked Junior Costa 1 -
-1
votes1
answer715
viewsQ: Error Typeerror: __init__() Missing 1 required positional argument: 'output_dim' when instantiating convulutional neural network object
I took a course on neural networks applied to natural language processing and now I’m trying to instantiate an object based on the class built in class (with some modifications, because my data is…