Skip to content

Commit 1cfa9e5

Browse files
author
AlvarBer
committed
Release 0.7
* Added flow execution indicator * Removed grid search block spawning thousand clients on release * Restricted print blocks to 1 * Addded KNN and Time Series Split * Improved file dialog * Fixed documentation
2 parents a934d6b + 2bace78 commit 1cfa9e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+2372
-621
lines changed

docs/Makefile

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PDF := persimmon.pdf # PDF Main Target
22
MARKDOWN := introduction.md literature.md workflow.md milestones.md \
3-
risk.md interface.md implementation.md type_checking.md \
3+
risk.md interface.md implementation.md types.md \
44
evaluation.md postmortem.md # Markdown files
55
MARKDOWN_COMPLUTENSE := introduction.md focus.md literature.md \
66
workflow.md milestones.md risk.md interface.md implementation.md \
7-
type_checking.md analysis.md postmortem.md
8-
APPENDICES := package_organization.md how.md # Appendix after bibliography
7+
types.md analysis.md postmortem.md
8+
APPENDICES := packages.md how.md # Appendix after bibliography
99
METADATA := metadata.yaml # Metadata files (Author, Date, Title, etc..)
1010
BIBLIOGRAPHY := persimmon.bib # BibLaTeX bibliography
1111
CSL := emerald-harvard.csl # CSL file used for citations
@@ -29,14 +29,16 @@ all: $(PDF)
2929
$(PDF): $(MARKDOWN) $(APPENDIX) $(TEMPLATE) $(IMAGES) $(BIBLIOGRAPHY) $(CSL) $(METADATA)
3030
pandoc --smart --standalone --latex-engine xelatex --template $(TEMPLATE) \
3131
--bibliography $(BIBLIOGRAPHY) --csl $(CSL) --table-of-contents \
32-
--top-level-division chapter --metadata date:"$(shell date +%Y/%m/%d)" \
33-
--metadata sansfont:"Helvetica Neue LT Com" --highlight-style breezedark\
32+
--top-level-division chapter --highlight-style breezedark \
33+
--metadata date:"$(shell date +%Y/%m/%d)" \
34+
--metadata sansfont:"Helvetica Neue LT Com" \
3435
$(METADATA) $(MARKDOWN) --include-after-body $(APPENDIX) -o $@
3536

