< Prev | Home | Model | Random | Next >

Model: SoLU Model: 4 Layers, 2048 Neurons per Layer

Dataset: 80% C4 (Web Text) and 20% Python Code

Neuron 2 in Layer 3

Load this data into an Interactive Neuroscope

See Documentation here

Transformer Lens Loading: HookedTransformer.from_pretrained('solu-4l')



Text #0

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.1584. Min Act: -0.0002

Data Index: 1518425 (Python Code)

Max Activating Token Index: 95

Click toggle to see full text

Truncated

 versions for a consumer id."""    
 _get_cached_tracker().update_versions(consumer, resource_versions)  

 
def report():    
 """Report resource versions in debug logs."""    
 _get_cached_tracker().report() 
<|EOS|>from collections import namedtuple, defaultdict 

Full Text #0

<|BOS|> consumers of a resource."""    
 return _get_cached_tracker().get_resource_versions(resource_type)  

 
def update_versions(consumer, resource_versions):    
 """Update the resources' versions for a consumer id."""    
 _get_cached_tracker().update_versions(consumer, resource_versions)  

 
def report():    
 """Report resource versions in debug logs."""    
 _get_cached_tracker().report() 
<|EOS|>from collections import namedtuple, defaultdict 
import operator 
 
import idaapi 
import idc 
 
from . import exceptions 
from .code import lines 
 
FF_TYPES = [idc.FF_BYTE, idc.FF_WORD, idc.FF_DWRD, idc.FF_QWRD, idc.FF_OWRD, ] 
FF_SIZES = [1, 2, 4, 8, 16, ] 
 
SIZE_TO_TYPE = dict(zip(FF_SIZES, FF_TYPES)) 
 
STRUCT_ERROR_MAP = {    
 idc.STRUC_ERROR_MEMBER_NAME:        
 (exceptions.SarkErrorStructMemberName, "already has member with this name (bad name)"),    
 idc.STRUC_ERROR_MEMBER_OFFSET:        
 (exceptions.SarkErrorStructMemberOffset, "already has member at this offset"),    
 idc.STRUC_ERROR_MEMBER_SIZE:        
 (exceptions.SarkErrorStructMemberSize, "bad number of bytes or bad sizeof(type)"),    
 idc.STRUC_ERROR_MEMBER_TINFO:        
 (exceptions.SarkErrorStructMemberTinfo, "bad typeid parameter"),    
 idc.STRUC_ERROR_MEMBER_STRUCT:        
 (exceptions.SarkErrorStructMemberStruct, "bad struct id (the 1st argument)"),    
 idc.STRUC_ERROR_MEMBER_UNIVAR:        
 (exceptions.SarkErrorStructMemberUnivar, "unions can't have variable sized members"),    
 idc.STRUC_ERROR_MEMBER_VARLAST:        
 (exceptions.SarkErrorStructMemberVarlast, "variable sized member should be the last member in the structure"), 
}  

 
def struct_member_error(err, sid, name, offset, size):    
 """Create and format a struct member exception.     

 Args:        
 err: The error value returned from struct member creation        
 sid: The struct id        
 name: The member name        
 offset: Memeber offset        
 size: Member size     

 Returns:        
 A ``SarkErrorAddStructMemeberFailed`` derivative exception, with an        
 informative message.    
 """    
 exception, msg = STRUCT_ERROR_MAP[err]    
 struct_name = idc.GetStrucName(sid)    
 return exception(('AddStructMember(struct="{}", member="{}", offset={}, size={}) '                      
 'failed: {}').format(        
 struct_name,        
 name,        
 offset,        
 size,        
 msg    
 ))  

 
def create_struct(name):    
 """Create a structure.     

 Args:        
 name: The structure's name     

 Returns:        
 The sturct ID     

 Raises:        
 exceptions.SarkStructAlreadyExists: A struct with the same name already exists        
 exceptions.SarkCreationFailed:  Struct creation failed    
 """    
 sid = idc.GetStrucIdByName(name)    
 if sid != idaapi.BADADDR:        
 # The struct already exists.        
 raise exceptions.SarkStructAlreadyExists("A struct names {!r} already exists.".format(name))     

 sid = idc.AddStrucEx(-1, name, 0)    
 if sid == idaapi.BADADDR:        
 raise exceptions.SarkStructCreationFailed("Struct creation failed.")     

 return sid  

 
