ml-finance-python
python scripts for finance machine learning
git clone https://9o.is/git/ml-finance-python.git
04_how_to_use_tensorflow.ipynb
(1949B)
1 {
2 "cells": [
3 {
4 "cell_type": "markdown",
5 "metadata": {},
6 "source": [
7 "# How to use TensorFlow 2.0"
8 ]
9 },
10 {
11 "cell_type": "markdown",
12 "metadata": {},
13 "source": [
14 "TensorFlow has become the leading deep learning library shortly after its release in September 2015, one year before PyTorch. TensorFlow 2.0 aims to simplify the API that has grown increasingly complex over time by making the Keras API, integrated into TensorFlow as part of the contrib package since 2017 its principal interface, and adopting eager execution. It will continue to focus on a robust implementation across numerous platforms but will make it easier to experiment and do research."
15 ]
16 },
17 {
18 "cell_type": "code",
19 "execution_count": 6,
20 "metadata": {
21 "ExecuteTime": {
22 "end_time": "2019-01-11T01:16:39.527779Z",
23 "start_time": "2019-01-11T01:16:39.521668Z"
24 }
25 },
26 "outputs": [],
27 "source": [
28 "import tensorflow as tf "
29 ]
30 },
31 {
32 "cell_type": "markdown",
33 "metadata": {},
34 "source": [
35 "## To be completed when 2.0 stabilizes"
36 ]
37 },
38 {
39 "cell_type": "code",
40 "execution_count": null,
41 "metadata": {},
42 "outputs": [],
43 "source": []
44 }
45 ],
46 "metadata": {
47 "kernelspec": {
48 "display_name": "Python 3",
49 "language": "python",
50 "name": "python3"
51 },
52 "language_info": {
53 "codemirror_mode": {
54 "name": "ipython",
55 "version": 3
56 },
57 "file_extension": ".py",
58 "mimetype": "text/x-python",
59 "name": "python",
60 "nbconvert_exporter": "python",
61 "pygments_lexer": "ipython3",
62 "version": "3.6.8"
63 },
64 "toc": {
65 "base_numbering": 1,
66 "nav_menu": {},
67 "number_sections": true,
68 "sideBar": true,
69 "skip_h1_title": false,
70 "title_cell": "Table of Contents",
71 "title_sidebar": "Contents",
72 "toc_cell": false,
73 "toc_position": {},
74 "toc_section_display": true,
75 "toc_window_display": false
76 }
77 },
78 "nbformat": 4,
79 "nbformat_minor": 2
80 }