interpretml / interpret

Fit interpretable models. Explain blackbox machine learning.
https://interpret.ml/docs
MIT License
6.22k stars 726 forks source link

Segmentation Fault #444

Closed ricardobarroslourenco closed 1 year ago

ricardobarroslourenco commented 1 year ago

This issue may be related to the issue https://github.com/interpretml/interpret/issues/435 .

I was trying to run a model_ExpBoostReg.fit(X, y) when I have got the following segfault (full notebook available here ):

---------------------------------------------------------------------------
TerminatedWorkerError                     Traceback (most recent call last)
Cell In[12], line 1
----> 1 model_ExpBoostReg.fit(X, y)

File /opt/conda/lib/python3.11/site-packages/interpret/glassbox/_ebm/_ebm.py:848, in EBMModel.fit(self, X, y, sample_weight, init_score)
    821         early_stopping_rounds_local = 0
    823     parallel_args.append(
    824         (
    825             dataset,
   (...)
    845         )
    846     )
--> 848 results = provider.parallel(boost, parallel_args)
    850 # let python reclaim the dataset memory via reference counting
    851 del parallel_args  # parallel_args holds references to dataset, so must be deleted

File /opt/conda/lib/python3.11/site-packages/interpret/provider/_compute.py:19, in JobLibProvider.parallel(self, compute_fn, compute_args_iter)
     18 def parallel(self, compute_fn, compute_args_iter):
---> 19     results = Parallel(n_jobs=self.n_jobs)(
     20         delayed(compute_fn)(*args) for args in compute_args_iter
     21     )
     22     return results

File /opt/conda/lib/python3.11/site-packages/joblib/parallel.py:1098, in Parallel.__call__(self, iterable)
   1095     self._iterating = False
   1097 with self._backend.retrieval_context():
-> 1098     self.retrieve()
   1099 # Make sure that we get a last message telling us we are done
   1100 elapsed_time = time.time() - self._start_time

File /opt/conda/lib/python3.11/site-packages/joblib/parallel.py:975, in Parallel.retrieve(self)
    973 try:
    974     if getattr(self._backend, 'supports_timeout', False):
--> 975         self._output.extend(job.get(timeout=self.timeout))
    976     else:
    977         self._output.extend(job.get())

File /opt/conda/lib/python3.11/site-packages/joblib/_parallel_backends.py:567, in LokyBackend.wrap_future_result(future, timeout)
    564 """Wrapper for Future.result to implement the same behaviour as
    565 AsyncResults.get from multiprocessing."""
    566 try:
--> 567     return future.result(timeout=timeout)
    568 except CfTimeoutError as e:
    569     raise TimeoutError from e

File /opt/conda/lib/python3.11/concurrent/futures/_base.py:456, in Future.result(self, timeout)
    454     raise CancelledError()
    455 elif self._state == FINISHED:
--> 456     return self.__get_result()
    457 else:
    458     raise TimeoutError()

File /opt/conda/lib/python3.11/concurrent/futures/_base.py:401, in Future.__get_result(self)
    399 if self._exception:
    400     try:
--> 401         raise self._exception
    402     finally:
    403         # Break a reference cycle with the exception in self._exception
    404         self = None

TerminatedWorkerError: A worker process managed by the executor was unexpectedly terminated. This could be caused by a segmentation fault while calling the function or by an excessive memory usage causing the Operating System to kill the worker.

The exit codes of the workers are {SIGSEGV(-11), SIGSEGV(-11), SIGSEGV(-11), SIGSEGV(-11), SIGSEGV(-11), SIGSEGV(-11), SIGSEGV(-11)}
ricardobarroslourenco commented 1 year ago

I am also using a conda-forge built container, that I have rebuilt from scratch (no fixed versioning =/ ). Before it was working (about three months ago), but as I have rebuilt the new environment, it got this segfault. @paulbkoch I have got the log you requested in the other issue:

