Message from Python discussions
November 2018
— Just copy the message
From ai_machinelearning_big_data
PyTorch implementation of Google AI's BERT model with a script to load Google's pre-trained models
https://github.com/huggingface/pytorch-pretrained-BERT
— How could I delete a text that's after 2 empty lines?
— I'd do something like this: open two files, the one containing your text an a new file. Read lines on your files. As you read them append them to a variable (or directly write the line to the other file). Also, store the last 2 lines read. Make a condition that when both are newlines you break the loop.
— Hello, I need your advise. I need to parse five websites in a single csv. I really don't want to make a class for each parser or a python script, does anyone have such experience? Also, maybe someone has a parser he can show, just curious.
— You only need one parser
— Maybe I'm wrong, but why write several
— Because different DOM, and i need to gather pagination links from some pages beforehand
— I see
— God.. im really tired of workarounds
— Anyone who worked with pylast? I want to extract the last 4 songs a user listened but I get just onemax_results is equal with 4
def get_recents(self, max_results):
recents = self.user.get_recent_tracks(max_results)
for song in recents:
return str(song.track)
— Every fucking time i think its done, there comes the creature asking for one more feature