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

feat(peft): add llama token classification example #525

Merged
merged 6 commits into from
May 29, 2024
Merged

feat(peft): add llama token classification example #525

merged 6 commits into from
May 29, 2024

Conversation

SauravMaheshkar
Copy link
Contributor

@SauravMaheshkar SauravMaheshkar commented May 11, 2024

Adds notebook for Token Classification example for Fine-tuning llama 2 for Named Entity Recognition.

  • I also created a peft/ directory since there are other notebooks related to other articles hosted on my gists that should live on wandb/examples.

Request for Review: @tcapelle @soumik12345

Copy link

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

Copy link

github-actions bot commented May 11, 2024

Thanks for contributing to wandb/examples!
We appreciate your efforts in opening a PR for the examples repository. Our goal is to ensure a smooth and enjoyable experience for you 😎.

Guidelines

The examples repo is regularly tested against the ever-evolving ML stack. To facilitate our work, please adhere to the following guidelines:

  • Notebook naming: You can use a combination of snake_case and CamelCase for your notebook name. Avoid using spaces (replace them with _) and special characters (&%$?). For example:
Cool_Keras_integration_example_with_weights_and_biases.ipynb 

is acceptable, but

Cool Keras Example with W&B.ipynb

is not. Avoid spaces and the & character. To refer to W&B, you can use: weights_and_biases or just wandb (it's our library, after all!)

  • Managing dependencies within the notebook: You may need to set up dependencies to ensure that your code works. Please avoid the following practices:

    • Docker-related activities. If Docker installation is required, consider adding a full example with the corresponding Dockerfile to the wandb/examples/examples folder (where non-Colab examples reside).
    • Using pip install as the primary method to install packages. When calling pip in a cell, avoid performing other tasks. We automatically filter these types of cells, and executing other actions might break the automatic testing of the notebooks. For example,
    pip install -qU wandb transformers gpt4
    

    is acceptable, but

    pip install -qU wandb
    import wandb

    is not.

    • Installing packages from a GitHub branch. Although it's acceptable 😎 to directly obtain the latest bleeding-edge libraries from GitHub, did you know that you can install them like this:
    !pip install -q git+https://github.com/huggingface/transformers

    You don't need to clone, then cd into the repo and install it in editable mode.

    • Avoid referencing specific Colab directories. Google Colab has a /content directory where everything resides. Avoid explicitly referencing this directory because we test our notebooks with pure Jupyter (without Colab). Instead, use relative paths to make the notebook reproducible.
  • The Jupyter notebook file .ipynb is nothing more than a JSON file with primarily two types of cells: markdown and code. There is also a bunch of other metadata specific to Google Colab. We have a set of tools to ensure proper notebook formatting. These tools can be found at wandb/nb_helpers.

Before merging, wait for a maintainer to clean and format the notebooks you're adding. You can tag @tcapelle.

Before marking the PR as ready for review, please run your notebook one more time. Restart the Colab and run all. We will provide you with links to open the Colabs below

The following colabs were changed
-colabs/peft/llama_token_cls.ipynb

@tcapelle
Copy link
Collaborator

Hey, can you just use

import wandb
wandb.login()

instead?

@SauravMaheshkar
Copy link
Contributor Author

SauravMaheshkar commented May 27, 2024

Hey, can you just use

import wandb
wandb.login()

instead?

@tcapelle Addressed in 2fe5f12

@tcapelle
Copy link
Collaborator

Two extra small changes:

  • remove the entity = "saurav" and default to None (so it' uses your default entity after calling wandb.login)
  • Add the image to the peft folder and import it as a static image on the notebook (![](llama_image.png).

@SauravMaheshkar
Copy link
Contributor Author

Two extra small changes:

  • remove the entity = "saurav" and default to None (so it' uses your default entity after calling wandb.login)
  • Add the image to the peft folder and import it as a static image on the notebook (![](llama_image.png).

@tcapelle fixed in 7c73358

@tcapelle
Copy link
Collaborator

extra detail, use a relative path to the image, so when we merge the path to your branch is not needed

@SauravMaheshkar
Copy link
Contributor Author

SauravMaheshkar commented May 29, 2024

extra detail, use a relative path to the image, so when we merge the path to your branch is not needed

The image is not in my fork of the wandb/examples repository but rather in my SauravMaheshkar/SauravMaheshkar repository. Ref

@tcapelle
Copy link
Collaborator

add it to the folder then

@tcapelle tcapelle merged commit f52d2ac into wandb:master May 29, 2024
2 checks passed
@SauravMaheshkar SauravMaheshkar deleted the saurav/peft-llama-example branch May 29, 2024 14:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants