Skip to content
Snippets Groups Projects
Commit 9031bc8c authored by Mirko Birbaumer's avatar Mirko Birbaumer
Browse files

adapted tensorflow version

parent 4fe1709d
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
### Checking your installation
Please check that the notebook below runs smoothly.
%% Cell type:code id: tags:
``` python
import sys
sys.version #Should work and give 3.7.
```
%% Output
'3.7.6 | packaged by conda-forge | (default, Mar 23 2020, 23:03:20) \n[GCC 7.3.0]'
%% Cell type:code id: tags:
``` python
import tensorflow as tf
tf.__version__ #Should work and give 2.4.1
tf.__version__ #Should work and give 2.7.1
```
%% Output
'2.4.1'
'2.7.1'
%% Cell type:code id: tags:
``` python
import numpy as np
np.__version__ #Should work and give something > 1.19
```
%% Output
'1.19.1'
%% Cell type:code id: tags:
``` python
import matplotlib.pyplot as plt
%matplotlib inline
plt.scatter(range(100), np.sin(0.1 * np.array(range(100))))
```
%% Output
<matplotlib.collections.PathCollection at 0x7ff7a900c990>
<matplotlib.collections.PathCollection at 0x7fec50d77050>
%% Cell type:code id: tags:
``` python
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment