Skip to content

Commit ca7b399

Browse files
committed
Add Seed-Based Ensemble Notebook and Mosquito Trajectory Prediction Scripts
- Created a new Jupyter notebook for seed-based ensemble modeling, including data preprocessing, model training, and weighted averaging ensemble techniques. - Added README for the mosquito trajectory prediction competition, detailing the problem statement, evaluation metrics, and data structure. - Implemented a training and submission script for mosquito trajectory forecasting using a stacked ensemble approach with motion priors and residual models. - Introduced a new notebook demonstrating numpy dot product operations for weighted averaging and matrix multiplication.
1 parent 1695840 commit ca7b399

6 files changed

Lines changed: 1439 additions & 2 deletions

File tree

dacon/8.1.2.Ensemble_Example.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": null,
66
"id": "76864e35",
77
"metadata": {},
88
"outputs": [
@@ -21,7 +21,7 @@
2121
"source": [
2222
"import numpy as np\n",
2323
"from sklearn.datasets import make_classification\n",
24-
"from sklearn.model_selection import train_test_split\n",
24+
"from sklearn.model_selection import train_test_splitfit_transform\n",
2525
"from sklearn.metrics import accuracy_score\n",
2626
"from sklearn.ensemble import RandomForestClassifier, GradientBoostingClassifier\n",
2727
"from sklearn.linear_model import LogisticRegression\n",

0 commit comments

Comments
 (0)