rlancemartin commited on
Commit
1ffd09a
1 Parent(s): 2a79a0c

Add example doc and eval set

Browse files
docs/karpathy-lex-pod/karpathy-pod-eval.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ "question","answer",
2
+ "Why is the transformer architecture expressive in the forward pass?","The transformer architecture is expressive because it uses a general message passing scheme where nodes get to look at each other, decide what's interesting and then update each other.",
3
+ "Why is next word prediction an effective training objective?", "On a sufficiently large dataset, the task of predicting the next word multi-tasks knowledge of a lot of things, including understanding of chemistry, physics, and human nature. You have to understand a lot about the world to make that prediction on an internet-scale dataset.",
docs/karpathy-lex-pod/karpathy-pod-eval.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {"question": "Why is the transformer architecture expressive in the forward pass?",
3
+ "answer": "The transformer architecture is expressive because it uses a general message passing scheme where nodes get to look at each other, decide what's interesting and then update each other."},
4
+ {"question": "What design criteria does the Transformer meet?",
5
+ "answer": "The transformer is very expressive in a forward pass, optimizable in the backward pass using the techniques that we have such as gradient descent, and it can run efficiently on our hardware such as GPUs."},
6
+ {"question": "Why is next word prediction an effective training objective?",
7
+ "answer": "On a sufficiently large dataset, the task of predicting the next word multi-tasks knowledge of a lot of things, including understanding of chemistry, physics, and human nature. You have to understand a lot about the world to make that prediction on an internet-scale dataset."},
8
+ {"question": "What was the World Of Bits project and why did it fail?",
9
+ "answer": "World Of Bits was an effort to give AI access to tools, such as a keyboard and mouse, in order to complete tasks, such as complete bookings. It failed because it turned out that reinforcement learning is an extremely inefficient way of training neural networks. You take many actions, but you only get a sparse reward once in a while. Starting from scratch, it is very unlikely to stumble on the correct action - such as a booking - by chance at random, so the reward signal is very sparse."},
10
+ {"question": "Why can additional sensors be a liability in an autonomous vehicle system?",
11
+ "answer": "Each sensor adds complexity to the system. The hardware must be sourced, versioned, and maintain firmware. Software must ingest it, track versions. The cost of this additional bloat or entropy must be weighted against the added benefit of that particular sensor."}
12
+ ]
docs/karpathy-lex-pod/karpathy-pod.txt ADDED
The diff for this file is too large to render. See raw diff