Skip to content

Commit 3fbe34f

Browse files
author
drinkingkazu
committed
updated
1 parent dc5e2a7 commit 3fbe34f

10 files changed

+2628
-74
lines changed

content/tutorial_summary.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,8 @@ These are tutorial notebooks that actually train a toy algorithm for available o
5757
* Semantic segmentation inference
5858
* coming soon
5959

60-
## **LArCV** <a name="larcv"></a>
61-
Coming soon
60+
## <a name="larcv"></a> **LArCV**
61+
[Quick Start](#quickstart) serves as an introduction to LArCV. You can checkout the [repository's wiki](https://github.com/DeepLearnPhysics/larcv2/wiki) for more through guidance. Below you find some notebooks that are referred to in the wiki (but you can also just browse through here, if you want to!).
62+
63+
* [Accessing file contents using IOManager](tutorials/tutorial-07.html)
64+
* LArCV's dedicated IO interface

static/tutorials/tutorial-00.html

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/pygments/github.min.css">
99
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/font-awesome/css/font-awesome.min.css">
1010

11-
<!-- script is a local library -->
12-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css" rel="stylesheet">
13-
14-
<!--
15-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/[u'kazunotebook.css']" rel="stylesheet">
16-
-->
17-
1811

1912

2013

@@ -33,11 +26,11 @@
3326
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
3427

3528
<meta name="author" content="Corey Adams" />
36-
<meta name="description" content="This post covers the very basics of how to use a Jupyter notebook. If you're already somewhat familiar with it, you can check this link for more comprehensive guide. The name "notebook" comes from the fact that it literally acts like a notebook where you write down your findings, formulas, etc.. It's awesome because you can "execute code" you wrote, or keep texts as just notes, "make comments", and "keep figures in place". Let's explore these basics." />
29+
<meta name="description" content="From larcv-tutorial/notebooks/tutorial00_jupyter.ipynb" />
3730
<meta name="keywords" content="">
3831
<meta property="og:site_name" content="DeepLearnPhysics Blog"/>
3932
<meta property="og:title" content="Tutorial 00: jupyter basics"/>
40-
<meta property="og:description" content="This post covers the very basics of how to use a Jupyter notebook. If you're already somewhat familiar with it, you can check this link for more comprehensive guide. The name "notebook" comes from the fact that it literally acts like a notebook where you write down your findings, formulas, etc.. It's awesome because you can "execute code" you wrote, or keep texts as just notes, "make comments", and "keep figures in place". Let's explore these basics."/>
33+
<meta property="og:description" content="From larcv-tutorial/notebooks/tutorial00_jupyter.ipynb"/>
4134
<meta property="og:locale" content="en_US"/>
4235
<meta property="og:url" content="http://deeplearnphysics.org/Blog/tutorial-00.html"/>
4336
<meta property="og:type" content="article"/>
@@ -47,6 +40,16 @@
4740
<meta property="article:section" content="misc"/>
4841
<meta property="og:image" content="profile.png">
4942

43+
44+
<!-- Default meta cards for twitter -->
45+
<meta name="twitter:card" content="summary">
46+
<meta name="twitter:site" content="@dlphysics">
47+
<meta name="twitter:creator" content="@dlphysics">
48+
<meta name="twitter:title" content="Tutorial 00: jupyter basics">
49+
<meta name="twitter:description" content="<p>From larcv-tutorial/notebooks/tutorial00_jupyter.ipynb</p>">
50+
<meta name="twitter:image" content="http://deeplearnphysics.org/Blog/theme/img/profile_small.png" />
51+
52+
5053
<title>DeepLearnPhysics Blog &ndash; Tutorial 00: jupyter basics</title>
5154
</head>
5255
<body>
@@ -61,6 +64,7 @@ <h1><a href="http://deeplearnphysics.org/Blog">Blog</a></h1>
6164

6265
<ul class="social">
6366
<li><a class="sc-home" href="http://deeplearnphysics.org" target="_blank"><i class="fa fa-home"></i></a></li>
67+
<li><a class="sc-twitter" href="https://twitter.com/dlphysics" target="_blank"><i class="fa fa-twitter"></i></a></li>
6468
<li><a class="sc-github" href="http://github.com/DeepLearnPhysics" target="_blank"><i class="fa fa-github"></i></a></li>
6569
</ul>
6670
</div>
@@ -85,10 +89,14 @@ <h1 id="tutorial-00">Tutorial 00: jupyter basics</h1>
8589
<p>
8690
Posted on Wed 06 December 2017 in <a href="http://deeplearnphysics.org/Blog/category/misc.html">misc</a>
8791

92+
by
8893

89-
</p>
94+
<a href="http://deeplearnphysics.org/Blog/author/corey-adams.html">Corey Adams</a>, <a href="http://deeplearnphysics.org/Blog/author/kazuhiro-terao.html">Kazuhiro Terao</a> </p>
9095
</header>
9196

97+
<!-- script is a local library -->
98+
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css">
99+
92100
<div>
93101
<style type="text/css">/*!
94102
*
@@ -1808,6 +1816,7 @@ <h2 id="Plotting-a-figure">Plotting a figure<a class="anchor-link" href="#Plotti
18081816
</script>
18091817

18101818
</div>
1819+
18111820
<div class="tag-cloud">
18121821
<p>
18131822
</p>

static/tutorials/tutorial-01.html

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/pygments/github.min.css">
99
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/font-awesome/css/font-awesome.min.css">
1010

11-
<!-- script is a local library -->
12-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css" rel="stylesheet">
13-
14-
<!--
15-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/[u'kazunotebook.css']" rel="stylesheet">
16-
-->
17-
1811

1912

2013

@@ -33,11 +26,11 @@
3326
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
3427

3528
<meta name="author" content="Kazuhiro Terao" />
36-
<meta name="description" content="We'll practice installing larcv on your local machine (laptop, server, etc.) manually. An alternative option is to use a container (harass Kazu to make that work). Requirement¶ ROOT v6.04.00 or later larcv has extensive python API made available through pyroot. To make sure you have pyroot installed, try:" />
29+
<meta name="description" content="From larcv-tutorial/notebooks/tutorial01_installation.ipynb" />
3730
<meta name="keywords" content="">
3831
<meta property="og:site_name" content="DeepLearnPhysics Blog"/>
3932
<meta property="og:title" content="Tutorial 01: larcv installation"/>
40-
<meta property="og:description" content="We'll practice installing larcv on your local machine (laptop, server, etc.) manually. An alternative option is to use a container (harass Kazu to make that work). Requirement¶ ROOT v6.04.00 or later larcv has extensive python API made available through pyroot. To make sure you have pyroot installed, try:"/>
33+
<meta property="og:description" content="From larcv-tutorial/notebooks/tutorial01_installation.ipynb"/>
4134
<meta property="og:locale" content="en_US"/>
4235
<meta property="og:url" content="http://deeplearnphysics.org/Blog/tutorial-01.html"/>
4336
<meta property="og:type" content="article"/>
@@ -47,6 +40,16 @@
4740
<meta property="article:section" content="misc"/>
4841
<meta property="og:image" content="profile.png">
4942

43+
44+
<!-- Default meta cards for twitter -->
45+
<meta name="twitter:card" content="summary">
46+
<meta name="twitter:site" content="@dlphysics">
47+
<meta name="twitter:creator" content="@dlphysics">
48+
<meta name="twitter:title" content="Tutorial 01: larcv installation">
49+
<meta name="twitter:description" content="<p>From larcv-tutorial/notebooks/tutorial01_installation.ipynb</p>">
50+
<meta name="twitter:image" content="http://deeplearnphysics.org/Blog/theme/img/profile_small.png" />
51+
52+
5053
<title>DeepLearnPhysics Blog &ndash; Tutorial 01: larcv installation</title>
5154
</head>
5255
<body>
@@ -61,6 +64,7 @@ <h1><a href="http://deeplearnphysics.org/Blog">Blog</a></h1>
6164

6265
<ul class="social">
6366
<li><a class="sc-home" href="http://deeplearnphysics.org" target="_blank"><i class="fa fa-home"></i></a></li>
67+
<li><a class="sc-twitter" href="https://twitter.com/dlphysics" target="_blank"><i class="fa fa-twitter"></i></a></li>
6468
<li><a class="sc-github" href="http://github.com/DeepLearnPhysics" target="_blank"><i class="fa fa-github"></i></a></li>
6569
</ul>
6670
</div>
@@ -85,10 +89,14 @@ <h1 id="tutorial-01">Tutorial 01: larcv installation</h1>
8589
<p>
8690
Posted on Wed 06 December 2017 in <a href="http://deeplearnphysics.org/Blog/category/misc.html">misc</a>
8791

92+
by
8893

89-
</p>
94+
<a href="http://deeplearnphysics.org/Blog/author/kazuhiro-terao.html">Kazuhiro Terao</a> </p>
9095
</header>
9196

97+
<!-- script is a local library -->
98+
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css">
99+
92100
<div>
93101
<style type="text/css">/*!
94102
*
@@ -1493,6 +1501,7 @@ <h2 id="Done!">Done!<a class="anchor-link" href="#Done!">&#182;</a></h2><p>Now y
14931501
</script>
14941502

14951503
</div>
1504+
14961505
<div class="tag-cloud">
14971506
<p>
14981507
</p>

static/tutorials/tutorial-02.html

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/pygments/github.min.css">
99
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/font-awesome/css/font-awesome.min.css">
1010

11-
<!-- script is a local library -->
12-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css" rel="stylesheet">
13-
14-
<!--
15-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/[u'kazunotebook.css']" rel="stylesheet">
16-
-->
17-
1811

1912

2013

@@ -33,11 +26,11 @@
3326
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
3427

3528
<meta name="author" content="Corey Adams" />
36-
<meta name="description" content="In this notebook we explore the content of example larcv data file. We assume you already set up larcv environment and cloned larcv-tutorial repository. If not, checkout our installation tutorial." />
29+
<meta name="description" content="From larcv-tutorial/notebooks/tutorial02_datafile.ipynb" />
3730
<meta name="keywords" content="">
3831
<meta property="og:site_name" content="DeepLearnPhysics Blog"/>
3932
<meta property="og:title" content="Tutorial 02: larcv data file"/>
40-
<meta property="og:description" content="In this notebook we explore the content of example larcv data file. We assume you already set up larcv environment and cloned larcv-tutorial repository. If not, checkout our installation tutorial."/>
33+
<meta property="og:description" content="From larcv-tutorial/notebooks/tutorial02_datafile.ipynb"/>
4134
<meta property="og:locale" content="en_US"/>
4235
<meta property="og:url" content="http://deeplearnphysics.org/Blog/tutorial-02.html"/>
4336
<meta property="og:type" content="article"/>
@@ -47,6 +40,16 @@
4740
<meta property="article:section" content="misc"/>
4841
<meta property="og:image" content="profile.png">
4942

43+
44+
<!-- Default meta cards for twitter -->
45+
<meta name="twitter:card" content="summary">
46+
<meta name="twitter:site" content="@dlphysics">
47+
<meta name="twitter:creator" content="@dlphysics">
48+
<meta name="twitter:title" content="Tutorial 02: larcv data file">
49+
<meta name="twitter:description" content="<p>From larcv-tutorial/notebooks/tutorial02_datafile.ipynb</p>">
50+
<meta name="twitter:image" content="http://deeplearnphysics.org/Blog/theme/img/profile_small.png" />
51+
52+
5053
<title>DeepLearnPhysics Blog &ndash; Tutorial 02: larcv data file</title>
5154
</head>
5255
<body>
@@ -61,6 +64,7 @@ <h1><a href="http://deeplearnphysics.org/Blog">Blog</a></h1>
6164

6265
<ul class="social">
6366
<li><a class="sc-home" href="http://deeplearnphysics.org" target="_blank"><i class="fa fa-home"></i></a></li>
67+
<li><a class="sc-twitter" href="https://twitter.com/dlphysics" target="_blank"><i class="fa fa-twitter"></i></a></li>
6468
<li><a class="sc-github" href="http://github.com/DeepLearnPhysics" target="_blank"><i class="fa fa-github"></i></a></li>
6569
</ul>
6670
</div>
@@ -85,10 +89,14 @@ <h1 id="tutorial-02">Tutorial 02: larcv data file</h1>
8589
<p>
8690
Posted on Wed 06 December 2017 in <a href="http://deeplearnphysics.org/Blog/category/misc.html">misc</a>
8791

92+
by
8893

89-
</p>
94+
<a href="http://deeplearnphysics.org/Blog/author/corey-adams.html">Corey Adams</a>, <a href="http://deeplearnphysics.org/Blog/author/kazuhiro-terao.html">Kazuhiro Terao</a> </p>
9095
</header>
9196

97+
<!-- script is a local library -->
98+
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css">
99+
92100
<div>
93101
<style type="text/css">/*!
94102
*
@@ -2491,6 +2499,7 @@ <h2 id="Particle:-simulation-information-for-labels">Particle: simulation inform
24912499
</script>
24922500

24932501
</div>
2502+
24942503
<div class="tag-cloud">
24952504
<p>
24962505
</p>

static/tutorials/tutorial-03.html

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/pygments/github.min.css">
99
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/font-awesome/css/font-awesome.min.css">
1010

11-
<!-- script is a local library -->
12-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css" rel="stylesheet">
13-
14-
<!--
15-
<link href="http://deeplearnphysics.org/Blog/theme/stylesheet/[u'kazunotebook.css']" rel="stylesheet">
16-
-->
17-
1811

1912

2013

@@ -33,11 +26,11 @@
3326
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
3427

3528
<meta name="author" content="Corey Adams" />
36-
<meta name="description" content="As an example, this notebook shows how to store 2D images in larcv data formats using image2d data product. How to store other form of data (2D/3D sparse data, clusters, etc.) would be a simple extension once you learn about this." />
29+
<meta name="description" content="From larcv-tutorial/notebooks/tutorial03_image_to_larcv.ipynb" />
3730
<meta name="keywords" content="">
3831
<meta property="og:site_name" content="DeepLearnPhysics Blog"/>
3932
<meta property="og:title" content="Tutorial 03: storing 2D image in larcv"/>
40-
<meta property="og:description" content="As an example, this notebook shows how to store 2D images in larcv data formats using image2d data product. How to store other form of data (2D/3D sparse data, clusters, etc.) would be a simple extension once you learn about this."/>
33+
<meta property="og:description" content="From larcv-tutorial/notebooks/tutorial03_image_to_larcv.ipynb"/>
4134
<meta property="og:locale" content="en_US"/>
4235
<meta property="og:url" content="http://deeplearnphysics.org/Blog/tutorial-03.html"/>
4336
<meta property="og:type" content="article"/>
@@ -47,6 +40,16 @@
4740
<meta property="article:section" content="misc"/>
4841
<meta property="og:image" content="profile.png">
4942

43+
44+
<!-- Default meta cards for twitter -->
45+
<meta name="twitter:card" content="summary">
46+
<meta name="twitter:site" content="@dlphysics">
47+
<meta name="twitter:creator" content="@dlphysics">
48+
<meta name="twitter:title" content="Tutorial 03: storing 2D image in larcv">
49+
<meta name="twitter:description" content="<p>From larcv-tutorial/notebooks/tutorial03_image_to_larcv.ipynb</p>">
50+
<meta name="twitter:image" content="http://deeplearnphysics.org/Blog/theme/img/profile_small.png" />
51+
52+
5053
<title>DeepLearnPhysics Blog &ndash; Tutorial 03: storing 2D image in larcv</title>
5154
</head>
5255
<body>
@@ -61,6 +64,7 @@ <h1><a href="http://deeplearnphysics.org/Blog">Blog</a></h1>
6164

6265
<ul class="social">
6366
<li><a class="sc-home" href="http://deeplearnphysics.org" target="_blank"><i class="fa fa-home"></i></a></li>
67+
<li><a class="sc-twitter" href="https://twitter.com/dlphysics" target="_blank"><i class="fa fa-twitter"></i></a></li>
6468
<li><a class="sc-github" href="http://github.com/DeepLearnPhysics" target="_blank"><i class="fa fa-github"></i></a></li>
6569
</ul>
6670
</div>
@@ -85,10 +89,14 @@ <h1 id="tutorial-03">Tutorial 03: storing 2D image in larcv</h1>
8589
<p>
8690
Posted on Wed 06 December 2017 in <a href="http://deeplearnphysics.org/Blog/category/misc.html">misc</a>
8791

92+
by
8893

89-
</p>
94+
<a href="http://deeplearnphysics.org/Blog/author/corey-adams.html">Corey Adams</a>, <a href="http://deeplearnphysics.org/Blog/author/kazuhiro-terao.html">Kazuhiro Terao</a> </p>
9095
</header>
9196

97+
<!-- script is a local library -->
98+
<link rel="stylesheet" type="text/css" href="http://deeplearnphysics.org/Blog/theme/stylesheet/kazunotebook.css">
99+
92100
<div>
93101
<style type="text/css">/*!
94102
*
@@ -1101,10 +1109,10 @@ <h1 id="tutorial-03">Tutorial 03: storing 2D image in larcv</h1>
11011109

11021110

11031111

1104-
<div id="9c998c67-59db-45d2-9875-7db0349f11df"></div>
1112+
<div id="9b649497-45ce-4082-b2ef-0d5ec3ac52f6"></div>
11051113
<div class="output_subarea output_javascript ">
11061114
<script type="text/javascript">
1107-
var element = $('#9c998c67-59db-45d2-9875-7db0349f11df');
1115+
var element = $('#9b649497-45ce-4082-b2ef-0d5ec3ac52f6');
11081116

11091117
require(['notebook'],
11101118
function() {
@@ -17754,6 +17762,7 @@ <h2 id="Write-&amp;-close-the-file">Write &amp; close the file<a class="anchor-l
1775417762
</script>
1775517763

1775617764
</div>
17765+
1775717766
<div class="tag-cloud">
1775817767
<p>
1775917768
</p>

0 commit comments

Comments
 (0)