2023-05-30 16:41:55,976 | develop.py           160                 debug_mode() | {
  "interpret.__version__": "0.4.1",
  "interpret.status_show_server": {
    "app_runner_exists": false
  },
  "interpret.static_system_info": {
    "platform": "Linux-5.15.0-72-generic-x86_64-with-glibc2.31",
    "platform.architecture": [
      "64bit",
      ""
    ],
    "platform.machine": "x86_64",
    "platform.processor": "x86_64",
    "platform.python_version": "3.11.3",
    "platform.release": "5.15.0-72-generic",
    "platform.system": "Linux",
    "platform.version": "#79~20.04.1-Ubuntu SMP Thu Apr 20 22:12:07 UTC 2023",
    "psutil.logical_cpu_count": 16,
    "psutil.physical_cpu_count": 8,
    "psutil.virtual_memory.total": "15.2GiB",
    "psutil.swap_memory.total": "980.0MiB"
  },
  "interpret.dynamic_system_info": {
    "psutil.virtual_memory": {
      "total": "15.2GiB",
      "available": "9.8GiB",
      "percent": 35.9,
      "used": "4.9GiB",
      "free": "1.7GiB",
      "active": "3.4GiB",
      "inactive": "8.8GiB",
      "buffers": "939.9MiB",
      "cached": "7.7GiB",
      "shared": "233.3MiB",
      "slab": "977.3MiB"
    },
    "psutil.swap_memory": {
      "total": "980.0MiB",
      "used": "23.5MiB",
      "free": "956.5MiB",
      "percent": 2.4,
      "sin": "240.0KiB",
      "sout": "21.4MiB"
    },
    "psutil.avg_cpu_percent": 2.5625,
    "psutil.std_cpu_percent": 2.243845750046112,
    "psutil.cpu_freq": {
      "current": 2336.8065625000004,
      "min": 800.0,
      "max": 4825.0
    }
  }
}
2023-05-30 16:41:55,976 | _native.py           47        get_native_singleton() | EBM lib loading.
2023-05-30 16:41:55,977 | _native.py           137                 native_log() | Native logging set to INFO in RELEASE build.
2023-05-30 16:41:56,371 | _native.py           141                 native_log() | Entered Objective::CreateObjective
2023-05-30 16:41:56,371 | _native.py           141                 native_log() | Entered Registrable::CreateRegistrable
2023-05-30 16:41:56,371 | _native.py           141                 native_log() | Exited Registrable::CreateRegistrable
2023-05-30 16:41:56,371 | _native.py           141                 native_log() | Exited Objective::CreateObjective
2023-05-30 16:41:56,375 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508d8b330, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562506591120
2023-05-30 16:41:56,376 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,376 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508d8b330, countCuts=253, cutsLowerBoundInclusive=0x562506591120, binIndexesOut=0x562508da09b0
2023-05-30 16:41:56,377 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,377 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508d8b330
2023-05-30 16:41:56,377 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,377 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508d8b330, countCuts=22, cutsLowerBoundInclusive=0x562506761970, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,377 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,378 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508da09b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562506591910
2023-05-30 16:41:56,378 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=3, cutsLowerBoundInclusive=0x562506591910, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508da09b0
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=22, cutsLowerBoundInclusive=0x5625067bcf30, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,379 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,383 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a75eea0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562506592930
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=253, cutsLowerBoundInclusive=0x562506592930, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a75eea0
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=22, cutsLowerBoundInclusive=0x562506761970, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,385 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,389 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508da09b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508caab10
2023-05-30 16:41:56,390 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,390 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=253, cutsLowerBoundInclusive=0x562508caab10, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,391 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,391 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508da09b0
2023-05-30 16:41:56,391 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,391 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=22, cutsLowerBoundInclusive=0x5625067bcf30, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,391 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,392 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a75eea0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cabb30
2023-05-30 16:41:56,392 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 16:41:56,392 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=3, cutsLowerBoundInclusive=0x562508cabb30, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,392 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,392 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a75eea0
2023-05-30 16:41:56,393 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,393 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=22, cutsLowerBoundInclusive=0x562506761970, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,393 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,396 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508da09b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cacb50
2023-05-30 16:41:56,398 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,398 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=253, cutsLowerBoundInclusive=0x562508cacb50, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,398 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,398 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508da09b0
2023-05-30 16:41:56,398 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,399 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=22, cutsLowerBoundInclusive=0x5625067bcf30, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,399 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,402 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a75eea0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cad340
2023-05-30 16:41:56,403 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,403 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=253, cutsLowerBoundInclusive=0x562508cad340, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,404 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,404 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a75eea0
2023-05-30 16:41:56,404 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,404 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a75eea0, countCuts=22, cutsLowerBoundInclusive=0x562506761970, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,404 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,405 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508da09b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cae360
2023-05-30 16:41:56,405 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 16:41:56,405 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=2, cutsLowerBoundInclusive=0x562508cae360, binIndexesOut=0x562508d8b330
2023-05-30 16:41:56,405 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,405 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508da09b0
2023-05-30 16:41:56,406 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,406 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508da09b0, countCuts=22, cutsLowerBoundInclusive=0x5625067bcf30, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,406 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,410 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a815560, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508caf380
2023-05-30 16:41:56,411 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,411 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a815560, countCuts=253, cutsLowerBoundInclusive=0x562508caf380, binIndexesOut=0x56250a75eea0
2023-05-30 16:41:56,412 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,412 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a815560
2023-05-30 16:41:56,412 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,412 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a815560, countCuts=17, cutsLowerBoundInclusive=0x562508c57df0, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,412 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,417 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a7ffee0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cafb70
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a7ffee0, countCuts=253, cutsLowerBoundInclusive=0x562508cafb70, binIndexesOut=0x56250a75eea0
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a7ffee0
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a7ffee0, countCuts=18, cutsLowerBoundInclusive=0x562506c6d5a0, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,418 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,421 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508d8b330, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cb0b90
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508d8b330, countCuts=253, cutsLowerBoundInclusive=0x562508cb0b90, binIndexesOut=0x56250a75eea0
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508d8b330
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=19
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x562508d8b330, countCuts=19, cutsLowerBoundInclusive=0x562507d261d0, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,423 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,428 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a815560, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508cb1bb0
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a815560, countCuts=253, cutsLowerBoundInclusive=0x562508cb1bb0, binIndexesOut=0x56250a75eea0
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a815560
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a815560, countCuts=17, cutsLowerBoundInclusive=0x562508c57df0, binIndexesOut=0x56250a749820
2023-05-30 16:41:56,430 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,433 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a7ffee0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a775540
2023-05-30 16:41:56,435 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,435 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x56250a7ffee0, countCuts=253, cutsLowerBoundInclusive=0x56250a775540, binIndexesOut=0x56250a75eea0
2023-05-30 16:41:56,435 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 16:41:56,435 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a7ffee0
2023-05-30 16:41:56,435 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,439 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508d8b330, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a776540
2023-05-30 16:41:56,441 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,441 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508d8b330
2023-05-30 16:41:56,441 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,443 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508da09b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a777540
2023-05-30 16:41:56,443 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 16:41:56,443 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508da09b0
2023-05-30 16:41:56,443 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,447 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a815560, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a777d30
2023-05-30 16:41:56,448 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,448 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a815560
2023-05-30 16:41:56,449 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 16:41:56,452 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a7ffee0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a778d30
2023-05-30 16:41:56,453 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,453 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a7ffee0
2023-05-30 16:41:56,453 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=20
2023-05-30 16:41:56,455 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508d8b330, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a779d30
2023-05-30 16:41:56,455 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 16:41:56,455 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508d8b330
2023-05-30 16:41:56,455 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,459 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a815560, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a77a520
2023-05-30 16:41:56,461 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,461 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a815560
2023-05-30 16:41:56,461 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,464 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a7ffee0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a77b520
2023-05-30 16:41:56,465 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,466 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a7ffee0
2023-05-30 16:41:56,466 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 16:41:56,467 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508d8b330, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x56250a77c520
2023-05-30 16:41:56,467 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=1, return=0
2023-05-30 16:41:56,467 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508d8b330
2023-05-30 16:41:56,467 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,468 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x562508dac4c0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508dc1b40
2023-05-30 16:41:56,469 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,469 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x562508dac4c0
2023-05-30 16:41:56,469 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=16
2023-05-30 16:41:56,472 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a8283e0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508dc2b40
2023-05-30 16:41:56,473 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,473 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a8283e0
2023-05-30 16:41:56,474 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,475 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a7d51e0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508dc3b40
2023-05-30 16:41:56,475 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 16:41:56,475 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a7d51e0
2023-05-30 16:41:56,475 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 16:41:56,478 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x56250a82a5c0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f28e02f97b0, cutsLowerBoundInclusiveOut=0x562508dc4330
2023-05-30 16:41:56,479 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 16:41:56,479 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x56250a82a5c0
2023-05-30 16:41:56,479 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 16:41:56,816 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x562508309530, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x56250a76eaf0
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x56250844eba0, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x56250a74a030
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x5625085c3210, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x56250a7715d0
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x56250844eb80, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x56250a74cb10
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x56250829b090, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x56250a74f5f0
2023-05-30 16:41:56,817 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 16:41:56,818 | _compressed_dataset.py 27                  bin_native() | Creating native dataset
2023-05-30 16:41:56,818 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,818 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,818 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,818 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,819 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,820 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,821 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,822 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,823 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,824 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,824 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,824 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,824 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,824 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,825 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,826 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,827 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,828 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,829 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x562508d8de10, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x56250c2c8e30, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,830 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,831 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,832 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,833 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,834 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,835 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,836 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,837 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,838 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,839 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,840 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,841 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,842 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,843 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,843 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,843 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,843 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,844 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,844 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x56250a7d59d0, cBytesAllocated=765376, pFillMem=0x56250a7eb050
2023-05-30 16:41:56,844 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x56250c2c8e30, cBytesAllocated=765376, pFillMem=0x56250a7eb050

Not much sure on where it got wrong though =/

paulbkoch commented 1 year ago

Hi @ricardobarroslourenco -- Thanks for submitting this error! Can you make 2 changes to that script and send me the new log:

Set: native_debug=True instead of False

pass the parameter n_jobs=1 to the ExplainableBoostingRegressor.

Is this a public dataset that I can download?

ricardobarroslourenco commented 1 year ago

Thanks for the prompt follow-up @paulbkoch !

