- February 12th 2020: Don't Blame the ELBO! A Linear VAE Perspective on Posterior Collapse
- January 29th 2020: Inference Suboptimality in Variational Autoencoders
- November 13th 2019: Compound Probabilistic Context-Free Grammars for Grammar Induction
- October 30th 2019: Latent-Variable Non-Autoregressive Neural Machine Translation with Deterministic Inference using a Delta Posterior
- October 16th 2019: Discrete Flows: Invertible Generative Models of Discrete Data & Discrete Flows and Lossless Compression
- October 3th 2019: A Surprisingly Effective Fix for Deep Latent Variable Modeling of Text & Implicit Deep Latent Variable Models for Text Generation
- J
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
# Copyright 2018 Yongjin Cho <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- # | |
from __future__ import unicode_literals | |
# -------------------------------------- | |
# Now compatible with Pelican 4.0.x! | |
# -------------------------------------- | |
# Added by me | |
import time |
- Make a new project on Overleaf.
- In the share menu, copy the link from "Clone with git"
- On your computer:
- use
cd
to navigate to where you want to put your project
- use
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
# simpleSQL.py | |
# | |
# simple demo of using the parsing library to do simple-minded SQL parsing | |
# could be extended to include where clauses etc. | |
# | |
# Copyright (c) 2003, Paul McGuire | |
# | |
from pyparsing import Literal, CaselessLiteral, Word, Upcase, delimitedList, Optional, \ | |
Combine, Group, alphas, nums, alphanums, ParseException, Forward, oneOf, quotedString, \ | |
ZeroOrMore, restOfLine, Keyword |