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

deactivate non-functional links #28

Merged
merged 2 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:

- name: Build books
run: |
mdbook build books/fundamentals
mdbook build books/cv
# mdbook build books/fundamentals
# mdbook build books/cv
mdbook build books/nlp
mdbook build books/rl
mdbook build books/responsible_ai
mdbook build books/fl
# mdbook build books/rl
# mdbook build books/responsible_ai
# mdbook build books/fl

- name: Copy static assets to build folder
run: |
Expand Down
128 changes: 64 additions & 64 deletions books/nlp/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,74 +1,74 @@
<!-- markdownlint-disable-file MD025 -->
<!-- markdownlint-disable-file MD025 MD042 MD013 -->

# Summary

[Introduction](README.md)

# Natural Language Processing

- [LLMs](llms/README.md)
- [Architecture](llms/architecture/README.md)
- [FeedForward](llms/architecture/feedforward.md)
- [Attention](llms/architecture/attention.md)
- [Transformer](llms/architecture/transformer.md)
- [Mixture of Experts](llms/architecture/moe.md)
- [Encoders](llms/architecture/encoders.md)
- [Decoders](llms/architecture/decoders.md)
- [Encoder-Decoder](llms/architecture/encoder_decoder.md)
- [Multi-Latent Attention](llms/architecture/mla.md)
- [Prompting](llms/prompting/README.md)
- [Prompt Engineering](llms/prompting/prompt_engineering.md)
- [In-Context Learning](llms/prompting/icl.md)
- [Few-Shot Learning](llms/prompting/few_shot.md)
- [Chain of Thought](llms/prompting/cot.md)
- [Tree of Thought](llms/prompting/tot.md)
- [Soft prompts](llms/prompting/soft.md)
- [Hard prompts](llms/prompting/hard.md)
- [Fine-tuning](llms/fine_tuning/README.md)
- [Supervised Fine-Tuning](llms/fine_tuning/sft.md)
- [RLHF](llms/fine_tuning/rlhf.md)
- [DPO](llms/fine_tuning/dpo.md)
- [GRPO](llms/fine_tuning/grpo.md)
- [PEFT](llms/fine_tuning/peft.md)
- [LoRA](llms/fine_tuning/lora.md)
- [QLoRA](llms/fine_tuning/qlora.md)
- [DoRA](llms/fine_tuning/dora.md)
- [YaRN](llms/fine_tuning/yarn.md)
- [Agents](llms/agents/README.md)
- [Tool Use](llms/agents/tool_use.md)
- [Reflection](llms/agents/reflection.md)
- [Multi Agent](llms/agents/multi_agents.md)
- [Planning](llms/agents/planning.md)
- [RAG](llms/rag/README.md)
- [Chunks](llms/rag/chunks.md)
- [Sliding Window](llms/rag/sliding_window.md)
- [Graph RAG](llms/rag/graph.md)
- [Model Compression](llms/compression/README.md)
- [Distillation](llms/compression/distillation.md)
- [Quantization](llms/compression/quantization.md)
- [Efficient Inference](llms/efficient_inference/README.md)
- [Fast Attention](llms/efficient_inference/fast_attention.md)
- [Distillation](llms/efficient_inference/distillation.md)
- [Quantization](llms/efficient_inference/quantization.md)
- [Decoding](llms/decoding/README.md)
- [Multi-Token Prediction](llms/decoding/multi_token_prediction.md)
- [Top-k](llms/decoding/top_k.md)
- [Greedy](llms/decoding/greedy.md)
- [Speculative](llms/decoding/speculative.md)
- [Miscellaneous](llms/misc/README.md)
- [Rejection Sampling](llms/misc/rejection_sampling.md)
- [Emergent](llms/misc/emergent.md)
- [LLM As Judge](llms/misc/llm_as_judge.md)
- [Notable Models](models/README.md)
- [BERT](models/bert.md)
- [Llama-3](models/llama_3.md)
- [DeepSeek-R1](models/deepseek_r1.md)
- [DeepSeek-v3](models/deepseek_v3.md)
- [Qwen2.5](models/qwen2pt5.md)
- [LLMs]() <!-- (llms/README.md) -->
- [Architecture]() <!-- (llms/architecture/README.md) -->
- [FeedForward]() <!-- (llms/architecture/feedforward.md) -->
- [Attention]() <!-- (llms/architecture/attention.md) -->
- [Transformer]() <!-- (llms/architecture/transformer.md) -->
- [Mixture of Experts]() <!-- (llms/architecture/moe.md) -->
- [Encoders]() <!-- (llms/architecture/encoders.md) -->
- [Decoders]() <!-- (llms/architecture/decoders.md) -->
- [Encoder-Decoder]() <!-- (llms/architecture/encoder_decoder.md) -->
- [Multi-Latent Attention]() <!-- (llms/architecture/mla.md) -->
- [Prompting]() <!-- (llms/prompting/README.md) -->
- [Prompt Engineering]() <!-- (llms/prompting/prompt_engineering.md) -->
- [In-Context Learning]() <!-- (llms/prompting/icl.md) -->
- [Few-Shot Learning]() <!-- (llms/prompting/few_shot.md) -->
- [Chain of Thought]() <!-- (llms/prompting/cot.md) -->
- [Tree of Thought]() <!-- (llms/prompting/tot.md) -->
- [Soft prompts]() <!-- (llms/prompting/soft.md) -->
- [Hard prompts]() <!-- (llms/prompting/hard.md) -->
- [Fine-tuning]() <!-- (llms/fine_tuning/README.md) -->
- [Supervised Fine-Tuning]() <!-- (llms/fine_tuning/sft.md) -->
- [RLHF]() <!-- (llms/fine_tuning/rlhf.md) -->
- [DPO]() <!-- (llms/fine_tuning/dpo.md) -->
- [GRPO]() <!-- (llms/fine_tuning/grpo.md) -->
- [PEFT]() <!-- (llms/fine_tuning/peft.md) -->
- [LoRA]() <!-- (llms/fine_tuning/lora.md) -->
- [QLoRA]() <!-- (llms/fine_tuning/qlora.md) -->
- [DoRA]() <!-- (llms/fine_tuning/dora.md) -->
- [YaRN]() <!-- (llms/fine_tuning/yarn.md) -->
- [Agents]() <!-- (llms/agents/README.md) -->
- [Tool Use]() <!-- (llms/agents/tool_use.md) -->
- [Reflection]() <!-- (llms/agents/reflection.md) -->
- [Multi Agent]() <!-- (llms/agents/multi_agents.md) -->
- [Planning]() <!-- (llms/agents/planning.md) -->
- [RAG]() <!-- (llms/rag/README.md) -->
- [Chunks]() <!-- (llms/rag/chunks.md) -->
- [Sliding Window]() <!-- (llms/rag/sliding_window.md) -->
- [Graph RAG]() <!-- (llms/rag/graph.md) -->
- [Model Compression]() <!-- (llms/compression/README.md) -->
- [Distillation]() <!-- (llms/compression/distillation.md) -->
- [Quantization]() <!-- (llms/compression/quantization.md) -->
- [Efficient Inference]() <!-- (llms/efficient_inference/README.md) -->
- [Fast Attention]() <!-- (llms/efficient_inference/fast_attention.md) -->
- [Distillation]() <!-- (llms/efficient_inference/distillation.md) -->
- [Quantization]() <!-- (llms/efficient_inference/quantization.md) -->
- [Decoding]() <!-- (llms/decoding/README.md) -->
- [Multi-Token Prediction]() <!-- (llms/decoding/multi_token_prediction.md) -->
- [Top-k]() <!-- (llms/decoding/top_k.md) -->
- [Greedy]() <!-- (llms/decoding/greedy.md) -->
- [Speculative]() <!-- (llms/decoding/speculative.md) -->
- [Miscellaneous]() <!-- (llms/misc/README.md) -->
- [Rejection Sampling]() <!-- (llms/misc/rejection_sampling.md) -->
- [Emergent]() <!-- (llms/misc/emergent.md) -->
- [LLM As Judge]() <!-- (llms/misc/llm_as_judge.md) -->
- [Notable Models]() <!-- (models/README.md) -->
- [BERT]() <!-- (models/bert.md) -->
- [Llama-3]() <!-- (models/llama_3.md) -->
- [DeepSeek-R1](models/deepseek_r1.md) -->
- [DeepSeek-v3](models/deepseek_v3.md) -->
- [Qwen2.5]() <!-- (models/qwen2pt5.md) -->

