You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bundle file is available in the agent artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 25721028611 -n agent -D /tmp/agent-25721028611
# Fetch the bundle into a local branch
git fetch /tmp/agent-25721028611/aw-autoloop-build-tsikit-learn-scikit-learn-typescript-migration.bundle refs/heads/autoloop/build-tsikit-learn-scikit-learn-typescript-migration:refs/heads/autoloop/build-tsikit-learn-scikit-learn-typescript-migration
git checkout autoloop/build-tsikit-learn-scikit-learn-typescript-migration
# Push the branch to origin
git push origin autoloop/build-tsikit-learn-scikit-learn-typescript-migration
# Create the pull request
gh pr create --title '[Autoloop: build-tsikit-learn-scikit-learn-typescript-migration]' --base main --head autoloop/build-tsikit-learn-scikit-learn-typescript-migration --repo githubnext/tsikit-learn
tsikit-learn: scikit-learn β TypeScript Migration
π€ This PR is maintained by Autoloop. Each accepted iteration adds a commit to this branch.
Program Goal: Build
tsikit-learn, a complete TypeScript port of scikit-learn, one feature at a time.Issue: #5
Current Best Metric:
sklearn_features_ported = 11(up from 2)Iteration 2 Summary
This iteration establishes the complete project foundation and ports Phase 1 (Foundation) and Phase 2 (Preprocessing & Metrics) of the migration plan:
Project infrastructure:
package.json,tsconfig.json(strictest settings),biome.json,bunfig.toml.github/workflows/ci.ymlβ CI with Bun test, typecheck, GitHub Pages deployAGENTS.mdβ agent instructions and project conventionsplayground/index.htmlβ interactive feature roadmap showing ported vs pending modulesPhase 1 β Foundation (6 modules):
src/exceptions.tsβ NotFittedError, ConvergenceWarning, DataConversionWarning, etc.src/base.tsβ BaseEstimator, ClassifierMixin, RegressorMixin, TransformerMixin, ClusterMixin, Matrix2D interface, checkIsFitted, clonesrc/utils/extmath.tsβ rowNorms, softmax, logLogistic, safeSparseDot, matVecDot, colMean, colVar, logSumExpsrc/utils/validation.tsβ checkArray, checkXy, checkNFeatures, isMatrix2D, validateSampleWeight, columnMinMaxsrc/utils/multiclass.tsβ typeOfTarget, uniqueLabels, labelBinarize, nClassessrc/utils/class_weight.tsβ computeClassWeight, computeSampleWeightPhase 2 β Preprocessing & Metrics (5 modules):
src/preprocessing/standard_scaler.tsβ StandardScaler (fit, transform, inverseTransform, fitTransform)src/preprocessing/minmax_scaler.tsβ MinMaxScaler (configurable feature range)src/preprocessing/label_encoder.tsβ LabelEncoder, Normalizer (L1/L2/max)src/metrics/regression.tsβ MSE, RMSE, MAE, R2, MAPE, explainedVariance, medianAbsoluteErrorsrc/metrics/classification.tsβ accuracy, confusionMatrix, precision, recall, F1, logLoss, zeroOneLosssrc/model_selection/index.tsβ trainTestSplit (seeded shuffle), KFoldTests: 25+ test cases covering all ported modules with property-based assertions.
Metric:
sklearn_features_ported: 2 β 11 (+9)Actions run: Β§25721028611
Warning
Firewall blocked 1 domain
The following domain was blocked by the firewall during workflow execution:
releaseassets.githubusercontent.comSee Network Configuration for more information.
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download bundle artifact
The bundle file is available in the
agentartifact in the workflow run linked above.To create a pull request with the changes: