[Autoloop: build-tsikit-learn-scikit-learn-typescript-migration]#17
Draft
github-actions[bot] wants to merge 4 commits into
Draft
[Autoloop: build-tsikit-learn-scikit-learn-typescript-migration]#17github-actions[bot] wants to merge 4 commits into
github-actions[bot] wants to merge 4 commits into
Conversation
…ation 8: Add 28 new sklearn modules (LDA, RandomForest, GradientBoosting, SVC, MLP, etc.) Adds 28 new TypeScript source files bringing total from 15 to 43 files (metric: 43). New modules: - linear_model: LogisticRegression, Lasso, ElasticNet, SGDClassifier, SGDRegressor, Perceptron - metrics: silhouetteScore, adjustedRandScore, homogeneityScore - model_selection: GridSearchCV, crossValScore - svm: SVC, SVR - compose: ColumnTransformer - neural_network: MLPClassifier, MLPRegressor - tree: DecisionTreeClassifier, DecisionTreeRegressor - ensemble: RandomForestClassifier, RandomForestRegressor, GradientBoostingClassifier, GradientBoostingRegressor - neighbors: KNeighborsClassifier, KNeighborsRegressor, RadiusNeighborsClassifier, RadiusNeighborsRegressor - cluster: KMeans, DBSCAN - decomposition: PCA, TruncatedSVD, NMF - naive_bayes: GaussianNB, MultinomialNB, BernoulliNB - impute: SimpleImputer - pipeline: Pipeline, makePipeline - feature_selection: SelectKBest, SelectPercentile, VarianceThreshold, fClassif, fRegression, chi2 - datasets: makeClassification, makeRegression, makeBlobs, makeMoons, makeCircles - preprocessing: PolynomialFeatures, OneHotEncoder, OrdinalEncoder - discriminant_analysis: LinearDiscriminantAnalysis, QuadraticDiscriminantAnalysis - isotonic: IsotonicRegression - multiclass: OneVsRestClassifier, OneVsOneClassifier - calibration: CalibratedClassifierCV Run: https://github.com/githubnext/tsikit-learn/actions/runs/25830884200 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ation 9: Add manifold, mixture, semi_supervised, feature_extraction, multioutput, kernel_ridge, gaussian_process, pairwise metrics, RobustScaler Run: https://github.com/githubnext/tsikit-learn/actions/runs/25836319463 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Autoloop Iteration 8 — tsikit-learn sklearn migration
Changes
Expands tsikit-learn from 15 to 43 TypeScript source files, adding 28 new sklearn modules:
linear_modelsvmtreeensembleneighborsnaive_bayesclusterdecompositionneural_networkpipelineimputefeature_selectioncomposedatasetspreprocessingdiscriminant_analysisisotonicmulticlasscalibrationmetricsmodel_selectionMetric
find src -name '*.ts' -not -name 'index.ts' | xargs grep -l 'export' | wc -lQuality
All code passes
bunx tsc --noEmit(strict TypeScript withnoUncheckedIndexedAccess,exactOptionalPropertyTypes, etc.)Program: build-tsikit-learn-scikit-learn-typescript-migration (Issue #5)
Run: §25830884200