easy_ml 0.2.0.pre.rc45 → 0.2.0.pre.rc47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/easy_ml/datasets_controller.rb +2 -1
- data/app/frontend/components/dataset/ColumnConfigModal.tsx +91 -28
- data/app/frontend/components/dataset/PreprocessingConfig.tsx +7 -2
- data/app/frontend/types/dataset.ts +1 -0
- data/app/helpers/easy_ml/application_helper.rb +3 -3
- data/app/models/easy_ml/column.rb +22 -0
- data/app/models/easy_ml/column_history.rb +1 -0
- data/app/models/easy_ml/column_list.rb +3 -0
- data/app/models/easy_ml/dataset.rb +29 -7
- data/app/models/easy_ml/event_context.rb +1 -0
- data/app/models/easy_ml/feature_history.rb +1 -0
- data/app/models/easy_ml/model_file.rb +0 -1
- data/app/models/easy_ml/model_file_history.rb +0 -1
- data/app/models/easy_ml/splitter.rb +12 -0
- data/app/models/easy_ml/splitters/date_splitter.rb +4 -0
- data/app/serializers/easy_ml/dataset_serializer.rb +4 -0
- data/config/initializers/dataframe.rb +9 -0
- data/lib/easy_ml/data/preprocessor.rb +9 -2
- data/lib/easy_ml/data/statistics_learner.rb +44 -9
- data/lib/easy_ml/engine.rb +7 -1
- data/lib/easy_ml/railtie/generators/migration/migration_generator.rb +1 -0
- data/lib/easy_ml/railtie/templates/migration/add_is_date_column_to_easy_ml_columns.rb.tt +13 -0
- data/lib/easy_ml/version.rb +1 -1
- data/public/easy_ml/assets/.vite/manifest.json +2 -2
- data/public/easy_ml/assets/assets/{Application-zpGA_Q9c.css → Application-D6L0eW4P.css} +1 -1
- data/public/easy_ml/assets/assets/entrypoints/Application.tsx-KJwHDm3F.js +474 -0
- data/public/easy_ml/assets/assets/entrypoints/{Application.tsx-BQL_uYxE.js.map → Application.tsx-KJwHDm3F.js.map} +1 -1
- metadata +21 -5
- data/public/easy_ml/assets/assets/entrypoints/Application.tsx-BQL_uYxE.js +0 -474
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_ml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.0.pre.
|
4
|
+
version: 0.2.0.pre.rc47
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Shollenberger
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: dotenv
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: aws-sdk
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -598,6 +612,7 @@ files:
|
|
598
612
|
- bin/rspec
|
599
613
|
- bin/setup
|
600
614
|
- bin/vite
|
615
|
+
- config/initializers/dataframe.rb
|
601
616
|
- config/initializers/inflections.rb
|
602
617
|
- config/initializers/resque.rb
|
603
618
|
- config/initializers/zhong.rb
|
@@ -641,6 +656,7 @@ files:
|
|
641
656
|
- lib/easy_ml/pending_migrations.rb
|
642
657
|
- lib/easy_ml/predict.rb
|
643
658
|
- lib/easy_ml/railtie/generators/migration/migration_generator.rb
|
659
|
+
- lib/easy_ml/railtie/templates/migration/add_is_date_column_to_easy_ml_columns.rb.tt
|
644
660
|
- lib/easy_ml/railtie/templates/migration/add_workflow_status_to_easy_ml_features.rb.tt
|
645
661
|
- lib/easy_ml/railtie/templates/migration/create_easy_ml_column_histories.rb.tt
|
646
662
|
- lib/easy_ml/railtie/templates/migration/create_easy_ml_columns.rb.tt
|
@@ -680,9 +696,9 @@ files:
|
|
680
696
|
- lib/tasks/zhong.rake
|
681
697
|
- public/easy_ml/assets/.vite/manifest-assets.json
|
682
698
|
- public/easy_ml/assets/.vite/manifest.json
|
683
|
-
- public/easy_ml/assets/assets/Application-
|
684
|
-
- public/easy_ml/assets/assets/entrypoints/Application.tsx-
|
685
|
-
- public/easy_ml/assets/assets/entrypoints/Application.tsx-
|
699
|
+
- public/easy_ml/assets/assets/Application-D6L0eW4P.css
|
700
|
+
- public/easy_ml/assets/assets/entrypoints/Application.tsx-KJwHDm3F.js
|
701
|
+
- public/easy_ml/assets/assets/entrypoints/Application.tsx-KJwHDm3F.js.map
|
686
702
|
homepage: https://github.com/brettshollenberger/easy_ml
|
687
703
|
licenses:
|
688
704
|
- MIT
|