Data Science Center
Data Science Center
  • 118
  • 861 059

Відео

Creating a New Environment and Installing TensorFlow 1.14.0 with Anaconda | Step-by-Step Tutorial
Переглядів 3,3 тис.Рік тому
To create a new environment and install TensorFlow 1.14.0 using Anaconda, follow these steps: 1. Install Anaconda: www.anaconda.com/products/individual 2. Open Anaconda Prompt: create a new environment 3. Activate environment 4. Install TensorFlow 1.14.0 5. Verify installation
Exploring Matrix Factorization with Python: A Step-by-Step Tutorial
Переглядів 2,8 тис.Рік тому
Matrix factorization is a technique used in linear algebra and data analysis to decompose a matrix into the product of two or more simpler matrices. The goal is to find a low-rank approximation of the original matrix, which can help with various tasks such as dimensionality reduction, data compression, and collaborative filtering. In the context of collaborative filtering, matrix factorization ...
NYE 2023 Sydney Harbour Bridge Fireworks
Переглядів 3,5 тис.Рік тому
New Year Night 2023 Sydney Harbour Bridge Fireworks
Lect 08: Random Walk on Graph using Python
Переглядів 2,5 тис.Рік тому
Random Walk on Graph using networkx Github link: github.com/smbilal1984/Machine-Learning-with-Graph/blob/main/Random_Walk_networkx.ipynb
Lect 07: Bipartite Graphs with Networkx ||Bipartite Graphs using Python
Переглядів 2,3 тис.2 роки тому
Edges are only allowed across different sets and are not allowed within nodes belonging to the same set. In most cases, nodes belonging to different sets are also characterized by particular node types. from networkx.drawing.layout import bipartite_layout user = ['A', 'B', 'C', 'D', 'E'] item = [1, 2, 3, 4, 5] E = zip(np.random.choice(user, 10), np.random.choice(item, 10)) Edge = pd.DataFrame([...
Lect 06 Network Analysis with Networkx Working with Data sets
Переглядів 4,2 тис.2 роки тому
Lect 06 Network Analysis with Networkx Working with Data sets import networkx as nx import pandas and pd import matplotlib.pyplot as plt user = ['user_from', 'user_to', 'trust'] df = pd.read_csv('E:/RSAlgorithms-master/ft_trust.txt', sep= ' ', names= user ) df.head() G = nx.from_pandas_edgelist(df, source='user_from', target='user_to',edge_attr = 'trust', create_using= nx.DiGraph) pos = nx.spri...
Lect 05: Adjacency Matrix using Networkx || Adjacency Matrix using Python
Переглядів 4,1 тис.2 роки тому
Adjacency Matrix is a 2D array of size V x V where V is the number of vertices in a graph. Let the 2D array slot adj[i][j] = 1 indicates that there is an edge from vertex i to vertex j. Adjacency matrix for undirected graph is always symmetric. Adjacency Matrix is also used to represent weighted graphs. If adj[i][j] = w, then there is an edge from vertex i to vertex j with weight w. Python code...
Lect 04: Weighted Graphs with Networkx||Types of Graph using Python
Переглядів 7 тис.2 роки тому
Types of Graph with NetworkX Weighted Graphs G is defined as G=(V, E ,w) where V is a set of nodes, E is a set of edges, and w: E → ℝ is the weighted function that assigns at each edge e ∈ E a weight expressed as a real number. Github Link is as: github.com/smbilal1984/Machine-Learning-with-Graph/blob/main/Lect 04 Weighted Directed Graph.ipynb
Lect 03 Multi Graphs with Networkx ||Types for Graph using Python
Переглядів 2 тис.2 роки тому
Lect 03: Multi Graphs with Networkx Types of Graph: i. Directed graphs, ii. Multigraphs iii. Weighted Graphs Multi Graphs G(V, E) multiple edges to have the same pair of start and end nodes. G(V, E) It can be directed or undirected multi graph Multi directed graph: nx.MultiDiGraph() Multi undirected graph: nx.MultiGraph()
Lect 02: Types of Graphs with Networkx ||Directed Graph using Python
Переглядів 3 тис.2 роки тому
Lect 02: Types of Graphs with Networkx ||Directed Graph using Python Types of Graphs with Networkx i. Directed graphs, ii. Multigraphs iii. Weighted Graphs i. Directed graphs G(V, E) A digraph G=(V, E), where V is a set of nodes and E is a set of ordered couples representing the connection between two nodes belonging to V. Edge is a order couple thats why it enforce the connection V= {A, B, C, ...
Lect 01: Introduction to Graphs with Networkx
Переглядів 1,6 тис.2 роки тому
Graphs with networkx Python networkx library A simple undirected graph (or simply, a graph) G is defined as G=(V,E) , where V={v1, .., vn} is a set of nodes (also called vertices) and E={{vk,vw} .., {vi,vj}} is a set of two-sets (set of two elements) of edges. The order of a graph is the number of its vertices |V|. The size of a graph is the number of its edges |E|. The degree of a vertex is th...
How to Import flat file, CSV or any other Source Data into SQL Server
Переглядів 6 тис.2 роки тому
How to Import flat file, CSV or any other Source Data into SQL Server FIRST STEP. Right Click on specific database - task - Flat file or import data
How to Create One Table From Another Database Table in SQL Server
Переглядів 7 тис.2 роки тому
How to Create One Table From Another Database Table in SQL Server
How to Create Database in SQL Server
Переглядів 185 тис.2 роки тому
How to Create Database in SQL Server
How to Create Database Table for Multivalued Attribute
Переглядів 16 тис.2 роки тому
How to Create Database Table for Multivalued Attribute
Transforming ER Diagrams into Relations using Lucid Chart||ERD To Relational Data Model Part I
Переглядів 2,5 тис.2 роки тому
Transforming ER Diagrams into Relations using Lucid Chart||ERD To Relational Data Model Part I
How SQL Developer Connect MySQL
Переглядів 10 тис.2 роки тому
How SQL Developer Connect MySQL
Import Data From One Schema to Another Schema Using Data Pump || REMAP_SCHEMA in Oracle Data Pump
Переглядів 4 тис.3 роки тому
Import Data From One Schema to Another Schema Using Data Pump || REMAP_SCHEMA in Oracle Data Pump
Creation of Pluggable Databases in Oracle 19C || Database Configuration Assistant
Переглядів 13 тис.3 роки тому
Creation of Pluggable Databases in Oracle 19C || Database Configuration Assistant
SET Operations in SQL| Union | Union ALL | Intersect | Minus
Переглядів 5603 роки тому
SET Operations in SQL| Union | Union ALL | Intersect | Minus
Indexes in Databases || Why Index needed in Database
Переглядів 2603 роки тому
Indexes in Databases || Why Index needed in Database
How to Install Scott Schema in Oracle 19C
Переглядів 13 тис.3 роки тому
How to Install Scott Schema in Oracle 19C
Create Synonyms Database Object in Oracle
Переглядів 1,4 тис.3 роки тому
Create Synonyms Database Object in Oracle
Oracle Identity Column
Переглядів 8573 роки тому
Oracle Identity Column
Sequences in Databases
Переглядів 4043 роки тому
Sequences in Databases
How to Install Sample Schemas in Oracle 19C
Переглядів 13 тис.3 роки тому
How to Install Sample Schemas in Oracle 19C
Allama Iqbal Poetry: Kon rakhy ga yaad Humian
Переглядів 7113 роки тому
Allama Iqbal Poetry: Kon rakhy ga yaad Humian
Cube Creation in SSAS
Переглядів 27 тис.3 роки тому
Cube Creation in SSAS
Implementation of Star Schema using SSIS- Part II
Переглядів 2,4 тис.3 роки тому
Implementation of Star Schema using SSIS- Part II