-
Notifications
You must be signed in to change notification settings - Fork 1
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
Sweep: T5 Model Fine-Tuning Jupyter Notebook #67
Comments
Hey @justinthelaw, I've started working on this issue. The plan is to create a new Jupyter Notebook in the "models" directory. This notebook will contain all the necessary code for fine-tuning the T5 model. It will include steps for installing dependencies, loading and preprocessing the training data, training the T5 model, and saving the fine-tuned model. Give me a minute! Best, Some code snippets I looked at (click to expand). If some file is missing from here, you can mention the path in the ticket description.I'm a bot that handles simple bugs and feature requests but I might make mistakes. Please be kind! |
Using loguru, add error catching and logging within the T5 Jupyter Notebook, similar to the other existing Jupyter Notebooks. Replace the fine_tuning.ipynb with the T5 notebook your've been working on. Also, make sure to have the notebook pull in the existing training data within the data/training directory. |
Here's the PR! #71Step 1: 🔍 Code SearchI found the following snippets in your repository. I will now analyze this snippets and come up with a plan. Some code snippets I looked at (click to expand). If some file is missing from here, you can mention the path in the ticket description.Step 2: 🧐 Snippet AnalysisFrom looking through the relevant snippets, I decided to make the following modifications:
Step 3: 📝 PlanningI have created a plan for writing the pull request. I am now working on executing my plan and coding the required changes to address this issue. Here is the planned pull request: Add T5 Model Fine-Tuning Jupyter Notebook
Step 4: ⌨️ CodingI have finished coding the issue. I am now reviewing it for completeness. Step 5: 🔁 Code ReviewSuccess! 🚀 I'm a bot that handles simple bugs and feature requests but I might make mistakes. Please be kind! |
It seems like both fine_tuning.ipynb and t5_fine_tuning.ipynb both exist at the same time. Please merge the two into 1 file that trains the T5 base model with error handling. |
Here's the PR! #72Step 1: 🔍 Code SearchI found the following snippets in your repository. I will now analyze this snippets and come up with a plan. Some code snippets I looked at (click to expand). If some file is missing from here, you can mention the path in the ticket description.Step 2: 🧐 Snippet AnalysisFrom looking through the relevant snippets, I decided to make the following modifications:
Step 3: 📝 PlanningI have created a plan for writing the pull request. I am now working on executing my plan and coding the required changes to address this issue. Here is the planned pull request: Update Fine-Tuning Notebook for T5 Model
Step 4: ⌨️ CodingI have finished coding the issue. I am now reviewing it for completeness. Step 5: 🔁 Code ReviewSuccess! 🚀 I'm a bot that handles simple bugs and feature requests but I might make mistakes. Please be kind! |
Directory: "models/"
Context: training data exists within "models/data/training", following a "summary" - "evaluation" model usually used by T5.
Task: create a python3 Jupyter Notebook in the mentioned Directory with all the write dependencies, transformers, and methods, to train a T5 model using the training data mentioned in Context. Also ensure the Jupyter Notebook follows the formatting, naming conventions, and method abstraction (separated *.py files), as the ones that already exist in the mentioned Directory.
The text was updated successfully, but these errors were encountered: