This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am jasonkessler on github. | |
* I am jasonkessler (https://keybase.io/jasonkessler) on keybase. | |
* I have a public key ASCPvUWxdEZQwSzjQWQxLIxn9xolt5fWO6Tr2SFQ-_tsEAo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def apache_combined_log(request: flask.request): | |
path = request.path | |
if len(request.query_string) > 0: | |
path += '?' + request.query_string.decode('utf-8') | |
size = '-' | |
if request.__sizeof__() > 0: | |
size = request.__sizeof__() | |
referrer = '-' | |
if request.referrer: | |
referrer = request.referrer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mock, keras | |
def custom(x): | |
return x # Replace this with your activation function. | |
model_json = open('config.json').read() | |
''' | |
Trying to run: |
NewerOlder