Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 13

Uml diagrams

Use case Diagram:


UML is a standard language for specifying, visualizing,
constructing, and documenting the artifacts of software
systems.
UML was created by Object Management Group (OMG) and
UML 1.0 specification draft was proposed to the OMG in
January 1997.
OMG is continuously putting effort to make a truly industry
standard.
UML stands for Unified Modeling Language.
UML is a pictorial language used to make software blue prints.
take datasets(clevland)

prepare the datasets

import modules

supervised learning

clasification
regression

admin
lables
features

predict the data using algorithm SVC(support vector control)

logistic regression

user

train&test

predict(result)
Sequence Diagram:
A sequence diagram in Unified Modeling Language
(UML) is a kind of interaction diagram that shows how
processes operate with one another and in what order. It
is a construct of a Message Sequence Chart. A sequence
diagram shows, as parallel vertical lines ("lifelines"),
different processes or objects that live simultaneously,
and, as horizontal arrows, the messages exchanged
between them, in the order in which they occur. This
allows the specification of simple runtime scenarios in a
graphical manner.
user take dataset(cleveland) prepare dataset import modules supervised learning classification algorithms train&test predict(result)

1 : SKlearn&pandas&numpy()

2 : classification()

3 : regression()

4 : features()
5 : lables()

6 : logistic regression()
7 : SVC()
STATE DIAGRAMS
A state diagram shows the behavior of classes in
response to external stimuli. Specifically a state
diagram describes the behavior of a single object in
response to a series of events in a system. Sometimes
it's also known as a Harel state chart or a state machine
diagram. This UML diagram models the dynamic flow
of control from state to state of a particular object
within a system.
Take dataset

Prepare dataset

Import modules

Supervised learning

Classification

Features&Lables

Algorithms

Train&Test

Predict
Activity Diagrams-:
Activity diagrams are graphical representations of Workflows of stepwise
activities and actions with support for choice, iteration and concurrency. In
the Unified Modeling Language, activity diagrams can be used to describe
the business and operational step-by-step workflows of components in a
system. An activity diagram shows the overall flow of control.
`Activity diagrams are constructed from a limited number of shapes,
connected with arrows. The most important shape types:
rounded rectangles represent activities;
diamonds represent decisions;
bars represent the start (split) or end (join) of concurrent activities;
a black circle represents the start (initial state) of the workflow;
An encircled black circle represents the end (final state).
user

dataset

import module

supervised meachine learning

classification features&labels train&test predict


Component diagram:

sklearn logistic regression

server

pandas
matplotlib
Deployment diagram:

import module
prepaire data sets classification

system

train&test predict
features&labels
Dfd (Data Flow
Diagram)

You might also like