Hello everybody,
today I want to write a few words about built in data sets in sklearn library of python but from Visual Studio 2017 prospective. You may ask why Visual Studio 2017 if there are plenty of other options? I can say that main reason is becuase I like debugging features that availabil...
Hello everybody,
today I want to describe three elements of Python: map, zip, lambda and *.
Zip and *
The first step that I want to describe is zip and * usage. Take a look at the following code:
a = [5, 6]
b = [7, 8]
c = zip(a,b)
print(*c)
How do you thi...
Hello everybody,
today I want to document another issue that took from me plenty of time. Recently I've used following code in Python in order to save array of numpy numbers:
import numpy as np
newImage = ...some way of getting array
np.ndarray.tofile(newImage, newFn)
But when I tried to get that...