I have done the changes, and it stopped running at the same point. The new log content reads as this:

2023-05-30 19:48:34,835 | develop.py           160                 debug_mode() | {
  "interpret.__version__": "0.4.1",
  "interpret.status_show_server": {
    "app_runner_exists": false
  },
  "interpret.static_system_info": {
    "platform": "Linux-5.15.0-72-generic-x86_64-with-glibc2.31",
    "platform.architecture": [
      "64bit",
      ""
    ],
    "platform.machine": "x86_64",
    "platform.processor": "x86_64",
    "platform.python_version": "3.11.3",
    "platform.release": "5.15.0-72-generic",
    "platform.system": "Linux",
    "platform.version": "#79~20.04.1-Ubuntu SMP Thu Apr 20 22:12:07 UTC 2023",
    "psutil.logical_cpu_count": 16,
    "psutil.physical_cpu_count": 8,
    "psutil.virtual_memory.total": "15.2GiB",
    "psutil.swap_memory.total": "980.0MiB"
  },
  "interpret.dynamic_system_info": {
    "psutil.virtual_memory": {
      "total": "15.2GiB",
      "available": "7.9GiB",
      "percent": 48.5,
      "used": "6.8GiB",
      "free": "1.7GiB",
      "active": "1.7GiB",
      "inactive": "10.6GiB",
      "buffers": "558.3MiB",
      "cached": "6.2GiB",
      "shared": "219.9MiB",
      "slab": "954.3MiB"
    },
    "psutil.swap_memory": {
      "total": "980.0MiB",
      "used": "842.0MiB",
      "free": "138.0MiB",
      "percent": 85.9,
      "sin": "2.5MiB",
      "sout": "841.7MiB"
    },
    "psutil.avg_cpu_percent": 3.19375,
    "psutil.std_cpu_percent": 2.936934786048202,
    "psutil.cpu_freq": {
      "current": 2378.659,
      "min": 800.0,
      "max": 4825.0
    }
  }
}
2023-05-30 19:48:34,835 | _native.py           47        get_native_singleton() | EBM lib loading.
2023-05-30 19:48:34,837 | _native.py           137                 native_log() | Native logging set to INFO in RELEASE build.
2023-05-30 19:49:28,771 | _native.py           141                 native_log() | Entered Objective::CreateObjective
2023-05-30 19:49:28,772 | _native.py           141                 native_log() | Entered Registrable::CreateRegistrable
2023-05-30 19:49:28,772 | _native.py           141                 native_log() | Exited Registrable::CreateRegistrable
2023-05-30 19:49:28,772 | _native.py           141                 native_log() | Exited Objective::CreateObjective
2023-05-30 19:49:28,774 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b348a80
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=253, cutsLowerBoundInclusive=0x556a9b348a80, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=22, cutsLowerBoundInclusive=0x556a9a0cc210, binIndexesOut=0x556a9b4503b0
2023-05-30 19:49:28,776 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b26ebe0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=3, cutsLowerBoundInclusive=0x556a9b26ebe0, binIndexesOut=0x556a9d22b350
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=22, cutsLowerBoundInclusive=0x556a99f924d0, binIndexesOut=0x556a9b60b3f0
2023-05-30 19:49:28,777 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,780 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b49d9e0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b4b3060
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b49d9e0, countCuts=253, cutsLowerBoundInclusive=0x556a9b4b3060, binIndexesOut=0x556a9b4503b0
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b49d9e0
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b49d9e0, countCuts=22, cutsLowerBoundInclusive=0x556a9a0cc210, binIndexesOut=0x556a9b60b3f0
2023-05-30 19:49:28,782 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,784 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b26f3d0
2023-05-30 19:49:28,786 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,786 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=253, cutsLowerBoundInclusive=0x556a9b26f3d0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,786 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,786 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,786 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,787 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=22, cutsLowerBoundInclusive=0x556a99f924d0, binIndexesOut=0x556a9d22b350
2023-05-30 19:49:28,787 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3317d0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=3, cutsLowerBoundInclusive=0x556a9b3317d0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=22, cutsLowerBoundInclusive=0x556a9a0cc210, binIndexesOut=0x556a9b4503b0
2023-05-30 19:49:28,788 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,791 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3327f0
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=253, cutsLowerBoundInclusive=0x556a9b3327f0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=22, cutsLowerBoundInclusive=0x556a99f924d0, binIndexesOut=0x556a9d22b350
2023-05-30 19:49:28,792 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,794 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b332fe0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=253, cutsLowerBoundInclusive=0x556a9b332fe0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b60b3f0, countCuts=22, cutsLowerBoundInclusive=0x556a9a0cc210, binIndexesOut=0x556a9b4503b0
2023-05-30 19:49:28,796 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3acda0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=2, cutsLowerBoundInclusive=0x556a9b3acda0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=22, cutsLowerBoundInclusive=0x556a99f924d0, binIndexesOut=0x556a9d22b350
2023-05-30 19:49:28,798 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,801 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b411ff0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3addc0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b411ff0, countCuts=253, cutsLowerBoundInclusive=0x556a9b3addc0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b411ff0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b411ff0, countCuts=17, cutsLowerBoundInclusive=0x556a9b46b4d0, binIndexesOut=0x556a9b60b3f0
2023-05-30 19:49:28,802 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,806 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b4503b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3ae5b0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b4503b0, countCuts=253, cutsLowerBoundInclusive=0x556a9b3ae5b0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b4503b0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b4503b0, countCuts=18, cutsLowerBoundInclusive=0x556a9b183840, binIndexesOut=0x556a9b60b3f0
2023-05-30 19:49:28,807 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,809 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3af5d0
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=253, cutsLowerBoundInclusive=0x556a9b3af5d0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=19
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9d2409d0, countCuts=19, cutsLowerBoundInclusive=0x556a9b50cf60, binIndexesOut=0x556a9d22b350
2023-05-30 19:49:28,811 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,815 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b411ff0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b3b05f0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b411ff0, countCuts=253, cutsLowerBoundInclusive=0x556a9b3b05f0, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b411ff0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b411ff0, countCuts=17, cutsLowerBoundInclusive=0x556a9b46b4d0, binIndexesOut=0x556a9b60b3f0
2023-05-30 19:49:28,816 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,818 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b4503b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b65e670
2023-05-30 19:49:28,820 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,820 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x556a9b4503b0, countCuts=253, cutsLowerBoundInclusive=0x556a9b65e670, binIndexesOut=0x556a9b49d9e0
2023-05-30 19:49:28,820 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-30 19:49:28,820 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b4503b0
2023-05-30 19:49:28,820 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:28,823 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b65f690
2023-05-30 19:49:28,825 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,825 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,825 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:28,826 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b6606b0
2023-05-30 19:49:28,826 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 19:49:28,827 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,827 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,829 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b6616d0
2023-05-30 19:49:28,830 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,831 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,831 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 19:49:28,833 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b661ec0
2023-05-30 19:49:28,835 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,835 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,835 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=20
2023-05-30 19:49:28,836 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b270e60
2023-05-30 19:49:28,837 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-30 19:49:28,837 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,837 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,839 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b411ff0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b271e80
2023-05-30 19:49:28,841 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,841 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b411ff0
2023-05-30 19:49:28,841 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:28,843 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b4503b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b272670
2023-05-30 19:49:28,845 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,845 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b4503b0
2023-05-30 19:49:28,845 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-30 19:49:28,846 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b273690
2023-05-30 19:49:28,846 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=1, return=0
2023-05-30 19:49:28,847 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,847 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,848 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b2746b0
2023-05-30 19:49:28,849 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,849 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,849 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=16
2023-05-30 19:49:28,852 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9d2409d0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b274ea0
2023-05-30 19:49:28,854 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,854 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9d2409d0
2023-05-30 19:49:28,854 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,855 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b60b3f0, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9857b780
2023-05-30 19:49:28,855 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-30 19:49:28,855 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b60b3f0
2023-05-30 19:49:28,855 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-30 19:49:28,858 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x556a9b594490, minSamplesBin=1, isRounded=false, countCutsInOut=0x7f3ddb8d5330, cutsLowerBoundInclusiveOut=0x556a9b465a30
2023-05-30 19:49:28,859 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-30 19:49:28,860 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x556a9b594490
2023-05-30 19:49:28,860 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x556a9a084940, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x556a9b492fd0
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x556a9ad85bd0, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x556a9b33f5f0
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x556a9aed9c50, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x556a9b344bb0
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x556a9ad85bf0, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x556a9b3420d0
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x556a99e8b8a0, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x556a9b495ab0
2023-05-30 19:49:29,177 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-30 19:49:29,178 | _compressed_dataset.py 27                  bin_native() | Creating native dataset
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,178 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,179 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,179 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,179 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,179 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,247 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,248 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,249 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,250 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,251 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,252 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,253 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,254 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,255 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,256 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b4503b0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b4503b0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x556a9cfd3ef0, cBytesAllocated=0, pFillMem=(nil)
2023-05-30 19:49:29,257 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,258 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,259 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,260 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,261 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,262 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,263 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,264 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,265 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,266 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,267 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,268 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b4503b0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b4503b0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x556a9b49d9e0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,269 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x556a9cfd3ef0, cBytesAllocated=765376, pFillMem=0x556a9d9f8980
2023-05-30 19:49:29,270 | _native.py           1233                 __enter__() | Booster allocation start
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered CreateBooster: rng=0x556a9a084940, dataSet=0x556a9d9f8980, bag=0x556a9b492fd0, initScores=(nil), countTerms=91, dimensionCounts=0x556a9b64d290, featureIndexes=0x556a9adb33d0, countInnerBags=0, isDifferentiallyPrivate=false, objective=0x7f3d12ee2090, experimentalParams=(nil), boosterHandleOut=0x7f3ddb8d5330
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered BoosterCore::Create
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | BoosterCore::Create starting feature processing
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | BoosterCore::Create done feature processing
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | BoosterCore::Create starting feature group processing
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered Term::AllocateTerms
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Exited Term::AllocateTerms
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | BoosterCore::Create finished feature group processing
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered InnerBag::GenerateInnerBags
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered InnerBag::GenerateFlatInnerBag
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Exited InnerBag::GenerateFlatInnerBag
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Exited InnerBag::GenerateInnerBags
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered Objective::CreateObjective
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Entered Registrable::CreateRegistrable
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Exited Registrable::CreateRegistrable
2023-05-30 19:49:29,271 | _native.py           141                 native_log() | Exited Objective::CreateObjective
ricardobarroslourenco commented 1 year ago

