Fernando Marcos Wittmann

Results 11 comments of Fernando Marcos Wittmann

@reaperhulk , I am getting the above error when making a connection on snowflake. Sharing in case it is helpful for reproducibility: ``` # pip install snowflake-connector-python import snowflake.connector conn...

This repo implements exponential smoothing: https://github.com/WittmannF/LRFinder ![](https://user-images.githubusercontent.com/5733246/61158150-84382100-a4ce-11e9-9d88-99cd43986b0e.png)

Hey @spinlud, I'm using MacOS

Here's my version: https://gist.github.com/WittmannF/c55ed82d27248d18799e2be324a79473 Three changes were made: - Number of iterations is automatically inferred as the number of batches (i.e., it will always run over one epoch) - Set...

> It is general issue with keras/tboard that you cannot get histograms with a validation_generator, changing histogram_freq=0 stops it trying to produce them. What's the issue? Why it is not...

Also curious about limitations, had success collecting 100 urls, but I need 10k. I can help with the first point as I also needed the urn: 1. Just use the...

This PR shouldn't be ignored. The current version is for python 2: https://developers.google.com/youtube/v3/guides/uploading_a_video

hi @M1z23R ! I'm trying what you suggested, but I'm getting the following error: ``` {'code': 'SALES_SEAT_REQUIRED', 'serviceErrorCode': 784523211, 'status': 403} ``` Any idea about what is going wrong based...

Hi @M1z23R! I'm using a paid account, but maybe I should be authenticating directly to linkedin sales. If you have any code that you used at that time, I'd appreciate.

Thanks @M1z23R ! I was able to convert your code to python using GPT: ```python import requests def getCSRF(cookies): for cookie in cookies.split("; "): key = cookie.split("=")[0] value = cookie.split("=")[1]...