HachiML commited on
Commit
4e3c89f
1 Parent(s): 8ccdaaf

Upload modeling_mists.py

Browse files
Files changed (1) hide show
  1. modeling_mists.py +1 -1
modeling_mists.py CHANGED
@@ -254,11 +254,11 @@ class MistsForConditionalGeneration(MistsPreTrainedModel):
254
  print("========")
255
  print("input_ids: ", input_ids.shape)
256
  print("time_series_values: ", time_series_values.shape)
257
- print("inputs_embeds: ", inputs_embeds.shape)
258
 
259
  if inputs_embeds is None:
260
  # 1. Extra the input embeddings
261
  inputs_embeds = self.get_input_embeddings()(input_ids)
 
262
 
263
  # 2. Merge text and time_series
264
  if time_series_values is not None and input_ids.shape[1] != 1:
 
254
  print("========")
255
  print("input_ids: ", input_ids.shape)
256
  print("time_series_values: ", time_series_values.shape)
 
257
 
258
  if inputs_embeds is None:
259
  # 1. Extra the input embeddings
260
  inputs_embeds = self.get_input_embeddings()(input_ids)
261
+ print("inputs_embeds: ", inputs_embeds.shape)
262
 
263
  # 2. Merge text and time_series
264
  if time_series_values is not None and input_ids.shape[1] != 1: