Skip to content
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

docs: restructure the manual entries a bit #751

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 35 additions & 13 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,41 @@ export default defineConfig({
},
"/manual/": {
text: 'Manual', collapsed: false, items: [
{ text: 'Lux Interface', link: '/manual/interface' },
{ text: 'Automatic Differentiation', link: '/manual/autodiff' },
{ text: 'Debugging Lux Models', link: '/manual/debugging' },
{ text: 'Custom Input Types', link: '/manual/dispatch_custom_input' },
{ text: 'Freezing Parameters', link: '/manual/freezing_model_parameters' },
{ text: 'GPU Management', link: '/manual/gpu_management' },
{ text: 'Migrating from Flux', link: '/manual/migrate_from_flux' },
{ text: 'Initializing Weights', link: '/manual/weight_initializers' },
{ text: 'Distributed Training', link: '/manual/distributed_utils' },
{ text: 'Nested AutoDiff', link: '/manual/nested_autodiff' },
{ text: 'Preferences', link: '/manual/preferences' },
{ text: 'Performance Pitfalls', link: '/manual/performance_pitfalls' },
{ text: 'Lux In GPU Kernels', link: '/manual/nn_inside_gpu_kernels' },]
{
text: 'Basics', items: [
{ text: 'Lux Interface', link: '/manual/interface' },
{ text: 'Freezing Parameters', link: '/manual/freezing_model_parameters' },
{ text: 'GPU Management', link: '/manual/gpu_management' },
{ text: 'Initializing Weights', link: '/manual/weight_initializers' },
]
},
{
text: 'Automatic Differentiation', items: [
{ text: 'Automatic Differentiation', link: '/manual/autodiff' },
{ text: 'Nested AutoDiff', link: '/manual/nested_autodiff' },
]
},
{
text: 'Debugging / Performance Enhancement Tools',
items: [
{ text: 'Debugging Lux Models', link: '/manual/debugging' },
{ text: 'Performance Pitfalls', link: '/manual/performance_pitfalls' },
]
},
{
text: 'Migration Guides', items: [
{ text: 'Migrating from Flux', link: '/manual/migrate_from_flux' },
]
},
{
text: 'Advanced Usage', items: [
{ text: 'Custom Input Types', link: '/manual/dispatch_custom_input' },
{ text: 'Configuration via Preferences', link: '/manual/preferences' },
{ text: 'Distributed Training', link: '/manual/distributed_utils' },
{ text: 'Lux In GPU Kernels', link: '/manual/nn_inside_gpu_kernels' },
]
},
]
},
"/api/": {
text: 'API Reference', collapsed: false, items: [
Expand Down
Loading