Skip to content

Commit

Permalink
deploy: 7c1ea72
Browse files Browse the repository at this point in the history
  • Loading branch information
HYLcool committed Oct 16, 2023
1 parent 1fef0de commit 4f5cd62
Show file tree
Hide file tree
Showing 104 changed files with 1,724 additions and 1,381 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ba986cc40075a47c0b766fcda6a61ae4
config: d12e13dcdf1e8a0872e01cb8a7af3cff
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified .doctrees/data_juicer.analysis.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.config.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.core.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.format.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.common.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.deduplicator.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.filter.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.mapper.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.ops.selector.doctree
Binary file not shown.
Binary file modified .doctrees/data_juicer.utils.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/index.doctree
Binary file not shown.
Binary file modified .doctrees/modules.doctree
Binary file not shown.
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion README.md

This file was deleted.

14 changes: 8 additions & 6 deletions _modules/data_juicer/analysis/column_wise_analysis.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>data_juicer.analysis.column_wise_analysis &mdash; data_juicer 0.1.0 documentation</title>
<title>data_juicer.analysis.column_wise_analysis &mdash; data_juicer 0.1.2 documentation</title>
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
<![endif]-->

<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js"></script>
<script src="../../../_static/doctools.js"></script>
<script src="../../../_static/sphinx_highlight.js"></script>
<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js?v=b0099a1c"></script>
<script src="../../../_static/doctools.js?v=888ff710"></script>
<script src="../../../_static/sphinx_highlight.js?v=4825356b"></script>
<script src="../../../_static/js/theme.js"></script>
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
Expand All @@ -30,7 +30,7 @@
data_juicer
</a>
<div class="version">
0.1.0
0.1.2
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../../../search.html" method="get">
Expand Down Expand Up @@ -75,6 +75,8 @@ <h1>Source code for data_juicer.analysis.column_wise_analysis</h1><div class="hi
<span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="k">as</span> <span class="nn">plt</span>
<span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span>

<span class="kn">from</span> <span class="nn">data_juicer.utils.constant</span> <span class="kn">import</span> <span class="n">Fields</span>

<span class="kn">from</span> <span class="nn">.overall_analysis</span> <span class="kn">import</span> <span class="n">OverallAnalysis</span>


Expand Down Expand Up @@ -135,7 +137,7 @@ <h1>Source code for data_juicer.analysis.column_wise_analysis</h1><div class="hi
<span class="sd"> :param save_stats_in_one_file: whether save all analysis figures of all</span>
<span class="sd"> stats into one image file</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="bp">self</span><span class="o">.</span><span class="n">stats</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">(</span><span class="n">dataset</span><span class="p">[</span><span class="s1">&#39;stats&#39;</span><span class="p">])</span>
<span class="bp">self</span><span class="o">.</span><span class="n">stats</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">(</span><span class="n">dataset</span><span class="p">[</span><span class="n">Fields</span><span class="o">.</span><span class="n">stats</span><span class="p">])</span>
<span class="bp">self</span><span class="o">.</span><span class="n">output_path</span> <span class="o">=</span> <span class="n">output_path</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">exists</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">output_path</span><span class="p">):</span>
<span class="n">os</span><span class="o">.</span><span class="n">makedirs</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">output_path</span><span class="p">)</span>
Expand Down
Loading

0 comments on commit 4f5cd62

Please sign in to comment.