The secret color is indigo
This file contains hidden or 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
from fasthtml.common import * | |
import csv | |
import io | |
from datetime import datetime | |
# Add DaisyUI and TailwindCSS via CDN | |
tw_styles = Script(src="https://cdn.tailwindcss.com") | |
# Configure application with DaisyFT resources | |
app, rt, db, DataItem = fast_app( |
Below is a summary of diverse use cases where companies fine-tuned large language models (LLMs) to solve business challenges that previous methods struggled with. Each case highlights the challenge, the fine-tuning approach, and the key results achieved.
Summary of Fine-Tuning Success Cases
Use Case | Key Results | Source Link |
---|---|---|
Wealth Management Assistant (Finance) | 98% advisor adoption; document access up from 20% to 80% | OpenAI & Morgan Stanley |
Insurance Claims AI (Insurance) | 30% accuracy improvement vs. generic LLMs | [Insurance News (EXL)](https://www.insurancenews.c |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
from html2text import HTML2Text | |
from textwrap import dedent | |
import re | |
def get_md(cts, extractor='h2t'): | |
h2t = HTML2Text(bodywidth=5000) | |
h2t.ignore_links,h2t.mark_code,h2t.ignore_images = (True,)*3 | |
res = h2t.handle(cts) | |
def _f(m): return f'```\n{dedent(m.group(1))}\n```' | |
return re.sub(r'\[code]\s*\n(.*?)\n\[/code]', _f, res or '', flags=re.DOTALL).strip() |
This file contains hidden or 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
def follow_user_follows(client, target_user): | |
"Follow everyone the target_user is following." | |
cursor = None | |
total_followed = 0 | |
while True: | |
# Step 1: Fetch a batch of accounts the target user is following | |
# https://docs.bsky.app/docs/api/app-bsky-graph-get-follows | |
response = client.app.bsky.graph.get_follows({ |
Practical Deep Learning for Coders
- __
__
- Practical Deep Learning
- Practical Deep Learning
NewerOlder