MightyDragon-Dev commited on
Commit
088afc9
·
verified ·
1 Parent(s): c091c99

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -55,7 +55,7 @@ import os
55
  model = AutoModelForCausalLM.from_pretrained("MightyDragon-Dev/dragon_interceptor")
56
 
57
  # Generate a 28x28 Blueprint (Random Seed)
58
- seed_id = os.urandom(1)[0] % 1000 # Random seed for variability
59
  print(f"🚀 Generating Dragon Blueprint with Seed {seed_id}...")
60
  input_ids = torch.tensor([[seed_id]])
61
  output = model.generate(input_ids, max_length=784, min_length=784, do_sample=True, temperature=0.7)
 
55
  model = AutoModelForCausalLM.from_pretrained("MightyDragon-Dev/dragon_interceptor")
56
 
57
  # Generate a 28x28 Blueprint (Random Seed)
58
+ seed_id = os.urandom(1)[0] % 10**6 # Random seed for variability
59
  print(f"🚀 Generating Dragon Blueprint with Seed {seed_id}...")
60
  input_ids = torch.tensor([[seed_id]])
61
  output = model.generate(input_ids, max_length=784, min_length=784, do_sample=True, temperature=0.7)