Data Science Center
Data Science Center
  • Видео 118
  • Просмотров 917 201

Видео

Creating a New Environment and Installing TensorFlow 1.14.0 with Anaconda | Step-by-Step Tutorial
Просмотров 3,8 тыс.Год назад
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
Просмотров 3,3 тыс.Год назад
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,6 тыс.Год назад
New Year Night 2023 Sydney Harbour Bridge Fireworks
Lect 08: Random Walk on Graph using Python
Просмотров 2,7 тыс.Год назад
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,5 тыс.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,4 тыс.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,3 тыс.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,1 тыс.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,7 тыс.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
Просмотров 224 тыс.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,7 тыс.2 года назад
Transforming ER Diagrams into Relations using Lucid Chart||ERD To Relational Data Model Part I
How SQL Developer Connect MySQL
Просмотров 11 тыс.3 года назад
How SQL Developer Connect MySQL
Import Data From One Schema to Another Schema Using Data Pump || REMAP_SCHEMA in Oracle Data Pump
Просмотров 4,1 тыс.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
Просмотров 14 тыс.3 года назад
Creation of Pluggable Databases in Oracle 19C || Database Configuration Assistant
SET Operations in SQL| Union | Union ALL | Intersect | Minus
Просмотров 5893 года назад
SET Operations in SQL| Union | Union ALL | Intersect | Minus
Indexes in Databases || Why Index needed in Database
Просмотров 2793 года назад
Indexes in Databases || Why Index needed in Database
How to Install Scott Schema in Oracle 19C
Просмотров 14 тыс.3 года назад
How to Install Scott Schema in Oracle 19C
Create Synonyms Database Object in Oracle
Просмотров 1,5 тыс.3 года назад
Create Synonyms Database Object in Oracle
Oracle Identity Column
Просмотров 8883 года назад
Oracle Identity Column
Sequences in Databases
Просмотров 4243 года назад
Sequences in Databases
How to Install Sample Schemas in Oracle 19C
Просмотров 14 тыс.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
Просмотров 28 тыс.3 года назад
Cube Creation in SSAS
Implementation of Star Schema using SSIS- Part II
Просмотров 2,4 тыс.3 года назад
Implementation of Star Schema using SSIS- Part II

