This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| notes:submission [2025/12/22 07:51] – cjj | notes:submission [2026/02/24 18:38] (current) – cjj | ||
|---|---|---|---|
| Line 14: | Line 14: | ||
| =====Performance & Caching===== | =====Performance & Caching===== | ||
| If a specific code block requires significant computation time (**> 1 minute**), please implement a **caching mechanism**. The script should check for a local data file; if the file exists, the notebook should load the results rather than re-running the lengthy evaluation. | If a specific code block requires significant computation time (**> 1 minute**), please implement a **caching mechanism**. The script should check for a local data file; if the file exists, the notebook should load the results rather than re-running the lengthy evaluation. | ||
| - | |||
| - | =====Performance & Caching===== | ||
| - | To facilitate efficient grading, the notebook should not take more than **1 minute** to execute. If your code requires lengthy computations: | ||
| - | |||
| - | * Implement a **caching mechanism** (e.g., using '' | ||
| - | * The script should check for the existence of a local data file; if found, it should load the results instead of re-running the evaluation. | ||
| - | |||