Add requirements.txt
Browse files- requirements.txt +40 -0
requirements.txt
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Requirements for BIM5021 Labs
|
| 2 |
+
# ================================
|
| 3 |
+
|
| 4 |
+
# Core data processing
|
| 5 |
+
pandas>=2.0.0
|
| 6 |
+
numpy>=1.24.0
|
| 7 |
+
|
| 8 |
+
# Visualization
|
| 9 |
+
matplotlib>=3.7.0
|
| 10 |
+
seaborn>=0.12.0
|
| 11 |
+
|
| 12 |
+
# Machine Learning
|
| 13 |
+
scikit-learn>=1.3.0
|
| 14 |
+
|
| 15 |
+
# Association Rules Mining
|
| 16 |
+
mlxtend>=0.22.0
|
| 17 |
+
|
| 18 |
+
# Database connectivity
|
| 19 |
+
psycopg2-binary>=2.9.0
|
| 20 |
+
sqlalchemy>=2.0.0
|
| 21 |
+
|
| 22 |
+
# Agentic BI (Chapter 8)
|
| 23 |
+
# smolagents>=1.0.0
|
| 24 |
+
# huggingface-hub>=0.20.0
|
| 25 |
+
|
| 26 |
+
# Vector Search (Chapter 9)
|
| 27 |
+
# chromadb>=0.4.0
|
| 28 |
+
# sentence-transformers>=2.2.0
|
| 29 |
+
|
| 30 |
+
# Optional: Streaming
|
| 31 |
+
# confluent-kafka>=2.3.0
|
| 32 |
+
# apache-flink>=1.17.0
|
| 33 |
+
|
| 34 |
+
# Optional: dbt
|
| 35 |
+
# dbt-core>=1.7.0
|
| 36 |
+
# dbt-postgres>=1.7.0
|
| 37 |
+
|
| 38 |
+
# Optional: Graph
|
| 39 |
+
# neo4j>=5.0.0
|
| 40 |
+
# networkx>=3.0
|