The dataset is public, from Ameriflux Harvard Forest (site US-Ha1 ). I have included it as a gist (here) to make it easier to share.

ricardobarroslourenco commented 1 year ago

Also, my environment is built as a docker container. The source code is also available.

paulbkoch commented 1 year ago

Hi @ricardobarroslourenco -- Can you check to see if any of the y values are NaN or infinity?

Edit: Never mind, the log is not consistent with this hypothesis, and I looked at the data and it didn't have these values.

paulbkoch commented 1 year ago

Unfortunately, it seems to work on my machine.

I do have a question though about the run made with n_jobs=1. I would expect that the error you would get would change from TerminatedWorkerError to something else. Can you tell me what the error on that run was.

paulbkoch commented 1 year ago

Hi @ricardobarroslourenco -- The 2nd log looks like it was run again under RELEASE instead of DEBUG. The script you are using correctly has debug_mode at the top, so I think the python kernel needs to be restarted for this to work. Can you please try that so that the "native_debug=True" can be activated.

ricardobarroslourenco commented 1 year ago

Hi @paulbkoch ! Thanks for the thorough responses.

I have restarted the kernel, as you instructed, and I have got the new log (below) with the native debug on. A change happened, which instead of throwing an error, the kernel has died and was automatically restarted by Jupyter.

Here goes the log:

