Skip to content

Commit 08a8527

Browse files
committed
Merge branch 'develop' into tmw_pytorch_dev
2 parents 6070c79 + dc5e2a7 commit 08a8527

19 files changed

+2466
-10
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: python
2+
branches:
3+
only:
4+
- develop
5+
install:
6+
- pip install pelican
7+
- pip install ghp-import
8+
- pip install markdown
9+
- pip install jupyter notebook
10+
- pip install ipython
11+
- pip install nbconvert
12+
script:
13+
- make html
14+
notifications:
15+
# Emails are sent to the committer's git-configured email address by default,
16+
# but only if they have access to the repository. To enable Travis on your
17+
# public fork of Caffe, just go to travis-ci.org and flip the switch on for
18+
# your Caffe fork. To configure your git email address, use:
19+
# git config --global user.email me@example.com
20+
email:
21+
on_success: always
22+
on_failure: always

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/DeepLearnPhysics/Blog.svg?branch=develop)](https://travis-ci.org/DeepLearnPhysics/Blog)
2+
13
# Blog
24
A repository for the DeepLearnPhysics group [Blog](https://deeplearnphysics.org/Blog) webpage.
35
The `master` branch holds static HTML files generated by [Pelican](http://docs.getpelican.com/en/stable/) with the [flex theme](https://github.com/alexandrevicenzi/Flex). We use the [pelican-ipynb](https://github.com/danielfrg/pelican-ipynb) plugin to easily turn a juypyter notebook into a blog.

content/2017-12-29-BrowsingClassificationData_v0.1.0.ipynb

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
"source": [
77
"Our first [public data set](http://deeplearnphysics.org/DataChallenge/#ChallengeClassification) is available! We are very excited for this 1st step to have public data set with [training tutorials](http://deeplearnphysics.org/Blog/tutorial_summary.html). This notebook is an announcement + browsing of the file contents. This may be a useful guide before jumping into the tutorial. Since this notebook is a bit lengthy, here's an outline of what's covered.\n",
88
"\n",
9-
"1. [Overall summary of sample generation configuration](#overview)\n",
10-
"2. [Exploring file contents](#file_contents)\n",
11-
"3. [Example image dump](#image_dump) (data analysis)\n",
12-
"4. [Particle-wise event fraction](#event_fraction) (data analysis)\n",
13-
"5. [Energy and momentum distribution](#kinematics) (data analysis)\n",
14-
"6. [Image filtering effect](#filter_effect) (data analysis)"
9+
"0. [Overall summary of sample generation configuration](#overview)\n",
10+
"1. [Exploring file contents](#file_contents)\n",
11+
"2. [Example image dump](#image_dump) (data analysis)\n",
12+
"3. [Particle-wise event fraction](#event_fraction) (data analysis)\n",
13+
"4. [Energy and momentum distribution](#kinematics) (data analysis)\n",
14+
"5. [Image filtering effect](#filter_effect) (data analysis)\n",
15+
"\n",
16+
"Before anything, make sure you have necessary software stacks (`larcv`, python packages) and can execute these imports."
1517
]
1618
},
1719
{

content/2018-01-01-BrowsingSegmentationData_v0.1.0.ipynb

Lines changed: 1206 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Title: Browsing Semantic-Segmentation Data Set (v0.1.0)
2+
Slug: 2018-01-01-BrowsingSegmentationData_v0.1.0
3+
Lang: en
4+
Date: 2018-01-01
5+
Category: public data
6+
Tags: public data, analysis example
7+
Authors: Kazuhiro Terao
8+
Summary: Browse through the file contents of the first semantic-segmentation data release (v0.1.0). I go over an introduction to _semantic-segmentation_ image analysis task, sample generation configurations, and further cover information that can be used for training algorithms for object detection and even instance-wise semantic segmentation. I also show some physics of the included physics events.
9+
10+

0 commit comments

Comments
 (0)