-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new post: How to fine-tune Llama 3.1 on Lightning.ai
- Loading branch information
1 parent
c7eb2ab
commit dc26290
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/app/blog/how-to-fine-tune-llama-3-1-on-lightning-ai-with-torchtune/page.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { ArticleLayout } from '@/components/ArticleLayout' | ||
import { Button } from '@/components/Button' | ||
import Image from 'next/image' | ||
|
||
import fineTuneLlama from '@/images/fine-tune-llama.webp' | ||
|
||
import { createMetadata } from '@/utils/createMetadata' | ||
|
||
export const metadata = createMetadata({ | ||
author: "Zachary Proser", | ||
date: "2024-09-22", | ||
title: "How to fine-tune Llama 3.1 on Lightning.ai with Torchtune", | ||
description: "One of the better Jupyter Notebooks to GPU-backed environment experiences I've had...", | ||
image: fineTuneLlama, | ||
slug: '/blog/how-to-fine-tune-llama-3-1-on-lightning-ai-with-torchtune' | ||
}); | ||
|
||
export default (props) => <ArticleLayout metadata={metadata} {...props} /> | ||
|
||
<Image src={fineTuneLlama} alt="Fine-tune Llama 3.1 on Lightning.ai with Torchtune" /> | ||
<figcaption>Fine-tuning Llama 3.1 on Lightning.ai with Torchtune is a breeze...</figcaption> |
Binary file not shown.