Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/components/Popovers/LogitWeightPopover.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
<div class="title flex items-center gap-1">
Output Projection Weights
<HelpPopover id="lm-head-weights"
>{`Transforms the final embedding into a vocabulary distribution.\nParameters tha learned in training, fixed in prediction.`}</HelpPopover
>{`Transforms the final embedding into a vocabulary distribution.\nParameters were learned in training, fixed in prediction.`}</HelpPopover
>
</div>
<div class="flex gap-0">
Expand All @@ -366,7 +366,7 @@
<div class="matrix flex flex-col items-center">
<div class="title flex items-center gap-1">
Output Projection Bias<HelpPopover id="lm-head-bias"
>{`Offsets added after the transformation.\nParameters tha learned in training, fixed in prediction.`}</HelpPopover
>{`Offsets added after the transformation.\nParameters were learned in training, fixed in prediction.`}</HelpPopover
>
</div>
<Matrix
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popovers/MLPWeightPopover.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
<div class="matrix flex flex-col items-center">
<div class="title flex items-center gap-1">
Expansion Weights<HelpPopover id="mlp-weights"
>{`Projects embedding vectors to expanded latent space. \nParameters tha learned in training, fixed in prediction.`}</HelpPopover
>{`Projects embedding vectors to expanded latent space. \nParameters were learned in training, fixed in prediction.`}</HelpPopover
>
</div>
<div class="flex gap-0">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popovers/QKVWeightPopover.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
<div class="matrix flex flex-col items-center">
<div class="title flex items-center gap-1">
Q·K·V Weights<HelpPopover id="qkv-weights"
>{`Transforms embedding vectors into Query, Key, and Value vectors. \nParameters tha learned in training, fixed in prediction.`}</HelpPopover
>{`Transforms embedding vectors into Query, Key, and Value vectors. \nParameters were learned in training, fixed in prediction.`}</HelpPopover
>
</div>
<div class="flex gap-0">
Expand Down