<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blog of Mucun</title>
    <link>/authors/admin/</link>
      <atom:link href="/authors/admin/index.xml" rel="self" type="application/rss+xml" />
    <description>Blog of Mucun</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><lastBuildDate>Thu, 06 Aug 2020 00:00:00 +0000</lastBuildDate>
    <image>
      <url>/img/icon-192.png</url>
      <title>Blog of Mucun</title>
      <link>/authors/admin/</link>
    </image>
    
    <item>
      <title>A Data-driven Method for Adaptive Reserve Requirements Estimation via Probabilistic Net Load Forecasting (Submitted)</title>
      <link>/publication/prob_netload/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>/publication/prob_netload/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Conditional Aggregated Probabilistic Load Forecasting based on Deep Spatio-temporal Analysis (Submitted)</title>
      <link>/publication/aggregated_load/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>/publication/aggregated_load/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Data-Driven Probabilistic Anomaly Detection for Electricity Market under Cyber Attacks (Submitted)</title>
      <link>/publication/anomaly_detection/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>/publication/anomaly_detection/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Multi-Distribution Ensemble Probabilistic Wind Power Forecasting</title>
      <link>/publication/ensemble/</link>
      <pubDate>Thu, 28 Nov 2019 00:00:00 +0000</pubDate>
      <guid>/publication/ensemble/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Advanced Machine Learning Applications to the Modern Power Systems</title>
      <link>/publication/aipowersystem/</link>
      <pubDate>Wed, 16 Oct 2019 00:00:00 +0000</pubDate>
      <guid>/publication/aipowersystem/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Factoring Behind-the-Meter Solar into Load Forecasting: Case Studies under Extreme Weather</title>
      <link>/publication/behind/</link>
      <pubDate>Tue, 08 Oct 2019 00:00:00 +0000</pubDate>
      <guid>/publication/behind/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Conditional Aggregated Probabilistic Wind Power Forecasting Based on Spatio-Temporal Correlation</title>
      <link>/publication/conditional/</link>
      <pubDate>Tue, 01 Oct 2019 00:00:00 +0000</pubDate>
      <guid>/publication/conditional/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Reinforced Deterministic and Probabilistic Load Forecasting via Q-Learning Dynamic Model Selection</title>
      <link>/publication/reinforcementlearning/</link>
      <pubDate>Sun, 01 Sep 2019 00:00:00 +0000</pubDate>
      <guid>/publication/reinforcementlearning/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Aggregated Probabilistic Wind Power Forecasting Based on Spatio-Temporal Correlation</title>
      <link>/publication/aggregated/</link>
      <pubDate>Thu, 01 Aug 2019 00:00:00 +0000</pubDate>
      <guid>/publication/aggregated/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Display Jupyter Notebooks with Academic</title>
      <link>/post/jupyter/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      <guid>/post/jupyter/</guid>
      <description>

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;from IPython.core.display import Image
Image(&#39;https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png&#39;)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;img src=&#34;./index_1_0.png&#34; alt=&#34;png&#34; /&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;print(&amp;quot;Welcome to Academic!&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;code&gt;Welcome to Academic!
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;install-python-and-jupyterlab&#34;&gt;Install Python and JupyterLab&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://www.anaconda.com/distribution/#download-section&#34; target=&#34;_blank&#34;&gt;Install Anaconda&lt;/a&gt; which includes Python 3 and JupyterLab.&lt;/p&gt;

&lt;p&gt;Alternatively, install JupyterLab with &lt;code&gt;pip3 install jupyterlab&lt;/code&gt;.&lt;/p&gt;

&lt;h2 id=&#34;create-or-upload-a-jupyter-notebook&#34;&gt;Create or upload a Jupyter notebook&lt;/h2&gt;

&lt;p&gt;Run the following commands in your Terminal, substituting &lt;code&gt;&amp;lt;MY-WEBSITE-FOLDER&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;SHORT-POST-TITLE&amp;gt;&lt;/code&gt; with the file path to your Academic website folder and a short title for your blog post (use hyphens instead of spaces), respectively:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;mkdir -p &amp;lt;MY-WEBSITE-FOLDER&amp;gt;/content/post/&amp;lt;SHORT-POST-TITLE&amp;gt;/
cd &amp;lt;MY-WEBSITE-FOLDER&amp;gt;/content/post/&amp;lt;SHORT-POST-TITLE&amp;gt;/
jupyter lab index.ipynb
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The &lt;code&gt;jupyter&lt;/code&gt; command above will launch the JupyterLab editor, allowing us to add Academic metadata and write the content.&lt;/p&gt;

&lt;h2 id=&#34;edit-your-post-metadata&#34;&gt;Edit your post metadata&lt;/h2&gt;

&lt;p&gt;The first cell of your Jupter notebook will contain your post metadata (&lt;a href=&#34;https://sourcethemes.com/academic/docs/front-matter/&#34; target=&#34;_blank&#34;&gt;front matter&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;In Jupter, choose &lt;em&gt;Markdown&lt;/em&gt; as the type of the first cell and wrap your Academic metadata in three dashes, indicating that it is YAML front matter:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;---
title: My post&#39;s title
date: 2019-09-01

# Put any other Academic metadata here...
---
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Edit the metadata of your post, using the &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content&#34; target=&#34;_blank&#34;&gt;documentation&lt;/a&gt; as a guide to the available options.&lt;/p&gt;

&lt;p&gt;To set a &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#featured-image&#34; target=&#34;_blank&#34;&gt;featured image&lt;/a&gt;, place an image named &lt;code&gt;featured&lt;/code&gt; into your post&amp;rsquo;s folder.&lt;/p&gt;

&lt;p&gt;For other tips, such as using math, see the guide on &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;writing content with Academic&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&#34;convert-notebook-to-markdown&#34;&gt;Convert notebook to Markdown&lt;/h2&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter nbconvert index.ipynb --to markdown --NbConvertApp.output_files_dir=.
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;

&lt;p&gt;This post was created with Jupyter. The orginal files can be found at &lt;a href=&#34;https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter&#34; target=&#34;_blank&#34;&gt;https://github.com/gcushen/hugo-academic/tree/master/exampleSite/content/post/jupyter&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A Two-Step Short-Term Probabilistic Wind Forecasting Methodology Based on Predictive Distribution Optimization</title>
      <link>/publication/predictive_distribution/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>/publication/predictive_distribution/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Characterizing Forecastability of Wind Sites in the United States</title>
      <link>/publication/characteristic/</link>
      <pubDate>Wed, 01 Aug 2018 00:00:00 +0000</pubDate>
      <guid>/publication/characteristic/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Probabilistic Short-term Wind Forecasting Based on Pinball Loss Optimization</title>
      <link>/publication/pinball_loss_optimization/</link>
      <pubDate>Sun, 24 Jun 2018 00:00:00 +0000</pubDate>
      <guid>/publication/pinball_loss_optimization/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Grid Optimization of Shared Energy Storage Among Wind Farms Based on Wind Forecasting</title>
      <link>/publication/shared_energy_storage-copy/</link>
      <pubDate>Mon, 16 Apr 2018 00:00:00 +0000</pubDate>
      <guid>/publication/shared_energy_storage-copy/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Break-even Analysis of Battery Energy Storage in Building Considering Time-of-Use Rates (Best Paper Award)</title>
      <link>/publication/break-even/</link>
      <pubDate>Wed, 04 Apr 2018 00:00:00 +0000</pubDate>
      <guid>/publication/break-even/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Academic: the website builder for Hugo</title>
      <link>/post/getting-started/</link>
      <pubDate>Wed, 20 Apr 2016 00:00:00 +0000</pubDate>
      <guid>/post/getting-started/</guid>
      <description></description>
    </item>
    
    <item>
      <title>A Reverse Current Tracking Based LVRT Strategy for Doubly Fed Induction Generator (DFIG)</title>
      <link>/publication/reverse_current_control/</link>
      <pubDate>Tue, 16 Apr 2013 00:00:00 +0000</pubDate>
      <guid>/publication/reverse_current_control/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Design of the Motor Simulating System Based Power Electrical Load</title>
      <link>/publication/designofmotor/</link>
      <pubDate>Tue, 01 Jan 2013 00:00:00 +0000</pubDate>
      <guid>/publication/designofmotor/</guid>
      <description></description>
    </item>
    
  </channel>
</rss>