2023-05-31 15:06:50,002 | develop.py           160                 debug_mode() | {
  "interpret.__version__": "0.4.1",
  "interpret.status_show_server": {
    "app_runner_exists": false
  },
  "interpret.static_system_info": {
    "platform": "Linux-3.10.0-1160.88.1.el7.x86_64-x86_64-with-glibc2.31",
    "platform.architecture": [
      "64bit",
      ""
    ],
    "platform.machine": "x86_64",
    "platform.processor": "x86_64",
    "platform.python_version": "3.11.3",
    "platform.release": "3.10.0-1160.88.1.el7.x86_64",
    "platform.system": "Linux",
    "platform.version": "#1 SMP Tue Mar 7 15:41:52 UTC 2023",
    "psutil.logical_cpu_count": 44,
    "psutil.physical_cpu_count": 44,
    "psutil.virtual_memory.total": "187.4GiB",
    "psutil.swap_memory.total": "10.0GiB"
  },
  "interpret.dynamic_system_info": {
    "psutil.virtual_memory": {
      "total": "187.4GiB",
      "available": "177.2GiB",
      "percent": 5.4,
      "used": "6.8GiB",
      "free": "156.2GiB",
      "active": "6.2GiB",
      "inactive": "15.2GiB",
      "buffers": "172.2MiB",
      "cached": "24.2GiB",
      "shared": "2.9GiB",
      "slab": "6.3GiB"
    },
    "psutil.swap_memory": {
      "total": "10.0GiB",
      "used": "1.7GiB",
      "free": "8.3GiB",
      "percent": 16.7,
      "sin": "4.9GiB",
      "sout": "7.3GiB"
    },
    "psutil.avg_cpu_percent": 0.0,
    "psutil.std_cpu_percent": 0.0,
    "psutil.cpu_freq": {
      "current": 1384.1226136363634,
      "min": 1000.0,
      "max": 3700.0
    }
  }
}
2023-05-31 15:06:50,003 | _native.py           47        get_native_singleton() | EBM lib loading.
2023-05-31 15:06:50,004 | _native.py           137                 native_log() | Native logging set to INFO in RELEASE build.
2023-05-31 15:06:50,542 | _native.py           141                 native_log() | Entered Objective::CreateObjective
2023-05-31 15:06:50,542 | _native.py           141                 native_log() | Entered Registrable::CreateRegistrable
2023-05-31 15:06:50,542 | _native.py           141                 native_log() | Exited Registrable::CreateRegistrable
2023-05-31 15:06:50,542 | _native.py           141                 native_log() | Exited Objective::CreateObjective
2023-05-31 15:06:50,546 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x557088885020, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088859d40
2023-05-31 15:06:50,548 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,548 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x557088885020, countCuts=253, cutsLowerBoundInclusive=0x557088859d40, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,548 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,549 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x557088885020
2023-05-31 15:06:50,549 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,549 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x557088885020, countCuts=22, cutsLowerBoundInclusive=0x557085a2ab10, binIndexesOut=0x5570887d5b00
2023-05-31 15:06:50,549 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570886e6cd0
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=3, cutsLowerBoundInclusive=0x5570886e6cd0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,551 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=22, cutsLowerBoundInclusive=0x557088149b40, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,552 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,555 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570887bf730
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=253, cutsLowerBoundInclusive=0x5570887bf730, binIndexesOut=0x557088885020
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,558 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=22, cutsLowerBoundInclusive=0x557085a2ab10, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,559 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,562 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570886bef20
2023-05-31 15:06:50,564 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,564 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=253, cutsLowerBoundInclusive=0x5570886bef20, binIndexesOut=0x557088885020
2023-05-31 15:06:50,564 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,565 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,565 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,565 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=22, cutsLowerBoundInclusive=0x557088149b40, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,565 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570886bff40
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=3, cutsLowerBoundInclusive=0x5570886bff40, binIndexesOut=0x557088885020
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,567 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=22, cutsLowerBoundInclusive=0x557085a2ab10, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,568 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,571 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570886c0730
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=253, cutsLowerBoundInclusive=0x5570886c0730, binIndexesOut=0x557088885020
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,574 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=22, cutsLowerBoundInclusive=0x557088149b40, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,575 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,578 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x55708844cd40
2023-05-31 15:06:50,580 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=253, cutsLowerBoundInclusive=0x55708844cd40, binIndexesOut=0x557088885020
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=22, cutsLowerBoundInclusive=0x557085a2ab10, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,581 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,583 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x55708844bd20
2023-05-31 15:06:50,583 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-31 15:06:50,583 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=2, cutsLowerBoundInclusive=0x55708844bd20, binIndexesOut=0x557088885020
2023-05-31 15:06:50,583 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,583 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,584 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,584 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=22, cutsLowerBoundInclusive=0x557088149b40, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,584 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,588 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088975be0
2023-05-31 15:06:50,590 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,590 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=253, cutsLowerBoundInclusive=0x557088975be0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,590 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,590 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,591 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:50,591 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=17, cutsLowerBoundInclusive=0x5570888759d0, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,591 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,596 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570889763d0
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=253, cutsLowerBoundInclusive=0x5570889763d0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=18, cutsLowerBoundInclusive=0x5570889eb340, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,598 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,602 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570887413c0
2023-05-31 15:06:50,604 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,604 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=253, cutsLowerBoundInclusive=0x5570887413c0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,604 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,604 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,605 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=19
2023-05-31 15:06:50,605 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=19, cutsLowerBoundInclusive=0x557088583230, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,605 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,610 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570887423e0
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=253, cutsLowerBoundInclusive=0x5570887423e0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:50,612 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887841b0, countCuts=17, cutsLowerBoundInclusive=0x5570888759d0, binIndexesOut=0x55708891c2b0
2023-05-31 15:06:50,613 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,616 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088742bd0
2023-05-31 15:06:50,619 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,619 | _native.py           141                 native_log() | Entered Discretize: countSamples=10958, featureVals=0x5570887d5b00, countCuts=253, cutsLowerBoundInclusive=0x557088742bd0, binIndexesOut=0x557088885020
2023-05-31 15:06:50,619 | _native.py           141                 native_log() | Exited Discretize: return=0
2023-05-31 15:06:50,619 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,619 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:50,623 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088942aa0
2023-05-31 15:06:50,626 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,626 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,626 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:50,628 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088943290
2023-05-31 15:06:50,628 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-31 15:06:50,628 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,628 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,632 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570885803e0
2023-05-31 15:06:50,635 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,635 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,635 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-31 15:06:50,639 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088580bd0
2023-05-31 15:06:50,641 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,641 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,641 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=20
2023-05-31 15:06:50,643 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x5570887460b0
2023-05-31 15:06:50,643 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=2, return=0
2023-05-31 15:06:50,643 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,643 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,647 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557088745090
2023-05-31 15:06:50,650 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,650 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,650 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:50,654 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557085e601d0
2023-05-31 15:06:50,656 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,656 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,656 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=18
2023-05-31 15:06:50,658 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557085e611f0
2023-05-31 15:06:50,658 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=1, return=0
2023-05-31 15:06:50,658 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,658 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,660 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x557085e619e0
2023-05-31 15:06:50,662 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,662 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,662 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=16
2023-05-31 15:06:50,667 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887d5b00, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x55708854dc20
2023-05-31 15:06:50,669 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,669 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887d5b00
2023-05-31 15:06:50,669 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,671 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x5570887841b0, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x55708854cc00
2023-05-31 15:06:50,671 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=3, return=0
2023-05-31 15:06:50,671 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x5570887841b0
2023-05-31 15:06:50,672 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=22
2023-05-31 15:06:50,677 | _native.py           141                 native_log() | Entered CutQuantile: countSamples=10958, featureVals=0x557089218200, minSamplesBin=1, isRounded=false, countCutsInOut=0x2ab6f1aa47f0, cutsLowerBoundInclusiveOut=0x55708872e8d0
2023-05-31 15:06:50,678 | _native.py           141                 native_log() | Exited CutQuantile: countCuts=253, return=0
2023-05-31 15:06:50,678 | _native.py           141                 native_log() | Entered GetHistogramCutCount: countSamples=10958, featureVals=0x557089218200
2023-05-31 15:06:50,679 | _native.py           141                 native_log() | Exited GetHistogramCutCount: return=17
2023-05-31 15:06:51,109 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x557088054f90, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x55708887c860
2023-05-31 15:06:51,109 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x5570880c3150, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x5570886a1670
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x55708748dba0, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x55708887f340
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x557088747780, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x5570886a4150
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Entered SampleWithoutReplacement: rng=0x5570858c1220, countTrainingSamples=9314, countValidationSamples=1644, bagOut=0x55708858bb20
2023-05-31 15:06:51,110 | _native.py           141                 native_log() | Exited SampleWithoutReplacement
2023-05-31 15:06:51,111 | _compressed_dataset.py 27                  bin_native() | Creating native dataset
2023-05-31 15:06:51,111 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,111 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,111 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,112 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,112 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,112 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,112 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,113 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,113 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,113 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,113 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,113 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,114 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,114 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,114 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,114 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,114 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,115 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,115 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,115 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,115 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,115 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,116 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,117 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,117 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,117 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,117 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,117 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,118 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,118 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,118 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,118 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,118 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,119 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,119 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,119 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,119 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,119 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,120 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,120 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,120 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,120 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,120 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,121 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,121 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,121 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,121 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,121 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,122 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,123 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,123 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,123 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,123 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,123 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,124 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,124 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,124 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,124 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,124 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,125 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,126 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,127 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x55708becd1e0, cBytesAllocated=0, pFillMem=(nil)
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendHeader: countFeatures=91, countWeights=0, countTargets=1, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,128 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,129 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,129 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,129 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,129 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,130 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,130 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,130 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,130 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,130 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,131 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,131 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,131 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,131 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,131 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,132 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,132 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,132 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,132 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,133 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,133 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,133 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,133 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,133 | _native.py           141                 native_log() | Entered AppendFeature: countBins=5, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,134 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,134 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,134 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,134 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,134 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,135 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,135 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,135 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,135 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,135 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,136 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,136 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,136 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,136 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,136 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,137 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,137 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,137 | _native.py           141                 native_log() | Entered AppendFeature: countBins=17, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,137 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,138 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,138 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,138 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,138 | _native.py           141                 native_log() | Entered AppendFeature: countBins=253, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,138 | _native.py           141                 native_log() | Entered AppendFeature: countBins=3, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,139 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,139 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,139 | _native.py           141                 native_log() | Entered AppendFeature: countBins=26, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,139 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,140 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,140 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,140 | _native.py           141                 native_log() | Entered AppendFeature: countBins=15, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,140 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,140 | _native.py           141                 native_log() | Entered AppendFeature: countBins=4, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,141 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,141 | _native.py           141                 native_log() | Entered AppendFeature: countBins=13, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,141 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,141 | _native.py           141                 native_log() | Entered AppendFeature: countBins=25, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,141 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,142 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,142 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,142 | _native.py           141                 native_log() | Entered AppendFeature: countBins=254, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,142 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,142 | _native.py           141                 native_log() | Entered AppendFeature: countBins=23, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,143 | _native.py           141                 native_log() | Entered AppendFeature: countBins=21, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,143 | _native.py           141                 native_log() | Entered AppendFeature: countBins=22, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,143 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,143 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,143 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,144 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,145 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,145 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,145 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,145 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,145 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=255, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=2, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,146 | _native.py           141                 native_log() | Entered AppendFeature: countBins=8, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,147 | _native.py           141                 native_log() | Entered AppendFeature: countBins=16, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,147 | _native.py           141                 native_log() | Entered AppendFeature: countBins=18, isMissing=false, isUnknown=false, isNominal=false, countSamples=10958, binIndexes=0x557088885020, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,147 | _native.py           141                 native_log() | Entered AppendTarget: bClassification=false, countClasses=0, countSamples=10958, aTargets=0x55708becd1e0, cBytesAllocated=765376, pFillMem=0x5570891c2e20
2023-05-31 15:06:51,148 | _native.py           1233                 __enter__() | Booster allocation start
2023-05-31 15:06:51,149 | _native.py           141                 native_log() | Entered CreateBooster: rng=0x557088054f90, dataSet=0x5570891c2e20, bag=0x55708887c860, initScores=(nil), countTerms=91, dimensionCounts=0x557088712150, featureIndexes=0x5570886e6150, countInnerBags=0, isDifferentiallyPrivate=false, objective=0x2ab6e8870530, experimentalParams=(nil), boosterHandleOut=0x2ab6f1aa4ac0
2023-05-31 15:06:51,149 | _native.py           141                 native_log() | Entered BoosterCore::Create
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | BoosterCore::Create starting feature processing
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | BoosterCore::Create done feature processing
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | BoosterCore::Create starting feature group processing
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Entered Term::AllocateTerms
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Exited Term::AllocateTerms
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | BoosterCore::Create finished feature group processing
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Entered InnerBag::GenerateInnerBags
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Entered InnerBag::GenerateFlatInnerBag
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Exited InnerBag::GenerateFlatInnerBag
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Exited InnerBag::GenerateInnerBags
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Entered Objective::CreateObjective
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Entered Registrable::CreateRegistrable
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Exited Registrable::CreateRegistrable
2023-05-31 15:06:51,150 | _native.py           141                 native_log() | Exited Objective::CreateObjective
paulbkoch commented 1 year ago

