Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bsweger/labmeeting organization #1

Merged
merged 11 commits into from Mar 18, 2024
Merged

Commits on Jan 27, 2024

  1. Added latest gpt models, mistral local and mistral api

    Bouzid MEDJDOUB committed Jan 27, 2024
    Copy the full SHA
    ccf64c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Merge pull request ngruver#23 from zaizou/main

    Added latest gpt models, mistral local and mistral api
    ngruver committed Feb 5, 2024
    Copy the full SHA
    350e2fe View commit details
    Browse the repository at this point in the history
  2. Update LICENSE

    ngruver committed Feb 5, 2024
    Copy the full SHA
    0dc4c83 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2024

  1. Update README.md

    ngruver committed Mar 2, 2024
    Copy the full SHA
    9e9cf27 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Use quotes when pip installing jax[cpu]

    In some shells (e.g., zsh), the bracket syntax throws an error
    without the quotes.
    bsweger committed Mar 15, 2024
    Copy the full SHA
    f14e06a View commit details
    Browse the repository at this point in the history
  2. add .gitignore

    bsweger committed Mar 15, 2024
    Copy the full SHA
    47d3652 View commit details
    Browse the repository at this point in the history
  3. Modify the list of models used by the demo

    Although demo.ipynb seems to be an older version of the example code in demo.py,
    let's fix up the model list so it won't throw errors when people run it.
    - text-davinci-003 is deprecated, and OpenAI recommends gpt-3.5-turbo-instruct instead
    - team's OpenAI account doesn't have access to gpt-4
    bsweger committed Mar 15, 2024
    Copy the full SHA
    fb35d93 View commit details
    Browse the repository at this point in the history
  4. Fix keyword argument error when using promptcast model

    Make sure 'parallel' is always in **kwargs and don't pass it in
    explicitly when calling generate_predictions.
    bsweger committed Mar 15, 2024
    Copy the full SHA
    2b90273 View commit details
    Browse the repository at this point in the history
  5. Remove reference to autoreload extension

    Referencing this iPython extension can cause errors for people
    running the Jupyter notebook for the first time (some IDEs
    are smart enough to prompt for an install, but some are not). Because
    %autoreload isn't really useful for someone running a demo, let's
    remove it.
    bsweger committed Mar 15, 2024
    Copy the full SHA
    f8066d6 View commit details
    Browse the repository at this point in the history
  6. Add python-dotenv for handling environment variables

    This is an optional convenience for people who don't want to
    store secrets in dotfiles such as .zshrc or .bashrc (or are
    having trouble doint so).
    bsweger committed Mar 15, 2024
    Copy the full SHA
    c448d2a View commit details
    Browse the repository at this point in the history
  7. Add demo_openai.py

    demo_openai.py is a copy of demo.ipynb, since it will be easier for
    lab meeting to collaborate outside of a notebook environment.
    bsweger committed Mar 15, 2024
    Copy the full SHA
    9ffe898 View commit details
    Browse the repository at this point in the history