SAN as building block in Distributed Data Storage

SAN as building block in Distributed Data Storage

Storage Area Network (SAN) – Image Source: Link A storage area network is usually recognized as a specialized, speedy network that offer the provision of network access to various storage devices. Storage Area Networks usually comprise different hosts, switches, storage elements as well as storage devices, which are inter-related and inter-connected through various technologies, protocols,…

Read More
SAN Architecture

SAN Architecture

The Advantages of SAN Architecture Image Source: Link Sharing storage typically simplifies storage administration and adds flexibility because cables and stockpiling devices are not physically relocated to move storage from one server to the next. Other advantages include the ability to boot servers directly from the SAN. Because the SAN can be rearranged so that…

Read More
Introduction to SAN for high performance data storage

Introduction to SAN for high performance data storage

A storage area network (SAN) is a high-speed channel or subnetwork that links and provides shared pools of storage systems to different servers. Memory availability, as well as accessibility, are significant considerations in enterprise computing. Conventional direct-attached disc deployments within separate servers could be a simple and low-cost option for several enterprise systems. Still, the…

Read More
download

Logistic Regression from Scratch

Lets us try to implement logistic regression from scratch in python. Recommended to be read after the Neural Networks release. Importing necessary libraries The dataset we will be using is Pima-Indians-diabetes-database Whose objective is to predict whether or not a patient has diabetes diagnostically. y = data.Outcome.values x_data = data.drop([“Outcome”],axis=1)   After this, the data…

Read More