Thanks @ricardobarroslourenco -- Hmm... this log entry here is indicating that it's still using the RELEASE build:

2023-05-31 15:06:50,004 | _native.py 137 native_log() | Native logging set to INFO in RELEASE build.

Can you verify that your script has this line (with native_debug set to True), and that debug_mode is at the top of the script before any other calls to interpret?

debug_mode(log_filename='log.txt', log_level='INFO', native_debug=True)
ricardobarroslourenco commented 1 year ago

Yes. It has this exact line you provided.

When you talk about the RELEASE build, is it related to the binaries provided in the conga-forge repo? Would it mean to be a development version?

ricardobarroslourenco commented 1 year ago

Just to complement, my conda env is as follows:

(base) Apptainer> conda list --explicit
# This file may be used to create an environment using:
# $ conda create --name <env> --file <this file>
# platform: linux-64
@EXPLICIT
https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/_py-xgboost-mutex-2.0-cpu_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda
https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.2.0-h337968e_19.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.2.0-h46fd767_19.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-mpich.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-3_cp311.conda
https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.2.0-h69a702a_19.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.2.0-h65d4601_19.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.2.0-h65d4601_19.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.8.19-hd590300_0.conda
https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda
https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.0-hd590300_0.conda
https://conda.anaconda.org/conda-forge/linux-64/fmt-9.1.0-h924138e_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/freexl-1.0.6-h166bdaf_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/geos-3.11.2-hcb278e6_0.conda
https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda
https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/icu-72.1-hcb278e6_0.conda
https://conda.anaconda.org/conda-forge/linux-64/json-c-0.16-hc379101_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.2-cxx17_h59595ed_2.conda
https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.18-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libebm-0.4.1-h59595ed_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-2.1.5.1-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_3.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libuv-1.44.2-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.0-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libxgboost-1.7.4-cpu_h6e95104_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda
https://conda.anaconda.org/conda-forge/linux-64/mpich-4.1.1-h846660c_100.conda
https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda
https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.0-hd590300_3.conda
https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda
https://conda.anaconda.org/conda-forge/linux-64/re2-2023.03.02-h8c504da_0.conda
https://conda.anaconda.org/conda-forge/linux-64/reproc-14.2.4-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda
https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023c-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.38-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/yaml-cpp-0.7.0-h27087fc_2.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.0-h27087fc_3.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.0.7-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.5.26-hf677bf3_1.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.16-hbad4bc6_7.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.9-hbad4bc6_2.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.14-hbad4bc6_7.conda
https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h501b40f_6.conda
https://conda.anaconda.org/conda-forge/linux-64/libavif-0.11.1-hff004cb_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libcap-2.67-he9d0100_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-h3358134_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libllvm14-14.0.6-hcd5def8_2.conda
https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda
https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h0d5128d_13.conda
https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.23-h3eb15da_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.10.0-hf14f497_3.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.11.4-h0d562d8_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libzip-1.9.2-hc929e4a_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-hf1915f5_2.conda
https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
https://conda.anaconda.org/conda-forge/linux-64/reproc-cpp-14.2.4-hcb278e6_0.conda
https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.44-h06160fa_0.conda
https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.1-hf587318_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda
https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.21-h9fef7b8_5.conda
https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.4-h0f2a231_0.conda
https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.78.0-h6582d0a_3.conda
https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.9.2-hb4ffafa_0.conda
https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda
https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.6.2-h039dbb9_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.54.2-hb20ce57_2.conda
https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-h5cf9203_2.conda
https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.18.1-h8fd135c_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-ha587672_6.conda
https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h5d7e998_3.conda
https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hca2cd23_2.conda
https://conda.anaconda.org/conda-forge/linux-64/nodejs-18.15.0-h4abf6b9_1.conda
https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda
https://conda.anaconda.org/conda-forge/linux-64/orc-1.8.3-hfdbbad2_0.conda
https://conda.anaconda.org/conda-forge/linux-64/python-3.11.3-h2755cc3_0_cpython.conda
https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.42.0-h2c6b66d_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.4-h8ee46fc_1.conda
https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.2.20-hb4b372c_7.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.7-h2632f9a_4.conda
https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
https://conda.anaconda.org/conda-forge/noarch/blinker-1.6.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/boltons-23.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-2.1.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/click-8.1.3-unix_pyhd8ed1ab_2.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/cloudpickle-2.2.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/cycler-0.11.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.7-py311hcafe171_0.conda
https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/dill-0.3.6-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/flit-core-3.9.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda
https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.3.3-py311hd4cff14_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/fsspec-2023.5.0-pyh1a96a4e_0.conda
https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.3-hfc55251_0.conda
https://conda.anaconda.org/conda-forge/linux-64/greenlet-2.0.2-py311hb755f60_1.conda
https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/interpret-core-0.4.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/itsdangerous-2.1.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/json5-0.9.5-pyh9f0ad1d_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/jsonpointer-2.0-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/kiwisolver-1.4.4-py311h4dd048b_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-haa2dc70_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h9986a30_2.conda
https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda
https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h37653c0_1015.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda
https://conda.anaconda.org/conda-forge/noarch/littleutils-0.2.2-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/llvmlite-0.40.0-py311ha6695c7_0.conda
https://conda.anaconda.org/conda-forge/noarch/locket-1.0.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/lz4-4.3.2-py311h9f220a4_0.conda
https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.2-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/mistune-2.0.5-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/msgpack-python-1.0.5-py311ha3edf6b_0.conda
https://conda.anaconda.org/conda-forge/linux-64/multidict-6.0.4-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.3-py311h64a7726_0.conda
https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.0-hfec8fc6_2.conda
https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/param-1.13.0-pyh1a96a4e_0.conda
https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pluggy-1.0.0-pyhd8ed1ab_5.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/ply-3.11-py_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pox-0.3.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pycosat-0.6.4-py311hd4cff14_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pygments-2.15.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pyrsistent-0.19.3-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/noarch/pyshp-2.3.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.17.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/python-utils-3.5.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py311hd4cff14_5.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.0.2-py311hd6ccaeb_0.conda
https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.7-py311h2582759_1.conda
https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda
https://conda.anaconda.org/conda-forge/noarch/setuptools-65.6.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/simpervisor-1.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/slicer-0.0.7-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/tblib-1.7.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/threadpoolctl-3.1.0-pyh8a188c0_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/tornado-6.3.2-py311h459d7ec_0.conda
https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.6.2-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.5.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/wheel-0.40.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda
https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/xyzservices-2023.5.0-pyhd8ed1ab_1.conda
https://conda.anaconda.org/conda-forge/noarch/zict-3.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/zipp-3.15.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/anyio-3.7.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.6.27-he072965_1.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.8.11-h2282364_1.conda
https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda
https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.4-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-h9c3ff4c_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-hbbf8b49_1016.conda
https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py311h409f033_3.conda
https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.2.0-hd9d235c_0.conda
https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.2-py311h4c7f6c3_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/colorspacious-1.1.2-pyh24bf2e0_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/comm-0.1.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.0.7-py311ha3edf6b_0.conda
https://conda.anaconda.org/conda-forge/linux-64/curl-8.1.2-h409715c_0.conda
https://conda.anaconda.org/conda-forge/linux-64/cytoolz-0.12.0-py311hd4cff14_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.39.4-py311h459d7ec_0.conda
https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.3-hfc55251_0.conda
https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.0-mpi_mpich_hcccbd3f_3.conda
https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.6.0-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.12.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jedi-0.18.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/joblib-1.2.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/jsonpatch-1.32-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h7634d5b_2.conda
https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.10.1-hac9eb74_1.conda
https://conda.anaconda.org/conda-forge/linux-64/libmamba-1.4.2-hcea66bb_0.conda
https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-2.2.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/multipledispatch-0.6.0-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.14-py311hd4cff14_3.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/munch-3.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/numba-0.57.0-py311h96b013e_0.conda
https://conda.anaconda.org/conda-forge/noarch/overrides-7.3.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/partd-1.4.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pillow-9.5.0-py311h0b84326_1.conda
https://conda.anaconda.org/conda-forge/noarch/pip-23.1.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/plotly-5.14.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/postgresql-15.3-hd458b1d_1.conda
https://conda.anaconda.org/conda-forge/noarch/ppft-1.7.6.6-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/progressbar2-4.2.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/proj-9.2.0-h8ffa02c_0.conda
https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_4.conda
https://conda.anaconda.org/conda-forge/noarch/pyct-core-0.4.6-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pyviz_comms-2.3.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.4.1-py311hcb2cf0a_0.conda
https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.17.30-py311h459d7ec_0.conda
https://conda.anaconda.org/conda-forge/linux-64/shapely-2.0.1-py311h54d622a_1.conda
https://conda.anaconda.org/conda-forge/linux-64/sip-6.7.9-py311hb755f60_0.conda
https://conda.anaconda.org/conda-forge/noarch/snuggs-1.4.7-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda
https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/tqdm-4.65.0-pyhd8ed1ab_1.conda
https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.6.2-hd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/werkzeug-2.3.4-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.4-h8d71039_2.conda
https://conda.anaconda.org/conda-forge/linux-64/yarl-1.9.2-py311h459d7ec_0.conda
https://conda.anaconda.org/conda-forge/noarch/zope.event-4.6-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/zope.interface-6.0-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311hd4cff14_3.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.3.0-hcb5a9b2_2.conda
https://conda.anaconda.org/conda-forge/linux-64/cryptography-40.0.2-py311h9b4c7bb_0.conda
https://conda.anaconda.org/conda-forge/noarch/datashape-0.5.4-py_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/flask-2.3.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h480ec47_8.conda
https://conda.anaconda.org/conda-forge/linux-64/gevent-22.10.2-py311h919b29c_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.3-h977cf35_1.conda
https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-7.3.0-hdb3a94d_0.conda
https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2023.1.23-py311hd374d05_2.conda
https://conda.anaconda.org/conda-forge/noarch/imageio-2.28.1-pyh24c5eb1_0.conda
https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.6.0-hd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.17.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.1-h3845be2_3.conda
https://conda.anaconda.org/conda-forge/linux-64/libmambapy-1.4.2-py311h1f88262_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h6e9ae28_5.conda
https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.0.1-hb46c372_26.conda
https://conda.anaconda.org/conda-forge/noarch/markdown-3.4.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/matplotlib-base-3.7.1-py311h8597a09_0.conda
https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.3.5-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/pandas-2.0.2-py311h320fe9a_0.conda
https://conda.anaconda.org/conda-forge/noarch/pathos-0.3.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.5.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/poppler-23.05.0-hd18248d_1.conda
https://conda.anaconda.org/conda-forge/linux-64/pyproj-3.5.0-py311h1850bce_1.conda
https://conda.anaconda.org/conda-forge/linux-64/pyqt5-sip-12.11.0-py311hcafe171_3.conda
https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.13.2-hd532e3d_0.conda
https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.19.0-py311hbe0fcd7_1.conda
https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.8.4-py311h2582759_0.conda
https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.20.2-he0fdcb3_0.conda
https://conda.anaconda.org/conda-forge/noarch/bokeh-3.1.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/cmocean-3.0.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/conda-package-streaming-0.8.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/dash-2.9.3-pyhd8ed1ab_2.conda
https://conda.anaconda.org/conda-forge/noarch/dask-core-2023.5.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/geopandas-base-0.13.0-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.3-h938bd60_1.conda
https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.3.0-py311h38be061_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.6.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.7.0-h9f4e061_1.conda
https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_ha6bb14d_0.conda
https://conda.anaconda.org/conda-forge/linux-64/netcdf4-1.6.3-nompi_py311h1717473_102.conda
https://conda.anaconda.org/conda-forge/noarch/outdated-0.2.2-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/parallelio-2.5.10-mpi_mpich_h0b4b548_102.conda
https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda
https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.38-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/noarch/pyct-0.4.6-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/pyopenssl-23.1.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.4.12-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/xarray-2023.5.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.10.57-h059227d_13.conda
https://conda.anaconda.org/conda-forge/noarch/cf_xarray-0.8.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/colorcet-3.0.1-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.0.2-pyh38be061_0.conda
https://conda.anaconda.org/conda-forge/noarch/dash-core-components-2.0.0-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/dash-html-components-2.0.0-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/dash-table-5.0.0-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/dash_cytoscape-0.2.0-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/distributed-2023.5.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/esmf-8.4.2-mpi_mpich_h742b71d_100.conda
https://conda.anaconda.org/conda-forge/linux-64/gdal-3.7.0-py311h281082f_1.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.2.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/nbformat-5.8.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pandas-flavor-0.2.0-py_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/panel-1.0.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.38-hd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h01ceb2d_13.conda
https://conda.anaconda.org/conda-forge/linux-64/rasterio-1.3.7-py311h138ec3c_1.conda
https://conda.anaconda.org/conda-forge/linux-64/scipy-1.10.1-py311h64a7726_3.conda
https://conda.anaconda.org/conda-forge/linux-64/cartopy-0.21.1-py311hd88b842_1.conda
https://conda.anaconda.org/conda-forge/linux-64/conda-23.3.1-py311h38be061_0.conda
https://conda.anaconda.org/conda-forge/noarch/datashader-0.14.4-pyh1a96a4e_0.conda
https://conda.anaconda.org/conda-forge/noarch/esmpy-8.4.2-pyhc1e730c_1.conda
https://conda.anaconda.org/conda-forge/linux-64/fiona-1.9.4-py311hbac4ec9_0.conda
https://conda.anaconda.org/conda-forge/noarch/holoviews-1.16.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/ipython-8.13.2-pyh41d4057_0.conda
https://conda.anaconda.org/conda-forge/linux-64/libarrow-12.0.0-h96638e8_3_cpu.conda
https://conda.anaconda.org/conda-forge/noarch/nbclient-0.8.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/patsy-0.5.3-pyhd8ed1ab_0.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/pyqt-5.15.7-py311ha74522f_3.conda
https://conda.anaconda.org/conda-forge/noarch/rioxarray-0.14.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/salib-1.4.7-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.20.0-py311h2872171_1.conda
https://conda.anaconda.org/conda-forge/linux-64/scikit-learn-1.2.2-py311hc009520_2.conda
https://conda.anaconda.org/conda-forge/noarch/seaborn-base-0.12.2-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/sparse-0.14.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/cartopy_offlinedata-0.21.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/geoviews-core-1.10.0-pyha770c72_0.conda
https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.23.1-pyh210e3f2_0.conda
https://conda.anaconda.org/conda-forge/noarch/lime-0.2.0.1-pyhd8ed1ab_1.tar.bz2
https://conda.anaconda.org/conda-forge/linux-64/mamba-1.4.2-py311h3072747_0.conda
https://conda.anaconda.org/conda-forge/linux-64/matplotlib-3.7.1-py311h38be061_0.conda
https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.4.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/py-xgboost-1.7.4-cpu_py311h4b67847_0.conda
https://conda.anaconda.org/conda-forge/linux-64/pyarrow-12.0.0-py311hdf9aeb4_3_cpu.conda
https://conda.anaconda.org/conda-forge/linux-64/shap-0.41.0-py311h320fe9a_1.conda
https://conda.anaconda.org/conda-forge/linux-64/statsmodels-0.14.0-py311h1f0f07a_1.conda
https://conda.anaconda.org/conda-forge/noarch/treeinterpreter-0.2.2-pyh9f0ad1d_0.tar.bz2
https://conda.anaconda.org/conda-forge/noarch/xesmf-0.7.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/dask-2023.5.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/geoviews-1.10.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/interpret-0.4.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.6.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/seaborn-0.12.2-hd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/linux-64/xgboost-1.7.4-cpu_py311h4b67847_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyter-server-proxy-4.0.0-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.22.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/pingouin-0.5.3-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.1-pyhd8ed1ab_0.conda
https://conda.anaconda.org/conda-forge/noarch/dask-labextension-6.1.0-pyhd8ed1ab_0.conda
paulbkoch commented 1 year ago

