Remove author ivo
article thumbnail

The Lean Structure Startup

DareData

Today, the company is comprised of four working partners ( Nuno , Sam , Ivo and I ) and one working shareholder ( Carolina ), all dedicated to achieving the company's mission. DareData stands apart as a company that values its people and prioritises their well-being and compensation.

article thumbnail

PyTorch Introduction — Building your First Linear Model

DareData

data/song_data.csv’) Song Popularity Feature Columns — Image by Author Some of the features of this dataset include interesting metrics about each song, for example: a level of song “energy” a label encoding of the key (for example, A, B, C, D, etc.) Let’s take a peek at the head of the dataset below: songPopularity = pd.read_csv(‘./data/song_data.csv’)

article thumbnail

PyTorch Introduction - The Tensor Object

DareData

Let’s vizuallise our tensor below by calling it in the Python console: scalar object — Image by Author Fact 1: torch.tensor is used to create tensor objects Of course, we are not only tied to single element tensors — we can also create 1-dimensional objects with multiple elements. How can we know how many elements our tensor object has?