Here's my experience of installing the NVIDIA CUDA kit 8.0 on a fresh install of Ubuntu Desktop 16.04.3 LTS.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workbench.main.js:3313 [Extension Host] debugger listening on port 36301 | |
workbench.main.js:238 [Extension Host] [vscode-icons] v8.7.0 activated! | |
workbench.main.js:238 [Extension Host] (node:12808) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. | |
t.log @ workbench.main.js:238 | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 22:02:44: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 22:02:44: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 22:02:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workbench.main.js:3313 [Extension Host] debugger listening on port 41068 | |
workbench.main.js:3311 Extension Host | |
workbench.main.js:3311 Debugger listening on ws://127.0.0.1:41068/e4a995f0-d848-45d7-836c-3acdce098a58 | |
For help, see: https://nodejs.org/en/docs/inspector | |
workbench.main.js:238 [Extension Host] (node:22448) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. | |
t.log @ workbench.main.js:238 | |
workbench.main.js:238 [Extension Host] [vscode-icons] v8.7.0 activated! | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 21:52:01: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-07 21:52:01: Notify locators are locating, Class name = p, completed in 2ms, , Return Value: undefined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workbench.main.js:3272 [Extension Host] debugger listening on port 16367 | |
workbench.main.js:3270 Extension Host | |
workbench.main.js:3270 Debugger listening on ws://127.0.0.1:16367/d86fbd32-94fb-45fe-a384-4880d4073811 | |
For help, see: https://nodejs.org/en/docs/inspector | |
workbench.main.js:238 [Extension Host] [vscode-icons] v8.7.0 activated! | |
workbench.main.js:238 [Extension Host] (node:8044) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. | |
t.log @ workbench.main.js:238 | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-04 01:29:01: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined | |
workbench.main.js:238 [Extension Host] Info Python Extension: 2019-06-04 01:29:01: Notify locators are locating, Class name = p, completed in 2ms, , Return Value: undefined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=> creating model 'simplenetv1_imagenet_3p' | |
=> Model : simplenetv1_imagenet_3p( | |
(features): Sequential( | |
(0): Conv2d(3, 64, kernel_size=[3, 3], stride=(2, 2), padding=(1, 1)) | |
(1): BatchNorm2d(64, eps=1e-05, momentum=0.05, affine=True) | |
(2): ReLU(inplace) | |
(3): Conv2d(64, 128, kernel_size=[3, 3], stride=(2, 2), padding=(1, 1)) | |
(4): BatchNorm2d(128, eps=1e-05, momentum=0.05, affine=True) | |
(5): ReLU(inplace) | |
(6): Conv2d(128, 128, kernel_size=[3, 3], stride=(1, 1), padding=(1, 1)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/pytorch/vision/blob/master/torchvision/models/__init__.py | |
import argparse | |
import os | |
import shutil | |
import time | |
import os, sys, pdb, shutil, time, random, datetime | |
import torch | |
import torch.nn as nn | |
import torch.nn.parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/pytorch/vision/blob/master/torchvision/models/__init__.py | |
import argparse | |
import os | |
import shutil | |
import time | |
import os, sys, pdb, shutil, time, random, datetime | |
import torch | |
import torch.nn as nn | |
import torch.nn.parallel |
In this article, I will share some of my experience on installing NVIDIA driver and CUDA on Linux OS. Here I mainly use Ubuntu as example. Comments for CentOS/Fedora are also provided as much as I can.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#برای نمایش بلادرنگ نمودار ترینینگ و تست ما | |
import numpy as np | |
from matplotlib import pyplot as plt | |
class LivePlotNotebook(object): | |
""" | |
Live plot using %matplotlib notebook in jupyter notebook | |
original url : https://gist.github.com/wassname/04e77eb821447705b399e8e7a6d082ce | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dinesh Jayaraman | |
# Based on code by | |
# Authors: Fabian Pedregosa <[email protected]> | |
# Olivier Grisel <[email protected]> | |
# Mathieu Blondel <[email protected]> | |
# Gael Varoquaux | |
# License: BSD 3 clause (C) INRIA 2011 | |
print(__doc__) |