3637
complutense: $(MARKDOWN_COMPLUTENSE) $(APPENDIX) $(TEMPLATE) $(IMAGES) $(BIBLIOGRAPHY) $(CSL) $(METADATA)
3738
pandoc --smart --standalone --latex-engine xelatex --template $(TEMPLATE) \
3839
--bibliography $(BIBLIOGRAPHY) --csl $(CSL) --table-of-contents \
39-
--top-level-division chapter --metadata title:"A scikit-learn visual programming interface" \
40+
--top-level-division chapter --highlight-style breezedark \
41+
--metadata title:"A scikit-learn visual programming interface" \
4042
--metadata date:"Director:Manuel Freire Moran, Codirector: Pablo Moreno Ger" \
4143
--metadata sansfont:"Helvetica Neue LT Com" --metadata keywords:"Serious Learning","Visual Programming","Dataflow Programming" \
4244
--metadata titlepic:images/fdi.png $(METADATA) $(MARKDOWN_COMPLUTENSE) \
@@ -45,7 +47,8 @@ complutense: $(MARKDOWN_COMPLUTENSE) $(APPENDIX) $(TEMPLATE) $(IMAGES) $(BIBLIOG
4547
twocol: $(MARKDOWN) $(APPENDIX) $(TEMPLATE) $(IMAGES) $(BIBLIOGRAPHY) $(CSL) $(METADATA)
4648
pandoc --smart --standalone --latex-engine xelatex --template $(TEMPLATE) \
4749
--bibliography $(BIBLIOGRAPHY) --csl $(CSL) --table-of-contents \
48-
--top-level-division chapter --metadata date:"$(shell date +%Y/%m/%d)" \
50+
--top-level-division chapter --highlight-style breezedark \
51+
--metadata date:"$(shell date +%Y/%m/%d)" \
4952
--metadata sansfont:"Helvetica Neue LT Com" -H table.tex \
5053
--metadata classoption:'twocolumn' \
5154
$(METADATA) $(MARKDOWN) --include-after-body $(APPENDIX) -o test.pdf
@@ -66,8 +69,10 @@ APPENDIX_TRAVIS := appendix_travis.tex
6669
travis: $(MARKDOWN) $(APPENDIX_TRAVIS) $(TEMPLATE) $(IMAGES) $(BIBLIOGRAPHY) $(CSL) $(METADATA)
6770
pandoc --smart --standalone --latex-engine xelatex --template $(TEMPLATE) \
6871
--bibliography $(BIBLIOGRAPHY) --csl $(CSL) --table-of-contents \
69-
--chapters --metadata date:"$(shell date +%Y/%m/%d)" \
70-
$(METADATA) $(MARKDOWN) --include-after-body $(APPENDIX_TRAVIS) -o $(PDF)
72+
--chapters --highlight-style breezedark \
73+
--metadata date:"$(shell date +%Y/%m/%d)" \
74+
$(METADATA) $(MARKDOWN) --include-after-body $(APPENDIX_TRAVIS) \
75+
-o $(PDF)
7176

7277
$(APPENDIX_TRAVIS): $(APPENDICES)
7378
pandoc --no-tex-ligatures --chapters $(APPENDICES) -o $@

docs/graphs/graph_execution.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
\State $current.function()$ \Comment {function uses in\_pins and sets out\_pins}
3131
\ForAll {$out\_pin \in current.get\_out\_pins()$}
3232
\State $seen.put(out\_pin, out\_pin.value)$
33+
\State $queue.add(pin.destinations)$
3334
\EndFor
3435
\State \Return $queue$, $seen$
3536
\EndFunction

docs/graphs/type_hierarchy.tex

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
\documentclass{standalone}
2+
3+
\usepackage{tikz}
4+
5+
\begin{document}
6+
\begin{tikzpicture}[sibling distance=7em]
7+
\node {$Any$}
8+
child { node {$Classificator$} }
9+
child { node {$Dataframe$} }
10+
child { node {$State$} }
11+
child { node {$Cross Validator$} }
12+
child { node {\dots} }
13+
child { node {$\bot$} };
14+
\end{tikzpicture}
15+
\end{document}

docs/graphs/types.tex

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
\documentclass{standalone}
2+
3+
\usepackage{tikz}
4+
\usetikzlibrary{positioning}
5+
6+
\definecolor{anycolor}{rgb}{0.9,0.9,0.9}
7+
\definecolor{dcolor}{rgb}{0.667,0.224,0.224}
8+
\definecolor{classcolor}{rgb}{0.667,0.424,0.224}
9+
\definecolor{cvcolor}{rgb}{0.133,0.4,0.4}
10+
\definecolor{stcolor}{rgb}{0.667,0.667,0.224}
11+
12+
\begin{document}
13+
\begin{tikzpicture}
14+
\node [draw, fill=dcolor, minimum size = 35pt] (d) at (0, 0) {$Dataframe$};
15+
\node [draw, fill=classcolor, right = of d, minimum size = 35pt] (c) {$Classificator$};
16+
\node [draw, fill=cvcolor, right = of c, minimum size = 35pt] (cv) {$Cross Validator$};
17+
\node [draw, fill=stcolor, right = of cv, minimum size = 35pt] (st) {$State$};
18+
\node [draw, fill=anycolor, left = of d, minimum size = 35pt] {$Any$};
19+
\end{tikzpicture}
20+
\end{document}

docs/images/azureML.jpg

-95.2 KB
Loading
7.85 KB
Loading

docs/images/interface.png

19.8 KB
Loading

docs/images/iter2.png

89.3 KB
Loading

docs/images/iter3.png

40.2 KB
Loading

docs/images/unreal.png

-201 KB
Loading

0 commit comments

Comments
 (0)