easy_ml 0.2.0.pre.rc60 → 0.2.0.pre.rc62

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43809758ea028bdeb30b9255c50fd951d7870cd5286d0e3ae9f0e30e09bf22a6
4
- data.tar.gz: 5b2f0ae171a1043b8ce76dc438cab2931c2562f481de8c024beaeee8b15accfc
3
+ metadata.gz: ecfdf6e2547bfaeab500da7ce4cc8ba417dbab1eac64ed74c422fa1c3bf3db5c
4
+ data.tar.gz: be43f29853adc807cf9acb6ca92aee54d237d17fb3e858ca39683227ab976241
5
5
  SHA512:
6
- metadata.gz: 012d1c40e4a4efdf330702effe53eef60b84f8ff7fb5277d0b0030192990f8e86ab9ec7e73ec80972328425c1bf53b8ccf9a275c0e083b7b8e13eeb04be5914b
7
- data.tar.gz: b2b504db55932b4abcf8acd06ed19ea5eb9f3c79d246ac7a3398494f7220451e886ca35196c94816356542f774c11c12ca599595af2841aa76a14c0e6304e982
6
+ metadata.gz: 7f1c9ae555b2edc3957836395630c1515ad47f2429f1037e38b06c8a14e48a46fdc460fa7816c9686c7590a21ddfe92ff93f84068a8e5dff8fc36adc81fdbd14
7
+ data.tar.gz: e1f132a13141f76f4af4ae22893f4f6d2451b91bbaa3fcc344c3f49eb35bac21f13325460b002f84913e903b359314949817307c90cfe9ba6c0a622e5e0ea163
@@ -273,9 +273,9 @@ export function PreprocessingConfig({
273
273
  } else {
274
274
  content = 'Set date column & apply preprocessing to see last value';
275
275
  }
276
- } else if (strategy.method === 'median' && column.statistics?.raw?.median) {
276
+ } else if (strategy.method === 'median' && column.statistics?.raw?.median !== undefined && column.statistics?.raw?.median !== null) {
277
277
  content = `Median: ${column.statistics.raw.median}`
278
- } else if (strategy.method === 'mean' && column.statistics?.raw?.mean) {
278
+ } else if (strategy.method === 'mean' && column.statistics?.raw?.mean !== undefined && column.statistics?.raw?.mean !== null) {
279
279
  content = `Mean: ${column.statistics.raw.mean}`
280
280
  } else {
281
281
  return null;
@@ -281,7 +281,7 @@ module EasyML
281
281
  check: -> { columns_need_refresh? },
282
282
  },
283
283
  features_need_fit: {
284
- name: "Features need fit",
284
+ name: "Features need refresh",
285
285
  check: -> { features_need_fit? },
286
286
  },
287
287
  datasource_needs_refresh: {
@@ -103,6 +103,7 @@ module EasyML
103
103
 
104
104
  config.s3_access_key_id = ENV["S3_ACCESS_KEY_ID"]
105
105
  config.s3_secret_access_key = ENV["S3_SECRET_ACCESS_KEY"]
106
+ config.s3_region = ENV["S3_REGION"] if ENV["S3_REGION"]
106
107
  config.wandb_api_key = ENV["WANDB_API_KEY"] if ENV["WANDB_API_KEY"]
107
108
  end
108
109
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyML
4
- VERSION = "0.2.0-rc60"
4
+ VERSION = "0.2.0-rc62"
5
5
 
6
6
  module Version
7
7
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "entrypoints/Application.tsx": {
3
- "file": "assets/entrypoints/Application.tsx-Dni_GM8r.js",
3
+ "file": "assets/entrypoints/Application.tsx-v1q2Ux1T.js",
4
4
  "name": "entrypoints/Application.tsx",
5
5
  "src": "entrypoints/Application.tsx",
6
6
  "isEntry": true,