Skip to content

Commit

Permalink
docs: restructure the manual entries a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jul 10, 2024
1 parent d448c43 commit 1d55209
Showing 1 changed file with 34 additions and 13 deletions.
47 changes: 34 additions & 13 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,40 @@ 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

0 comments on commit 1d55209

Please sign in to comment.