JunxiongWang commited on
Commit
641cb49
1 Parent(s): 0c597aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -14,7 +14,7 @@ import numpy as np
14
 
15
  model=MambaLMHeadModel.from_pretrained("JunxiongWang/MambaByte_Books", device='cuda', dtype=torch.float32)
16
 
17
- text = "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife,"
18
  text_byte = np.frombuffer(text.encode('utf-8'), dtype=np.uint8)
19
  input_ids = torch.from_numpy(text_byte[None, :]).long().cuda()
20
 
 
14
 
15
  model=MambaLMHeadModel.from_pretrained("JunxiongWang/MambaByte_Books", device='cuda', dtype=torch.float32)
16
 
17
+ text = "In fair Verona, where we lay our scene, From ancient grudge, break to new mutiny, Where civil blood makes civil hands unclean."
18
  text_byte = np.frombuffer(text.encode('utf-8'), dtype=np.uint8)
19
  input_ids = torch.from_numpy(text_byte[None, :]).long().cuda()
20