mostafamdy

Results 10 comments of mostafamdy

same error with me Did you solve it?

you can check pull requests I found the solution there https://github.com/joeyism/linkedin_scraper/pulls

Hi @phamtienkha I was searching for it Did you find the way?

I think it isn't handling errors for example it gives me the background if I tried to use google and not have an internet connection also when trying to start...

+1 Did you find a solution?

Thanks @tirthasheshpatel I want to use sampler in custom loss function is it possible? 😅 Is this code correct? ``` def custom_loss(y_true,y_pred): logits=y_pred temperature=1.0 logits = ops.cast(logits, "float32") probabilities =...

I tried to call gemma model like this ``` preprocessor=keras_nlp.models.GemmaPreprocessor( tokenizer, sequence_length=SEQ_LEN, ) model_out = gemma_lm(preprocessor([data[0]])) ``` and then passed model_out to custom_loss function to generate text ``` def custom_loss(y_true,y_pred):...

Thank you so much ❤️ I tried this code and it's working well, but I have a misunderstanding. I tried to change the index of logits ``` for i in...