Skip to content

Commit

Permalink
Add new post: How to fine-tune Llama 3.1 on Lightning.ai
Browse files Browse the repository at this point in the history
  • Loading branch information
zackproser committed Sep 22, 2024
1 parent c7eb2ab commit dc26290
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
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 added src/images/fine-tune-llama.webp
Binary file not shown.

0 comments on commit dc26290

Please sign in to comment.