projectlosangeles commited on
Commit
958c5a5
·
verified ·
1 Parent(s): 50c36d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -56,7 +56,7 @@ print('=' * 70)
56
 
57
  #==================================================================================
58
 
59
- MODEL_CHECKPOINT = 'Orpheus_Bridge_Music_Transformer_Trained_Model_19571_steps_0.9396_loss_0.7365_acc.pth'
60
 
61
  SOUDFONT_PATH = 'SGM-v2.01-YamahaGrand-Guit-Bass-v2.7.sf2'
62
 
@@ -71,7 +71,7 @@ dtype = 'bfloat16'
71
  ptdtype = {'bfloat16': torch.bfloat16, 'float16': torch.float16}[dtype]
72
  ctx = torch.amp.autocast(device_type=device_type, dtype=ptdtype)
73
 
74
- SEQ_LEN = 1668
75
  PAD_IDX = 18819
76
 
77
  model = TransformerWrapper(num_tokens = PAD_IDX+1,
 
56
 
57
  #==================================================================================
58
 
59
+ MODEL_CHECKPOINT = 'Orpheus_Music_Transformer_Trained_Model_60667_steps_0.2238_loss_0.9375_acc.pth'
60
 
61
  SOUDFONT_PATH = 'SGM-v2.01-YamahaGrand-Guit-Bass-v2.7.sf2'
62
 
 
71
  ptdtype = {'bfloat16': torch.bfloat16, 'float16': torch.float16}[dtype]
72
  ctx = torch.amp.autocast(device_type=device_type, dtype=ptdtype)
73
 
74
+ SEQ_LEN = 8192
75
  PAD_IDX = 18819
76
 
77
  model = TransformerWrapper(num_tokens = PAD_IDX+1,