mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2025-12-05 19:17:28 -06:00
Addresses merge conflicts across multiple files. Clarifies explanations and refactors content for improved readability and consistency across the 'ai_for_good', 'benchmarking', and 'conclusion' sections. Specifically, enhances the 'conclusion' section by providing more context and clarifying the key insights related to ML systems engineering. Adds definitions to the 'conclusion' glossary. Updates a bibtex entry.
12 lines
355 B
Bash
12 lines
355 B
Bash
# MLSysBook environment configuration
|
|
# This file is used by direnv to automatically set up the environment
|
|
|
|
# Activate virtual environment
|
|
source .venv/bin/activate
|
|
|
|
# Set Quarto to use venv Python
|
|
export QUARTO_PYTHON=$(which python3)
|
|
|
|
echo "✅ MLSysBook environment activated"
|
|
echo " Python: $(which python3)"
|
|
echo " QUARTO_PYTHON: $QUARTO_PYTHON" |