def get_struct(name):    
 """Get a struct by it's name.     

 Args:        
 name: The name of the struct     

 Returns:        
 The struct's id     

 Raises:        
 exceptions.SarkStructNotFound: is the struct does not exist.    
 """    
 sid = idc.GetStrucIdByName(name)    
 if sid == idaapi.BADADDR:        
 raise exceptions.SarkStructNotFound()     

 return sid  

 
def size_to_flags(size):    
 return SIZE_TO_TYPE[size] | idc.FF_DATA  

 
def add_struct_member(sid, name, offset, size):    
 failure = idc.AddStrucMember(sid, name, offset, size_to_flags(size), -1, size

Text #1

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.1202. Min Act: -0.0002

Data Index: 1419084 (Python Code)

Max Activating Token Index: 200

Click toggle to see full text

Truncated

Full Text #1


Text #2

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.1162. Min Act: -0.0002

Data Index: 1482829 (Python Code)

Max Activating Token Index: 463

Click toggle to see full text

Truncated

Full Text #2


Text #3

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.1090. Min Act: -0.0002

Data Index: 1568254 (Python Code)

Max Activating Token Index: 234

Click toggle to see full text

Truncated

Full Text #3


Text #4

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0984. Min Act: -0.0002

Data Index: 1520001 (Python Code)

Max Activating Token Index: 1010

Click toggle to see full text

Truncated

Full Text #4


Text #5

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0950. Min Act: -0.0002

Data Index: 1555949 (Python Code)

Max Activating Token Index: 785

Click toggle to see full text

Truncated

Full Text #5


Text #6

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0950. Min Act: -0.0002

Data Index: 1497238 (Python Code)

Max Activating Token Index: 379

Click toggle to see full text

Truncated

Full Text #6


Text #7

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0925. Min Act: -0.0002

Data Index: 1584915 (Python Code)

Max Activating Token Index: 120

Click toggle to see full text

Truncated

Full Text #7


Text #8

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0951. Min Act: -0.0002

Data Index: 1647985 (Python Code)

Max Activating Token Index: 306

Click toggle to see full text

Truncated

Full Text #8


Text #9

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0971. Min Act: -0.0002

Data Index: 1544872 (Python Code)

Max Activating Token Index: 229

Click toggle to see full text

Truncated

Full Text #9


Text #10

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0894. Min Act: -0.0002

Data Index: 1523816 (Python Code)

Max Activating Token Index: 483

Click toggle to see full text

Truncated

Full Text #10


Text #11

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0926. Min Act: -0.0002

Data Index: 1438040 (Python Code)

Max Activating Token Index: 305

Click toggle to see full text

Truncated

Full Text #11


Text #12

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0961. Min Act: -0.0001

Data Index: 1611884 (Python Code)

Max Activating Token Index: 805

Click toggle to see full text

Truncated

Full Text #12


Text #13

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0920. Min Act: -0.0002

Data Index: 1447989 (Python Code)

Max Activating Token Index: 583

Click toggle to see full text

Truncated

Full Text #13


Text #14

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0861. Min Act: -0.0002

Data Index: 1498827 (Python Code)

Max Activating Token Index: 479

Click toggle to see full text

Truncated

Full Text #14


Text #15

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0900. Min Act: -0.0002

Data Index: 1617392 (Python Code)

Max Activating Token Index: 419

Click toggle to see full text

Truncated

Full Text #15


Text #16

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0886. Min Act: -0.0002

Data Index: 1497841 (Python Code)

Max Activating Token Index: 409

Click toggle to see full text

Truncated

Full Text #16


Text #17

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0870. Min Act: -0.0002

Data Index: 1584825 (Python Code)

Max Activating Token Index: 380

Click toggle to see full text

Truncated

Full Text #17


Text #18

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0917. Min Act: -0.0002

Data Index: 1644119 (Python Code)

Max Activating Token Index: 134

Click toggle to see full text

Truncated

Full Text #18


Text #19

Max Range: 0.1584. Min Range: -0.1584

Max Act: 0.0886. Min Act: -0.0002

Data Index: 1623631 (Python Code)

Max Activating Token Index: 308

Click toggle to see full text

Truncated

Full Text #19