ccloud0525 commited on
Commit
db12180
·
1 Parent(s): 7fc13de

feat: update README

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -62,7 +62,7 @@ model = load_model()
62
  batch_size, lookback_length = 1, 528
63
  seqs = torch.randn(batch_size, lookback_length).cuda()
64
 
65
- # Note that Sundial can generate multiple probable predictions
66
  forecast_length = 96
67
  num_samples = 100
68
 
@@ -106,7 +106,7 @@ batch_attention_mask = text_attention_mask.repeat(n_vars, 1)
106
  batch_token_type_ids = text_token_type_ids.repeat(n_vars, 1)
107
  batch_x = rearrange(seqs, "b l c -> (b c) l")
108
 
109
- # Note that Sundial can generate multiple probable predictions
110
  forecast_length = 96
111
  num_samples = 100
112
 
@@ -188,7 +188,7 @@ model = AuroraForPrediction.from_pretrained("./",trust_remote_code=True)
188
  batch_size, lookback_length = 1, 528
189
  seqs = torch.randn(batch_size, lookback_length).cuda()
190
 
191
- # Note that Sundial can generate multiple probable predictions
192
  forecast_length = 96
193
  num_samples = 100
194
 
 
62
  batch_size, lookback_length = 1, 528
63
  seqs = torch.randn(batch_size, lookback_length).cuda()
64
 
65
+ # Note that Aurora can generate multiple probable predictions
66
  forecast_length = 96
67
  num_samples = 100
68
 
 
106
  batch_token_type_ids = text_token_type_ids.repeat(n_vars, 1)
107
  batch_x = rearrange(seqs, "b l c -> (b c) l")
108
 
109
+ # Note that Aurora can generate multiple probable predictions
110
  forecast_length = 96
111
  num_samples = 100
112
 
 
188
  batch_size, lookback_length = 1, 528
189
  seqs = torch.randn(batch_size, lookback_length).cuda()
190
 
191
+ # Note that Aurora can generate multiple probable predictions
192
  forecast_length = 96
193
  num_samples = 100
194