Getting Started
Quick Start Guide
Get up and running with Crowe Logic in under 5 minutes. This guide covers installation, authentication, and your first deployment.
Prerequisites
- •Node.js 18+ or Python 3.9+
- •A Crowe Logic account (sign up for free)
- •Basic understanding of biological systems (optional)
1
Install the CLI
npm
npm install -g @crowe-logic/clipip
pip install crowe-logic2
Authenticate
crowe-logic loginThis will open your browser to authenticate. After successful login, you're ready to deploy.
3
Deploy Your First Model
Let's deploy a contamination classifier to analyze cultivation images:
# Python example
from crowe_logic import ContaminationClassifier
# Initialize the model
model = ContaminationClassifier(api_key="your_api_key")
# Classify an image
result = model.classify_image("sample.jpg")
print(f"Contaminated: {result.contaminated}")
print(f"Type: {result.type}")
print(f"Confidence: {result.confidence}%")That's it! Your model is now analyzing images in real-time.