Navigate to the Generator tab and choose a suitable generative model from the dropdown menu. Our models are optimized for different types of medical imaging scenarios.
Different models may specialize in specific imaging modalities or medical
conditions. Choose the one that best fits your research requirements.
Once your dataset is ready, use our Python SDK for quick and efficient downloading:
Copy
import uuidfrom sinkove import Client# Initialize the client with your organization ID# API key is read from SINKOVE_API_KEY environment variableclient = Client(uuid.UUID("your-organization-id"))# Get your dataset by IDdataset_id = uuid.UUID("your-dataset-id")dataset = client.datasets.get(dataset_id)# Check if dataset is readyif dataset.ready: # Download the dataset dataset.download("./dataset.zip", strategy="replace") print("Dataset downloaded successfully!")else: print(f"Dataset not ready. Current state: {dataset.state}") # Or wait for it to be ready dataset.wait() # Blocks until ready dataset.download("./dataset.zip", strategy="replace") print("Dataset downloaded successfully!")