# Evaluation

- [Metrics](evaluation/README.md)
- [Rouge](evaluation/rouge.md)
- [Bleu](evaluation/bleu.md)
- [pass@k](evaluation/pass_k.md)
- [Metrics]() <!-- (evaluation/README.md) -->
- [Rouge]() <!-- (evaluation/rouge.md) -->
- [Bleu]() <!-- (evaluation/bleu.md) -->
- [pass@k]() <!-- (evaluation/pass_k.md) -->
44 changes: 35 additions & 9 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,25 @@
border-radius: 4px;
transition: all 0.2s ease;
}
.nav-links a:hover {
background: #f5f5f5;
border-color: #999;
.link, .disabled-link {
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 8px;
text-decoration: none;
color: #000;
transition: background-color 0.2s;
}
.link {
background-color: white;
}
.link:hover {
background-color: #f5f5f5;
}
.disabled-link {
color: #999;
background-color: #f5f5f5;
cursor: not-allowed;
}
footer {
margin-top: auto;
Expand Down Expand Up @@ -80,12 +96,22 @@


<div class="nav-links">
<a href="https://vectorinstitute.github.io/ai-pocket-reference/fundamentals">AI Fundamentals</a>
<a href="https://vectorinstitute.github.io/ai-pocket-reference/nlp">Natural Language Processing</a>
<a href="https://vectorinstitute.github.io/ai-pocket-reference/cv">Computer Vision</a>
<a href="https://vectorinstitute.github.io/ai-pocket-reference/rl">Reinforcement Learning</a>
<a href="https://vectorinstitute.github.io/ai-pocket-reference/fl">Federated Learning</a>
<a href="https://vectorinstitute.github.io/ai-pocket-reference/responsible_ai">Responsible AI</a>
<!-- <a href="https://vectorinstitute.github.io/ai-pocket-reference/fundamentals">AI Fundamentals</a> -->
<div class="disabled-link">AI Fundamentals</div>

<a href="https://vectorinstitute.github.io/ai-pocket-reference/nlp" class="link">Natural Language Processing</a>

<!-- <a href="https://vectorinstitute.github.io/ai-pocket-reference/cv">Computer Vision</a> -->
<div class="disabled-link">Computer Vision</div>

<!-- <a href="https://vectorinstitute.github.io/ai-pocket-reference/rl">Reinforcement Learning</a> -->
<div class="disabled-link">Reinforcement Learning</div>

<!-- <a href="https://vectorinstitute.github.io/ai-pocket-reference/fl">Federated Learning</a> -->
<div class="disabled-link">Federated Learning</div>

<!-- <a href="https://vectorinstitute.github.io/ai-pocket-reference/responsible_ai">Responsible AI</a> -->
<div class="disabled-link">Responsible AI</div>
</div>

<footer>
Expand Down