Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
| from marvin import ai_fn | |
| @ai_fn | |
| def generate_people(n: int) -> list[dict]: | |
| """Generates a list of n people with random names and ages.""" | |
| generate_people(n=2) # [{'name': 'Olivia', 'age': 30}, {'name': 'Ethan', 'age': 22}] | |