- pydantic
- langgrah
Instructions for Aider and other LLM tools: Keep it simple!
- Embrace Simplicity Over Cleverness
- Write code that's immediately understandable to others
- If a solution feels complex, it probably needs simplification
- Optimize for readability first, performance second unless proven otherwise
- Avoid premature optimization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import List, Dict, Tuple | |
import torch | |
import torch.nn as nn | |
import torch.nn.functional as F | |
class RQVAE: | |
def __init__(self, | |
input_dim: int, # Shape: scalar (e.g., 768 for BERT embeddings) | |
hidden_dims: List[int], # Shape: [dim1, dim2, ..., latent_dim] | |
num_codebooks: int, # Shape: scalar (e.g., 3 for 3-level quantization) |
-
the external hardware needs to be EXT4.
-
relative path: usually the same as the shared forder so that it's identifiable.
-
extra options:
--update
--exclude dir1 --exclude dir2
-
View Logs: Check
Diagnostics -> System Logs -> Logs -> Rsync - Jobs
to see backup details. -
Manual Backup: Select a job in the grid panel and click "Run" to start a backup manually.
-
Email Notifications: Configure email settings to receive backup status updates.
-
Mounting After Backup: To check files after backup, manually mount the drive without triggering another backup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<artifacts_info> | |
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
# Good artifacts are... | |
- Substantial content (>15 lines) | |
- Content that the user is likely to modify, iterate on, or take ownership of | |
- Self-contained, complex content that can be understood on its own, without context from the conversation | |
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
- Content likely to be referenced or reused multiple times |
Typical good structure:
- Title
- Overview.
- Table of Contents
- Roadmap
- Setup
- Configuration
- Data Loading
- Evaluation Function