mirror of
				https://github.com/osmarks/nanogpt-experiments.git
				synced 2025-10-31 07:13:01 +00:00 
			
		
		
		
	Merge pull request #142 from kovkev/patch-1
Fix the position of a comma
This commit is contained in:
		
							
								
								
									
										2
									
								
								model.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								model.py
									
									
									
									
									
								
							| @@ -61,7 +61,7 @@ class CausalSelfAttention(nn.Module): | ||||
|         B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd) | ||||
|  | ||||
|         # calculate query, key, values for all heads in batch and move head forward to be the batch dim | ||||
|         q, k ,v  = self.c_attn(x).split(self.n_embd, dim=2) | ||||
|         q, k, v  = self.c_attn(x).split(self.n_embd, dim=2) | ||||
|         k = k.view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) | ||||
|         q = q.view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) | ||||
|         v = v.view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Andrej
					Andrej