easy_ml 0.2.0.pre.rc5 → 0.2.0.pre.rc6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9a3910358a08a9989a8b6530c63be686a66ddfbcc8ea851eaf7c2523ae6cb03
4
- data.tar.gz: 1e560b5b1dfd10150da4c54e57076a788fc9103725e08825c3a95564ab620e95
3
+ metadata.gz: 1f7575de661babb9fecdf0bf9512bc9083a2cfdb070365e1cb18340750477d54
4
+ data.tar.gz: d9ec1b60da75422ae4cb759fa35cc53476339e3897a7a8862f27aba615080144
5
5
  SHA512:
6
- metadata.gz: 9bd90891a4a4be562dfb7606cc8a9f1c291a896e28cb3bffa46788efc52fffe36a761247f42efb64050731d33614133c47ee91345f48b62be9e62b99dfb7070d
7
- data.tar.gz: 79a0334452968c255642a820314fc1303f7742a3ce837ea9179cca3585c72f7a3e447db02906418c064d7c2a34a78ce55fc361d9a6a7263f3fcd17f5c4e00e72
6
+ metadata.gz: 652bdbc6a201da2c09185856c7eb2cc64c39cb4d61a25bf05e7f23acfed20eec0943573757848f9de6d34563308d8e3283001b1dace42e31cd80617cc52140ca
7
+ data.tar.gz: c5f1d9b19c1842cfec629410bf3703ef5ce6b748e18f04602c7cf53f08970f5680dc808a0352437510c7e1f36365ec81ad9fc3d5d92a8f0b614e24b6385a7b7e
@@ -1,15 +1,13 @@
1
1
  module EasyML
2
- module Jobs
3
- class FinalizeFeatureJob < ApplicationJob
4
- queue_as :features
2
+ class FinalizeFeatureJob < ApplicationJob
3
+ queue_as :features
5
4
 
6
- def perform(feature_id)
7
- feature = EasyML::Feature.find(feature_id)
8
- feature.update!(
9
- applied_at: Time.current,
10
- needs_fit: false,
11
- )
12
- end
5
+ def perform(feature_id)
6
+ feature = EasyML::Feature.find(feature_id)
7
+ feature.update!(
8
+ applied_at: Time.current,
9
+ needs_fit: false,
10
+ )
13
11
  end
14
12
  end
15
13
  end
@@ -14,6 +14,7 @@ require "xgb"
14
14
  require "rails/engine"
15
15
  require "activerecord-import"
16
16
  require "historiographer"
17
+ require "resque-batched-job"
17
18
 
18
19
  module EasyML
19
20
  class Engine < Rails::Engine
@@ -35,7 +36,7 @@ module EasyML
35
36
  root.join("app/models/datasources"),
36
37
  root.join("app/models"),
37
38
  root.join("app/models/**/"),
38
- root.join("lib/easy_ml"),
39
+ root.join("lib/easy_ml/**/*"),
39
40
  ]
40
41
 
41
42
  initializer "easy_ml.inflections" do
@@ -47,12 +48,6 @@ module EasyML
47
48
  Polars.enable_string_cache
48
49
  end
49
50
 
50
- config.after_initialize do
51
- Dir[root.join("app/models/**/*.rb")].select { |x| x.match?(/_history.rb/) }.each do |file|
52
- require_dependency file
53
- end
54
- end
55
-
56
51
  unless %w[rake rails bin/rails].include?(File.basename($0)) && %w[generate db:migrate db:drop easy_ml:migration].include?(ARGV.first)
57
52
  config.after_initialize do
58
53
  Dir.glob(File.expand_path("app/models/easy_ml/datasources/*.rb", EasyML::Engine.root)).each do |file|
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyML
4
- VERSION = "0.2.0-rc5"
4
+ VERSION = "0.2.0-rc6"
5
5
 
6
6
  module Version
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_ml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.pre.rc5
4
+ version: 0.2.0.pre.rc6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Shollenberger
@@ -562,13 +562,13 @@ files:
562
562
  - app/models/easy_ml/retraining_run.rb
563
563
  - app/models/easy_ml/settings.rb
564
564
  - app/models/easy_ml/splitter.rb
565
+ - app/models/easy_ml/splitter_history.rb
565
566
  - app/models/easy_ml/splitters/base_splitter.rb
566
567
  - app/models/easy_ml/splitters/date_splitter.rb
567
568
  - app/models/easy_ml/splitters/predefined_splitter.rb
568
569
  - app/models/easy_ml/splitters/random_splitter.rb
569
570
  - app/models/easy_ml/tuner_job.rb
570
571
  - app/models/easy_ml/tuner_run.rb
571
- - app/models/splitter_history.rb
572
572
  - app/serializers/easy_ml/column_serializer.rb
573
573
  - app/serializers/easy_ml/dataset_serializer.rb
574
574
  - app/serializers/easy_ml/datasource_serializer.rb