Posts by Rodrigosis • 9 points
3 posts
-
0
votes1
answer627
viewsQ: Typeerror: 'Autotrackable' Object is not callable
I am trying to use an imported tensorflow_hub model as shown below: #%% from sklearn.model_selection import train_test_split import tensorflow as tf import tensorflow_hub as hub from keras import…
-
0
votes1
answer56
viewsQ: How can I replace this regular expression using Beautiful Soup
Currently I use this expression to extract everything below the tag <b> until I find another tag <b>: blocks = re.findall(r'<b>.+?<b>', str(element)) How can I do the same…
-
0
votes1
answer112
viewsQ: How do I delete lines by cell specific content in pandas
I am preprocessing my data using the Python pandas library. This is a project to train an algorithm to predict "roles" This is the result I get when I run. print(vagas.role_name.value_counts())…