-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
39 lines (32 loc) · 933 Bytes
/
Copy pathrequirements.txt
File metadata and controls
39 lines (32 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# LayerLens Requirements
# ======================
# For Google Colab, install with: pip install -r requirements.txt
# CORE DEPENDENCIES (Required)
# -----------------------------
numpy>=1.24
scipy>=1.10.0
# OPTIONAL: For demos and examples
# ---------------------------------
# Uncomment the dependencies you need, or install with:
# pip install -e ".[demo,yolo,pipeline]"
# For BERT/LLM demos:
# transformers>=4.20.0
# torch>=2.0.0
# For YOLO integration:
# ultralytics>=8.0.0
# torchvision>=0.15.0
# pillow>=9.0.0
# DEVELOPMENT DEPENDENCIES
# ------------------------
# For building from source (Cython compilation)
# Note: Colab users don't need these - Python fallback is automatic
# setuptools>=65
# wheel
# Cython>=3.0
# For testing:
# pytest>=7.0.0
# pytest-cov>=4.0.0
# RECOMMENDED FOR COLAB
# ----------------------
# Install with: pip install -e ".[demo]"
# This includes transformers and torch for running examples