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
## from http://tr.im/hH5A | |
logsumexp <- function (x) { | |
y = max(x) | |
y + log(sum(exp(x - y))) | |
} | |
softmax <- function (x) { | |
exp(x - logsumexp(x)) | |
} |
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
Debugger entered--Lisp error: (error "Buffer *Group* has no process") | |
process-send-string(nil "6 LOGIN \"USERNAME\" \"PASSWORD\" \n") | |
imap-send-command-1("6 LOGIN \"USERNAME\" \"PASSWORD\"") | |
imap-send-command("LOGIN \"USERNAME\" \"PASSWORD\"" nil) | |
imap-send-command-wait("LOGIN \"USERNAME\" \"PASSWORD\"") | |
#[(user passwd) "BYTECODE" [user passwd status imap-error imap-send-command-wait "LOGIN \"" imap-quote-specials "\" \"" "\"" OK t nil] 7]("USERNAME" "PASSWORD") | |
imap-interactive-login(#<buffer *nnimap* > #[(user passwd) "BYTECODE" [user passwd status imap-error imap-send-command-wait "LOGIN \"" imap-quote-specials "\" \"" "\"" OK t nil] 7]) | |
imap-login-auth(#<buffer *nnimap* >) | |
imap-authenticate(nil nil " *nnimap* ") | |
nnimap-open-connection("") |
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
Initializing the registry | |
Reading ~/.gnus.registry.eld...done | |
Using ascii tree layout with unicode chars. | |
Reading /Users/USERNAME/.newsrc.eld... | |
Reading ~/.gnus.registry.eld...done | |
Reading active file from news.gmane.org via nntp... | |
Reading active file from dc via nnimap... | |
Opening nnimap server on dc... | |
imap: Connecting to localhost... | |
Waiting for response from localhost...done |
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
* OK Dovecot ready. | |
4 NOOP | |
4 OK NOOP completed. | |
3 LOGIN "USERNAME" "PASSWORD" | |
5 NOOP | |
5 OK NOOP completed. | |
6 NOOP | |
6 OK NOOP completed. | |
7 LOGOUT | |
* BYE Logging out |
NewerOlder