diff --git a/viz/src/SAEVisualizerPage.tsx b/viz/src/SAEVisualizerPage.tsx index 59a817f..2cd03e9 100644 --- a/viz/src/SAEVisualizerPage.tsx +++ b/viz/src/SAEVisualizerPage.tsx @@ -156,7 +156,7 @@ const SAEVisualizerPage: React.FC = () => { )} {isDeadLatent && ( -
This is a dead latent. It is active for no sequences.
+
This is a dead latent. It does not activate on any sequence.
)}
{dimToCuratedMap.has(selectedFeature) && desc}
{SAEConfig?.supportsCustomSequence && } diff --git a/viz/src/components/CustomSeqPlayground.tsx b/viz/src/components/CustomSeqPlayground.tsx index 8741932..836ea42 100644 --- a/viz/src/components/CustomSeqPlayground.tsx +++ b/viz/src/components/CustomSeqPlayground.tsx @@ -113,7 +113,7 @@ const CustomSeqPlayground = ({ feature }: CustomSeqPlaygroundProps) => { const onStructureLoad = useCallback(() => setViewerState(PlaygroundState.IDLE), []); return ( -
+
{ )} - {/* Once we have SAE activations, render the steering controls. Currently not supporting PDB ID inputs + {/* Once we have SAE activations, render the steering controls. Currently not supporting PDB ID inputs because they may have multiple chains. */} {isProteinSequence(proteinInput) && Object.keys(inputProteinActivations).length > 0 && diff --git a/viz/src/components/SeqsViewer.tsx b/viz/src/components/SeqsViewer.tsx index a810d40..06cd158 100644 --- a/viz/src/components/SeqsViewer.tsx +++ b/viz/src/components/SeqsViewer.tsx @@ -166,7 +166,7 @@ export default function SeqsViewer({ seqs, title }: SeqsViewerProps) { return ( <> -
+
{title &&

{title}

}