MightyDragon-Dev commited on
Commit
c65c850
·
verified ·
1 Parent(s): efcd089

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -57,7 +57,7 @@ model = AutoModelForCausalLM.from_pretrained("MightyDragon-Dev/dragon_intercepto
57
  # Generate a 28x28 Blueprint (Seed 42)
58
  seed_id = 42
59
  input_ids = torch.tensor([[seed_id]])
60
- output = model.generate(input_ids, max_length=784, do_sample=True, temperature=0.7)
61
 
62
  # Reshape and Render
63
  blueprint = output[0].view(28, 28).detach().numpy()
 
57
  # Generate a 28x28 Blueprint (Seed 42)
58
  seed_id = 42
59
  input_ids = torch.tensor([[seed_id]])
60
+ output = model.generate(input_ids, max_length=784, min_length=784, do_sample=True, temperature=0.7)
61
 
62
  # Reshape and Render
63
  blueprint = output[0].view(28, 28).detach().numpy()