-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdemo.py
64 lines (50 loc) · 1.64 KB
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Pruebe la instalación para el paquetes taller de redes neuronales
informadas por la física del tercer Congreso Colombiano de Matemáticas
Aplicadas e Industriales ejecutando algunos ejemplos.
@author: Nicolás Guarín-Zapata
"""
import numpy as np
def mensaje(msg):
msg = "\n\n" + msg
print(msg)
print("="*len(msg))
## Datos de prueba: Matlab `peaks()`
x, y = np.mgrid[-3:3:150j,-3:3:150j]
z = 3*(1 - x)**2 * np.exp(-x**2 - (y + 1)**2) \
- 10*(x/5 - x**3 - y**5)*np.exp(-x**2 - y**2) \
- 1./3*np.exp(-(x + 1)**2 - y**2)
#%% Matplotlib
try:
mensaje("Probando la instalación de Matplotlib")
import matplotlib.pyplot as plt
from matplotlib.colors import LightSource
fig = plt.figure()
ax = fig.add_subplot(projection='3d')
# Crea una fuente de luz
ls = LightSource(azdeg=0, altdeg=65)
rgb = ls.shade(z, plt.cm.RdYlBu)
surf = ax.plot_surface(x, y, z, rstride=1, cstride=1,
linewidth=0, antialiased=False,
facecolors=rgb)
print("¡Matplotlib está funcionando correctamente!")
except:
print("¡Matplotlib no está funcionando correctamente!")
#%% Pytorch
try:
mensaje("Probando la instalación de PyTorch")
import torch
import matplotlib.pyplot as plt
npts = 1000
X = torch.linspace(-5, 5, npts).view(-1, 1)
Y = torch.sin(X**2)
plt.figure()
plt.plot(X.numpy(), Y.numpy())
plt.xlabel('$x$')
plt.ylabel('$y$')
print("¡PyTorch está funcionando correctamente!")
plt.show()
except:
print("¡PyTorch no está funcionando correctamente!")