diff --git a/.vscode/settings.json b/.vscode/settings.json index 85ebb19..608a190 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,4 +8,10 @@ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, + "flake8.interpreter": [ + "/Users/goldpiggy/anaconda3/envs/uniflow/bin/python" + ], + "pylint.interpreter": [ + "/Users/goldpiggy/anaconda3/envs/uniflow/bin/python" + ], } \ No newline at end of file diff --git a/app/components/Agenda.tsx b/app/components/Agenda.tsx index b845dfd..c05b2a5 100644 --- a/app/components/Agenda.tsx +++ b/app/components/Agenda.tsx @@ -2,12 +2,13 @@ import Section from './Section'; const agendaItems = [ 'Section 1: Introduction to RAG and LLM Fine-Tuning (20 mins)', - 'Section 2: Lab1: RAG pipeline (30 mins)', - 'Section 3: Lab 2: LLM fine-tuning (30 mins)', + 'Section 2: Lab setup (10 mins)', + 'Section 3: Lab 1: Advanced Techniques in RAG (40 mins) - Richard Song', 'Break (10 mins)', - 'Section 4: The Pros and Cons of RAG and Fine-tuning (30 mins)', - 'Section 5: Lab3: RAG + Fine-tuning and Benchmarking (45 mins)', - 'Section 6: Summary and Q&A (15 mins)', + 'Section 4: Lab 2: LLM Fine-Tuning (40 mins) - Yunfei Bai, Rachel Hu ', + 'Break (10 mins)', + 'Section 5: Lab 3: RAG and Fine-Tuned Model Benchmarking (30 mins) - José Cassio dos Santos Junior', + 'Section 6: Conclusion and Q&A (20 mins)', ]; const Agenda = () => { diff --git a/app/components/Navbar.tsx b/app/components/Navbar.tsx index 1fdc38d..cf040ba 100644 --- a/app/components/Navbar.tsx +++ b/app/components/Navbar.tsx @@ -36,7 +36,7 @@ const Navbar = () => { text-neutral-100 " > - KDD Workshop 2024 + 14:00 – 17:00, August 25, 2024 diff --git a/app/page.tsx b/app/page.tsx index 303d563..4fd102e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,26 +7,34 @@ import TextContainer from './components/TextContainer'; export default function Home() { return (
- +
-
- +
+ +
);