| 
					
				 | 
			
			
				@@ -67,6 +67,7 @@ class StaticModel(): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             right_features = paddle.static.data( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 name="right_features", shape=[-1, self.input_dim], dtype='float32') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             feeds_list.append(right_features) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         else: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             #sample_id = paddle.static.data( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             #    name="sample_id", shape=[-1, 1], dtype='int64') 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -75,7 +76,7 @@ class StaticModel(): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 name="left_features", shape=[-1, self.input_dim], dtype='float32') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             feeds_list.append(left_features) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        print(f"debug left_features shape: {left_features.shape}") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return feeds_list 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     def net(self, input, is_infer=False): 
			 |