Ah, that's it. You're right, the conda-forge build does not include the DEBUG binaries that we include on PyPI.

ricardobarroslourenco commented 1 year ago

I see. Are there any issues on using the conda binaries?

paulbkoch commented 1 year ago

Not that I know of. We don't include the debug binaries in conda-forge due to the different way they package things, but the debug binaries are purely for debugging purposes, so it shouldn't impact typical use.

I'm going to try replicating this error on a conda-forge installation. I haven't tried that yet.

paulbkoch commented 1 year ago

I can repro the error! I can take it from here and will let you know what I find.

ricardobarroslourenco commented 1 year ago

Great @paulbkoch ! Please tag me here if you find out what is going on. I will probably try to build my environment with previous conda-forge releases to see if I can make it pass (as it was previously working).

paulbkoch commented 1 year ago

Hi @ricardobarroslourenco -- I'm pretty sure I know what the problem is. It should only affect the conda build. I'll put out a new release shortly fixing the issue.

Thanks for all your help!!

paulbkoch commented 1 year ago

Hi @ricardobarroslourenco -- Interpret v0.4.2 is out on conda-forge. I've tested it on your dataset and everything seems to work fine now. Please let us know if it works for you as well.

ricardobarroslourenco commented 1 year ago

That's great @paulbkoch . The SEGFAULT error got removed :) I have got another problem, but I will probably address it on a separate issue. Thanks a lot!