<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Chris Aridas</title>
    <description>The latest articles on DEV Community by Chris Aridas (@chkoar).</description>
    <link>https://dev.to/chkoar</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F188051%2F3aaf307a-f312-4fb8-a001-6b67d1f1b2f3.png</url>
      <title>DEV Community: Chris Aridas</title>
      <link>https://dev.to/chkoar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chkoar"/>
    <language>en</language>
    <item>
      <title> imbalanced-learn 0.7.0 is out </title>
      <dc:creator>Chris Aridas</dc:creator>
      <pubDate>Tue, 16 Jun 2020 02:24:53 +0000</pubDate>
      <link>https://dev.to/chkoar/imbalanced-learn-0-7-0-is-out-1o8</link>
      <guid>https://dev.to/chkoar/imbalanced-learn-0-7-0-is-out-1o8</guid>
      <description>&lt;p&gt;imbalanced-learn, probably, is your favorite python package that offers a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance.&lt;/p&gt;

&lt;p&gt;This is release should be be fully compatible with the latest version of &lt;code&gt;scikit-learn&lt;/code&gt;. &lt;/p&gt;

&lt;h3&gt;
  
  
  Maintenance
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Pipelines can cope with older versions of &lt;code&gt;joblib&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Common tests have been refactored.&lt;/li&gt;
&lt;li&gt;Feature warnings have been removed.&lt;/li&gt;
&lt;li&gt;Imposing keywords only arguments as in &lt;code&gt;scikit-learn&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Changed models
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;imblearn.ensemble.BalancedRandomForestClassifier&lt;/code&gt; is expected to give different results for the same input (using the same random state).&lt;/li&gt;
&lt;li&gt;Fix &lt;code&gt;make_index_balanced_accuracy&lt;/code&gt; which was unusable due to the latest version of &lt;code&gt;scikit-learn&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Raise a proper error message when only numerical or categorical features are given in &lt;code&gt;imblearn.over_sampling.SMOTENC&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Fix a bug when the median of the standard deviation is null in &lt;code&gt;imblearn.over_sampling.SMOTENC&lt;/code&gt;. &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Bug fixes
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;min_samples_leaf&lt;/code&gt; default value has been changed to be consistent with &lt;code&gt;scikit-learn&lt;/code&gt;
### Enhancements
&lt;/li&gt;
&lt;li&gt;The classifier implemented in imbalanced-learn, &lt;code&gt;imblearn.ensemble.BalancedBaggingClassifier&lt;/code&gt;, &lt;code&gt;imblearn.ensemble.BalancedRandomForestClassifier&lt;/code&gt;, &lt;code&gt;imblearn.ensemble.EasyEnsembleClassifier&lt;/code&gt;, and &lt;code&gt;imblearn.ensemble.RUSBoostClassifier&lt;/code&gt;, accept &lt;code&gt;sampling_strategy&lt;/code&gt; with the same key than in y without the need of encoding y in advance.&lt;/li&gt;
&lt;li&gt;Import &lt;code&gt;keras&lt;/code&gt; module lazily.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;

&lt;p&gt;You can install it either by using pip&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install imbalanced-learn -U
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or by using the conda package manager&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;conda update imbalanced-learn
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The changelog can be found &lt;a href="http://imbalanced-learn.org/stable/whats_new.html#version-0-7"&gt;here&lt;/a&gt;, while installation instructions, API documentation, examples and a user guide can be found &lt;a href="http://imbalanced-learn.org/stable/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy hacking,&lt;br&gt;
Chris&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>datascience</category>
    </item>
    <item>
      <title>imbalanced-learn 0.5.0 is out</title>
      <dc:creator>Chris Aridas</dc:creator>
      <pubDate>Sat, 29 Jun 2019 15:02:49 +0000</pubDate>
      <link>https://dev.to/chkoar/imbalanced-learn-0-5-0-is-out-4p3o</link>
      <guid>https://dev.to/chkoar/imbalanced-learn-0-5-0-is-out-4p3o</guid>
      <description>&lt;p&gt;imbalanced-learn is your favorite python package that offers a number of re-sampling techniques commonly used in datasets showing strong between-class imbalance.&lt;/p&gt;

&lt;p&gt;This is a small release that contains mostly bug fixes and is already available via pip and conda!&lt;/p&gt;

&lt;p&gt;You can install it either by using pip&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install imbalanced-learn -U
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or by using the conda package manager&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;conda update imbalanced-learn
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The changelog can be found &lt;a href="http://imbalanced-learn.org/en/stable/whats_new.html#version-0-5"&gt;here&lt;/a&gt;, while installation instructions, API documentation, examples and a user guide can be found &lt;a href="http://imbalanced-learn.org/en/stable/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy hacking,&lt;br&gt;
Chris&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
