Font | V |
---|---|
3 | VB |
4 | V0 |
5 | V1 |
5+ | V2 |
6A | V3- |
6A+ | V3 |
- Review Prompts
- Summarize in 2-3 setences traditional meaning representation (i.e., video 4.1-4.4).
- Summarize in 2-3 setences Statistical Machine Translation (MT)
- Why are Neural Machine Translation systems more popular right now than than traditional meaning representations?
- Why are attention-based architectures the current SOTA (state of the art)?
- Discussion Prompts
- If you know a langauage other than English:
- What is the most difficult phrase or idea to translate into English?
- How well Google Translate perform?
- If you know a langauage other than English:
- If there is a Google Translate error, what could be the cause of it?
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
select f.foo, | |
b.bar, | |
case | |
when f.foo = 'hello' | |
then 'goodbye' | |
else b.bar | |
end as something_calculated, | |
some_long_expression | |
from fooz f | |
join baz b |
This file contains 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 | |
""" Print text to terminal in color! | |
The way of the future. | |
""" | |
import sys | |
# Define ASCII color codes | |
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = map(lambda x: x+30, range(8)) | |
Run all of these commands at the command line (not in a Jupyter Notebook). The command line will have more informative error messages and if we need complete additional steps, we'll get the messages.
Spark is a framework within the Scala programming language. Scala uses the JVM (Java Virtual Machine) so you'll need install Java.
If you use homebrew:
NewerOlder