Комментарии

  • @ChiragNagvekar
    @ChiragNagvekar 27 дней назад

    best

  • @IQTIDAR8
    @IQTIDAR8 Месяц назад

    fantastic, u teach it the best way really appreciate

  • @vochau9806
    @vochau9806 Месяц назад

    Could you give me the Implementation of Star Schema using SSIS- Part I. I would like to practice step by step

  • @prasadrathna6580
    @prasadrathna6580 Месяц назад

    Thanks a lot, it worked for me.

  • @chrisder1814
    @chrisder1814 Месяц назад

    hello could you help me understand if the ideas I had are good and feasible, I had thought of using tools our codes to do automation in my WordPress database

  • @q-cooutdoors7759
    @q-cooutdoors7759 2 месяца назад

    Thank god for Indian tutorials. Great video.

    • @Bondtkraag
      @Bondtkraag Месяц назад

      bless his soul

    • @AutomatikBalalaika
      @AutomatikBalalaika Месяц назад

      Exactly. My return deadline for uni is due in a few days. This helped ALOT.

  • @battistudy8337
    @battistudy8337 2 месяца назад

    Your tutorial is very clear enough. Thank you very much.

  • @jameswanjiru6402
    @jameswanjiru6402 2 месяца назад

    Thank you sir, this was very informative

  • @AravindasaiGandham
    @AravindasaiGandham 3 месяца назад

    In scoot .sql user is not connected?

  • @riyazahmad8235
    @riyazahmad8235 3 месяца назад

    I'm using same command but when executing , it show that database ' filename' already exist. Please help me with this. How to fix this problem?? Please help me

  • @p.i.e.1270
    @p.i.e.1270 3 месяца назад

    Thank you so much

  • @parhamafsharnia
    @parhamafsharnia 3 месяца назад

    what a good toturial this is. tnx for your effort

  • @IhrafKhan2100
    @IhrafKhan2100 4 месяца назад

    It's a great source of learning. ❤❤❤❤.

  • @motivational-801
    @motivational-801 4 месяца назад

    SIR I LIKE YOUR This view ❤❤❤❤❤❤❤❤❤❤❤❤

  • @AgerneshDereje
    @AgerneshDereje 4 месяца назад

    nice

  • @snehapainuli4999
    @snehapainuli4999 4 месяца назад

    I opened my oracle account using email so how can I know my username?

  • @L1_1914
    @L1_1914 5 месяцев назад

    why when I first start SSMS i cant connect direct to the server (Server name section is EMPTY) Please help im going to end my life soon...

    • @DataScienceCenter
      @DataScienceCenter 4 месяца назад

      o no, take it easy, if you still facing issue then let me know i can arrange meeting for you.

  • @fritzserrano1987
    @fritzserrano1987 5 месяцев назад

    sir what should i do i dont have adventureworkDW

    • @DataScienceCenter
      @DataScienceCenter 5 месяцев назад

      you can download it as it is available online,

  • @bennetlamasan8388
    @bennetlamasan8388 5 месяцев назад

    hello i have problem in my sql management studio whenever i input data/value in my database, it get repeated when i enter new values can someone help me?

    • @DataScienceCenter
      @DataScienceCenter 5 месяцев назад

      could you please share the results and you input.

    • @bennetlamasan8388
      @bennetlamasan8388 5 месяцев назад

      @@DataScienceCenter hello where can I send it? When i try to do the input into tablename and then, do another one they also repeat first input :(

    • @bennetlamasan8388
      @bennetlamasan8388 5 месяцев назад

      @@DataScienceCenter hello where can I send it? but my problem was that everytime i need to insert niyo data in my database i need to delete the previous was because it get repeated in the table.

    • @DataScienceCenter
      @DataScienceCenter 5 месяцев назад

      do you want to new data as well as old data or you need only new data, you dont need old data?

    • @bennetlamasan8388
      @bennetlamasan8388 5 месяцев назад

      @@DataScienceCenter i just want to see my prompt but I can't since I need to delete every line if I want to insert new data in my query since it will get repeated if i don't delete it first

  • @payam-bagheri
    @payam-bagheri 6 месяцев назад

    Thank you! This was so simple and to the point!

  • @programsolve3053
    @programsolve3053 6 месяцев назад

    You didn't show if Tensorflow finally could be imported in Jupyter Notebook without any error!!

  • @RafaelRocha17
    @RafaelRocha17 6 месяцев назад

    Thanks!

  • @swapneelchakraborty5443
    @swapneelchakraborty5443 6 месяцев назад

    Thanks Bruh!

  • @rashidmehmood9834
    @rashidmehmood9834 6 месяцев назад

    Which password type on this command (sys as sysdba) plz help 1:38

  • @Er.mr.rksainisaini
    @Er.mr.rksainisaini 7 месяцев назад

    Nice sir your explanation vision clear but your voice is not

  • @furkan-gx2er
    @furkan-gx2er 7 месяцев назад

    Thanks

  • @VaishnaviKashid-p5b
    @VaishnaviKashid-p5b 8 месяцев назад

    SQL> alter session set container = pdborcl; ERROR: ORA-65011: Pluggable database PDBORCL does not exist. I found this error what should i do ???

  • @Ibne-Hassan-Khera
    @Ibne-Hassan-Khera 8 месяцев назад

    G oyee lagay raho😂

  • @danieljsadananda2163
    @danieljsadananda2163 8 месяцев назад

    Wonderful vedio . Thank you

  • @bhukyanaveen5830
    @bhukyanaveen5830 8 месяцев назад

  • @swarupbiswal4499
    @swarupbiswal4499 8 месяцев назад

    Sys as sysdba Password??

    • @DataScienceCenter
      @DataScienceCenter 8 месяцев назад

      you can press enter. password is not necessary for sys user.

  • @jonathancumini6183
    @jonathancumini6183 9 месяцев назад

    I was trying to use it against MySQL 5.1.7. Had to download the 5.0.4 version of the connector because otherwise there was an error on every click on a table. However, I am still lacking the ability to modify the tables' data directly. Now trying HeidiSQL. Thank you so much anyway.

  • @himanshiqueen-v9g
    @himanshiqueen-v9g 10 месяцев назад

    Sir thanks for this u are the great sir😊

  • @nanireddy2893
    @nanireddy2893 10 месяцев назад

    Can you help me to do the same thing using silent command ?

  • @mobaucom3574
    @mobaucom3574 10 месяцев назад

    what's the spots to watch this amazing fireworks pls?

  • @alonemodsDanusha
    @alonemodsDanusha 10 месяцев назад

    Thank you so much❤

  • @shaikwaseem484
    @shaikwaseem484 10 месяцев назад

    arey bhai thoda awaaz bada mere bhai🤬🤬🤬🤬🤬🤬🤬🤬

  • @kassemhaidar762
    @kassemhaidar762 10 месяцев назад

    Identity(1.1) auto increament for id

  • @ashwinkumar5223
    @ashwinkumar5223 11 месяцев назад

    Getting this listener problem while connecting to Oracle from power bi.

  • @manjunathamr1872
    @manjunathamr1872 11 месяцев назад

    Hi sir. i am facing issue with installing scott schema as i followed steps given in this video ....copy pasted scott.sql link but showing not connected .....please help sir

    • @karasevda1451
      @karasevda1451 11 месяцев назад

      Same here. I began to hate this oracl😂

    • @DataScienceCenter
      @DataScienceCenter 11 месяцев назад

      its seems that you are not using proper password for scott user, Follow the following steps: i. connect with sys user, ii. write the command : alter session set container = orclpdb iii. reset the user password: alter user scott identified by tiger; iv. connect with scott user: conn scott/tiger@orclpdb

  • @ashish7750
    @ashish7750 11 месяцев назад

    very good article to watch, well explained and well demonstrated. thanks

    • @DataScienceCenter
      @DataScienceCenter 11 месяцев назад

      Glad you liked it!

    • @ashish7750
      @ashish7750 11 месяцев назад

      @@DataScienceCenter is it the only video for SSAS? Can you please make a series for SSAS with the latest SSAS version, that would be a great help. Thanks.

    • @DataScienceCenter
      @DataScienceCenter 11 месяцев назад

      will share the list of video related to SSAS and SSRS shortly. Thanks for feedback.

    • @ashish7750
      @ashish7750 11 месяцев назад

      @@DataScienceCenter please share, I am looking for the videos. Thanks

  • @babupemmada1580
    @babupemmada1580 11 месяцев назад

    HI Bro, pls help me how to ifx this scott user to connect?

  • @jawaharlagisetty953
    @jawaharlagisetty953 11 месяцев назад

    Thanks a lot sir I am saved by you . Today ❤

  • @yuqiliang1900
    @yuqiliang1900 11 месяцев назад

    Very helpful. Thank you!

  • @lk.w2379
    @lk.w2379 Год назад

    Amazing 😻

  • @paulntumbong9568
    @paulntumbong9568 Год назад

    Can you set this wizard on an AG read intent secondary

  • @IhrafKhan
    @IhrafKhan Год назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @IhrafKhan
    @IhrafKhan Год назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @IhrafKhan
    @IhrafKhan Год назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @IhrafKhan
    @IhrafKhan Год назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