You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 2019-01-30-muc++-meetup/README.md
+19-5
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,17 @@
1
-
# Berlin C++ Meetup Slides
1
+
# Munich MUC++ Meetup Slides
2
2
3
-
Modern C++ for interactive and explorative Data Science.
3
+
A Universal Data Science Framework in C++
4
4
5
-
The slides of the C++ Meetup in Berlin (September 18th, 2018)
5
+
The slides of the C++ Meetup in Munich (January 31st, 2019)
6
6
can be found in this folder.
7
7
8
-
The presentation is located inside the Berlin-cplusplus-2018.ipynb notebook.
8
+
The presentation is located inside the Munich-MUC++-2019.ipynb notebook.
9
9
10
-
## Interactive Demos Here:
10
+
## All presentations can be launched *interactively* on MyBinder:
11
+
12
+
Just follow this link: https://mybinder.org/v2/gh/QuantStack/quantstack-talks/muc?filepath=2019-01-30-muc%2B%2B-meetup
13
+
14
+
## More Interactive Demos Here:
11
15
12
16
To access the interactive demos *ONLINE* and *WITHOUT* installation, click the "Binder" Button on each of these.
13
17
@@ -23,3 +27,13 @@ Like this → [![Binder](https://img.shields.io/badge/launch-binder-brightgre
23
27
## Join the community on gitter
24
28
25
29
https://gitter.im/QuantStack/Lobby
30
+
31
+
## Abstract
32
+
33
+
The backbone of Data Science are array computing and visualization libraries. While many of these libraries, for example scikit-learn or NumPy, are utilizing fast C-code, their implementation remains bound to their dynamically interpreted host language.
34
+
35
+
This talk will present xtensor, an attempt to create a universal nD-container and array-computing library in C++. xtensor is a lightweight and modular framework that follows the idioms of the STL while providing an API that draws heavy inspiration from the widely used NumPy package. The library allows to operate in-place on data structures from Python, R and Julia. It is therefore an ideal library to write interpreter independent data science packages.
36
+
37
+
To showcase the internals of xtensor the talk will walk through a minimal reimplementation of a template expression engine in 300 lines of C++17 that supports broadcasting and lazy evaluation.
38
+
39
+
Crucial for data science is furthermore the fast and intuitive representation of data samples. The talk will highlight how the interactive C++ interpreter cling, in combination with Project Jupyter and xeus offers a native C++ solution for powerful widgets ranging from simple sliders and boxes to fully interactive maps and 3D plots.
0 commit comments