Learn practical skills, build real-world projects, and advance your career
import jovian
jovian.commit()
[jovian] Saving notebook..
!pip install jovian
Collecting jovian Using cached https://files.pythonhosted.org/packages/53/b8/07dbaf8e226aabf7909f099bd696dddf25327329dbb22e00691ba9df84cc/jovian-0.1.62.tar.gz Requirement already satisfied: requests in c:\users\neeraj\anaconda3\envs\fast.ai\lib\site-packages (from jovian) (2.22.0) Collecting uuid (from jovian) Using cached https://files.pythonhosted.org/packages/ce/63/f42f5aa951ebf2c8dac81f77a8edcc1c218640a2a35a03b9ff2d4aa64c3d/uuid-1.30.tar.gz Requirement already satisfied: chardet<3.1.0,>=3.0.2 in c:\users\neeraj\anaconda3\envs\fast.ai\lib\site-packages (from requests->jovian) (3.0.4) Requirement already satisfied: certifi>=2017.4.17 in c:\users\neeraj\anaconda3\envs\fast.ai\lib\site-packages (from requests->jovian) (2019.6.16) Requirement already satisfied: idna<2.9,>=2.5 in c:\users\neeraj\anaconda3\envs\fast.ai\lib\site-packages (from requests->jovian) (2.8) Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\neeraj\anaconda3\envs\fast.ai\lib\site-packages (from requests->jovian) (1.24.3) Building wheels for collected packages: jovian, uuid Building wheel for jovian (setup.py): started Building wheel for jovian (setup.py): finished with status 'done' Stored in directory: C:\Users\Neeraj\AppData\Local\pip\Cache\wheels\67\9f\b0\b841f81da3f8c9919ed232fa14bba397c5c38fa8df5d125d8a Building wheel for uuid (setup.py): started Building wheel for uuid (setup.py): finished with status 'done' Stored in directory: C:\Users\Neeraj\AppData\Local\pip\Cache\wheels\2a\80\9b\015026567c29fdffe31d91edbe7ba1b17728db79194fca1f21 Successfully built jovian uuid Installing collected packages: uuid, jovian Successfully installed jovian-0.1.62 uuid-1.30
%matplotlib inline
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim

torch.manual_seed(1)
<torch._C.Generator at 0x7f53ecc10750>