Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ from aion.codecs import CodecManager
from aion.modalities import LegacySurveyImage

# Load model and codec manager
model = AION.from_pretrained('aion-base').to('cuda') # or 'aion-large', 'aion-xlarge'
model = AION.from_pretrained('polymathic-ai/aion-base').to('cuda') # or 'aion-large', 'aion-xlarge'
codec_manager = CodecManager(device='cuda')

# Prepare your astronomical data (example: Legacy Survey image)
image = LegacySurveyImage(
flux=your_image_tensor, # Shape: [batch, 4, height, width] for g,r,i,z bands
flux=your_image_torch_tensor, # Shape: [batch, 4, height, width] for g,r,i,z bands
bands=['DES-G', 'DES-R', 'DES-I', 'DES-Z']
)

Expand Down
Loading