際際滷

際際滷Share a Scribd company logo
1
Six Monthly Progress Presentation
on
Design and Implementation of Spectrum sensing Techniques
in Cognitive Radio Systems
(From 15th
December 2020 to 15th
June 2021)
Presented By
Neelam Dewangan
Under the Supervision of
Dr. Arun Kumar (Supervisor), Associate Professor , BIT Durg
Dr. R.N.Patel (Co-Supervisor), Associate Professor, NIT Raipur
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 2
Scope of the Work
 To conduct an extensive study of the techniques for Spectrum sensing in
Cognitive Radio
 To investigate the scope of performance improvement of Spectrum
sensing and propose intelligent optimization techniques for Spectrum
sensing schemes
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 3
Objectives
 The main objective of this research is to design efficient techniques for
cooperative spectrum sensing that are capable of discovering multiple
spectrum access opportunities in a single sensing period to increase the
achievable cooperative gain while limiting the incurred cooperation
overhead and sensing errors
 Second objective is to investigate the performance of optimized technique
over different channels.
 Developing an optimal decision fusion rule that considers the correlation
between the cooperating secondary users local decisions.
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 4
Flowchart of Methodology
Current work
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 5
Sl. No Month & Year No. of days attended Work done by research scholar
1 January 2021 12 (Telephonic/ online
conversations)
Implementation of Python based algorithm (linear regression analysis and
logistic regression) for Machine Learning and verification with standard
datasets
2 February 2021 14 (Telephonic/ online
conversations)
Implementation and verification of results of Paper (a part of paper ) : J.
Tian et al., "A Machine Learning-Enabled Spectrum Sensing Method for
OFDM Systems," in IEEE Transactions on Vehicular Technology, vol. 68, no.
11, pp. 11374-11378, Nov. 2019
3 March 2021 13 (Telephonic/ online
conversations)
Dataset Generation for OFDM based Cognitive Radio
4 April 2021 04 (Telephonic/ online
conversations)
Simulation of Energy Detector in Python with datasets generated through
Monte Carlo Simulations
5 May 2021 11 (Telephonic/ online
conversations)
Simulation of Cyclostationary Detector in Python with datasets generated
through Monte Carlo Simulations
6 June 2021 05 (Telephonic/ online
conversations)
Implementation and verification of results of Paper (a part of paper ) : Y.
Arjoune and N. Kaabouch, "On Spectrum Sensing, a Machine Learning
Method for Cognitive Radio Systems," 2019 IEEE International Conference on
Electro Information Technology (EIT), 2019, pp. 333-338
Six Month Progress (15th
December 2020 to 15th
June 2021)
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 6
Python Implementation of Linear Regression Model
 Linear regression is a statistical method for modeling relationship between
a dependent variable with a given set of independent variables.
 we consider dependent variables as response and independent variables
as features for simplicity
 It is assumed that the two variables are linearly related
X 0 1 2 3 4 5 6 7 8 9
Y 1 3 2 5 7 8 8 9 10 12
Table : Data Set for Linear Regression
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 7
Cont
Feature vector x = [x1, x2, ., xn],
Response vector y = [y1, y2, ., yn]
 Regression Line is given as
h(xi) represents the predicted response value for ith
observation.
硫0 and 硫 1 are regression coefficients and represent y-intercept and slope of regression line respectively.
竜i is residual error in ith
observation.
 Cost Function or square error is given by :
where SSxy is the sum of cross-deviations of y and x:
and SSxx is the sum of squared deviations of x.
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 8
Results
Plot 1 : Scatter Plot of dataset (Linear Regression)
Estimated coefficients: 硫0 = -0.0586206896552 硫1 = 1.45747126437
Plot 2 : Plot of regression line dataset (Linear
Regression)
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 9
Python Implementation of Logistic Regression Model
 Logistic regression is basically a supervised classification algorithm.
 In a classification problem, the target variable(or output), y, can take only
discrete values for given set of features(or inputs), X
 As Linear regression assumes that the
data follows a linear function,
Logistic regression models the
data using the sigmoid function.
Table : Data Set for Linear Regression
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 10
Cont
 The dataset has p feature variables and n observations.
 The feature matrix is represented as:
 Here, denotes the values of feature for observation.
 The observation, can be represented as:
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 11
Results
Output :
Plot 3: Regression line dataset (Linear Regression)
Accuracy : 0.89
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 12
Implementation and verification of results of Paper : J. Tian et al., "A Machine Learning-Enabled
Spectrum Sensing Method for OFDM Systems," in IEEE Transactions on Vehicular Technology, vol. 68, no.
11, pp. 11374-11378, Nov. 2019, doi: 10.1109/TVT.2019.2943997.
 This paper proposes class assisted prediction method based on Na誰ve Bayes
classifiers on OFDM systems.
 This paper also studies accuracy of different algorithms against different training
samples.
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 13
Implementation of Na誰ve Bayes Classifiers
 Bayes Theorem finds the probability of an event occurring given the probability of another event that has
already occurred. Bayes theorem is stated mathematically as the following equation:
where A and B are events and P(B) ? 0.
 Basically, we are trying to find probability of event A, given the event B is true. Event B is also termed
as evidence.
 P(A) is the priori of A (the prior probability, i.e. Probability of event before evidence is seen). The evidence
is an attribute value of an unknown instance(here, it is event B).
 P(A|B) is a posteriori probability of B, i.e. probability of event after evidence is seen.
Why to choose Bayes Classifiers ?
 They are extremely fast for both training and prediction
 They provide straightforward probabilistic prediction
 They are often very easily interpretable
 They have very few (if any) tunable parameters
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 14
1: Iterations = 250
2: SNR value from -5dB to -15dB
3: ModType = BPSK (It stores the modulation type. It can have one of the
four values BPSK, QPSK, 16-QAM and 64-QAM).
4: Generate OFDM signal
(i) T = OFDM(ModType)
(ii) S = Power Adjustment(T, SNR value) + WGN
(iii) Assign Signal label
5: Generate Noise
(i) N = WGN
(ii) Assign Noise label
6: Dataset = concatenate(Dataset, S, N)
7: Update ModType
8: Until all ModTypes go to step 4
9: Update SNR value
10: Until all SNR values go to step 3
11: Iterations = Iterations - 1
12: Go to step 2 if iterations 0
Dataset Generation Algorithm
Reference : Hassaan Bin Ahmad et al. Ensemble Classifier Based Spectrum Sensing in Cognitive Radio Networks
Volume 2019 |Article ID 9250562 | https://doi.org/10.1155/2019/9250562
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 15
Energy Detection
 Energy detection is a non-coherent detection scheme which do not need
prior knowledge about the primary user .
 Energy of the receiving signal in the presence of primary user is calculated
 If the received signal is above threshold then it is deduced that Primary
user is present.
 Also , the output of energy detector is compared with threshold and the
signal is detected .
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 16
Fig :Detector performance with 1000 statistics Fig :Detector performance with 10000 statistics
Simulation Results for Energy Detector
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 17
Fig :Detector statistics with 1000 statistics Fig :Detector statistics with 10000 statistics
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 18
Fig :Detector performance with 1000 statistics Fig :Detector performance with 10000 statistics
Simulation Results for Cyclostationary Detector
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 19
Implementation and verification of results of Paper : Y. Arjoune and N. Kaabouch, "On Spectrum
Sensing, a Machine Learning Method for Cognitive Radio Systems," 2019 IEEE International Conference
on Electro Information Technology (EIT), 2019, pp. 333-338, doi: 10.1109/EIT.2019.8834099
 This paper concludes that spectrum sensing methods based on a machine learning theory for
cognitive radio networks provides a more reliable solution as compared to traditional
methods like Energy detection, cyclostationary and matched filter.
 It also states that the random forest model outperforms all the other machine learning
methods.
 Currently working on Random Forest model , implementation of traditional methods has
been done.
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 20
Road Map for the duration of 15th
June 2021 to 15th
December 2021
June July August September October November December
Dataset verification
Implementation ML algorithms with
verified datasets
Compilation of results
Preparation and submission of
paper for various journals and
conferences
Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 21
Thanks

More Related Content

Similar to Research Presentation for those who are dong M.Tech (20)

Improved performance of scs based spectrum sensing in cognitive radio using d...
Improved performance of scs based spectrum sensing in cognitive radio using d...Improved performance of scs based spectrum sensing in cognitive radio using d...
Improved performance of scs based spectrum sensing in cognitive radio using d...
eSAT Journals
Efficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
Efficient Data Gathering with Compressive Sensing in Wireless Sensor NetworksEfficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
Efficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
IRJET Journal
IEEE International Conference Presentation
IEEE International Conference PresentationIEEE International Conference Presentation
IEEE International Conference Presentation
Anmol Dwivedi
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACHSENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
csandit
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Saumya Bhagat
Enhanced signal detection slgorithm using trained neural network for cognitiv...
Enhanced signal detection slgorithm using trained neural network for cognitiv...Enhanced signal detection slgorithm using trained neural network for cognitiv...
Enhanced signal detection slgorithm using trained neural network for cognitiv...
IJECEIAES
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORKSENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
ijwmn
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Atrija Singh
Analysis and Comparison of Different Spectrum Sensing Technique for WLAN
Analysis and Comparison of Different Spectrum Sensing Technique for WLANAnalysis and Comparison of Different Spectrum Sensing Technique for WLAN
Analysis and Comparison of Different Spectrum Sensing Technique for WLAN
ijtsrd
Ijetcas14 443
Ijetcas14 443Ijetcas14 443
Ijetcas14 443
Iasir Journals
An Ant colony optimization algorithm to solve the broken link problem in wire...
An Ant colony optimization algorithm to solve the broken link problem in wire...An Ant colony optimization algorithm to solve the broken link problem in wire...
An Ant colony optimization algorithm to solve the broken link problem in wire...
IJERA Editor
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting PneumoniaIRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET Journal
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
ijsrd.com
Expert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnnExpert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnn
ijcsa
40120130405012
4012013040501240120130405012
40120130405012
IAEME Publication
Bio-inspired algorithm for decisioning wireless access point installation
Bio-inspired algorithm for decisioning wireless access point installation Bio-inspired algorithm for decisioning wireless access point installation
Bio-inspired algorithm for decisioning wireless access point installation
IJECEIAES
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSNMulti-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
IRJET Journal
PhilipSamDavisResume
PhilipSamDavisResumePhilipSamDavisResume
PhilipSamDavisResume
Philip Davis
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Onyebuchi nosiri
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Onyebuchi nosiri
Improved performance of scs based spectrum sensing in cognitive radio using d...
Improved performance of scs based spectrum sensing in cognitive radio using d...Improved performance of scs based spectrum sensing in cognitive radio using d...
Improved performance of scs based spectrum sensing in cognitive radio using d...
eSAT Journals
Efficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
Efficient Data Gathering with Compressive Sensing in Wireless Sensor NetworksEfficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
Efficient Data Gathering with Compressive Sensing in Wireless Sensor Networks
IRJET Journal
IEEE International Conference Presentation
IEEE International Conference PresentationIEEE International Conference Presentation
IEEE International Conference Presentation
Anmol Dwivedi
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACHSENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
SENSOR SELECTION SCHEME IN WIRELESS SENSOR NETWORKS: A NEW ROUTING APPROACH
csandit
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Experimental Study of Spectrum Sensing based on Energy Detection and Network ...
Saumya Bhagat
Enhanced signal detection slgorithm using trained neural network for cognitiv...
Enhanced signal detection slgorithm using trained neural network for cognitiv...Enhanced signal detection slgorithm using trained neural network for cognitiv...
Enhanced signal detection slgorithm using trained neural network for cognitiv...
IJECEIAES
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORKSENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
SENSOR SELECTION SCHEME IN TEMPERATURE WIRELESS SENSOR NETWORK
ijwmn
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Recognition of Epilepsy from Non Seizure Electroencephalogram using combinati...
Atrija Singh
Analysis and Comparison of Different Spectrum Sensing Technique for WLAN
Analysis and Comparison of Different Spectrum Sensing Technique for WLANAnalysis and Comparison of Different Spectrum Sensing Technique for WLAN
Analysis and Comparison of Different Spectrum Sensing Technique for WLAN
ijtsrd
An Ant colony optimization algorithm to solve the broken link problem in wire...
An Ant colony optimization algorithm to solve the broken link problem in wire...An Ant colony optimization algorithm to solve the broken link problem in wire...
An Ant colony optimization algorithm to solve the broken link problem in wire...
IJERA Editor
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting PneumoniaIRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET- A Survey on Medical Image Interpretation for Predicting Pneumonia
IRJET Journal
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
Proactive Data Reporting of Wireless sensor Network using Wake Up Scheduling ...
ijsrd.com
Expert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnnExpert system design for elastic scattering neutrons optical model using bpnn
Expert system design for elastic scattering neutrons optical model using bpnn
ijcsa
Bio-inspired algorithm for decisioning wireless access point installation
Bio-inspired algorithm for decisioning wireless access point installation Bio-inspired algorithm for decisioning wireless access point installation
Bio-inspired algorithm for decisioning wireless access point installation
IJECEIAES
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSNMulti-Objective Soft Computing Techniques for Dynamic Deployment in WSN
Multi-Objective Soft Computing Techniques for Dynamic Deployment in WSN
IRJET Journal
PhilipSamDavisResume
PhilipSamDavisResumePhilipSamDavisResume
PhilipSamDavisResume
Philip Davis
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Onyebuchi nosiri
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Adaptive Monitoring and Localization of Faulty Node in a Wireless Sensor Netw...
Onyebuchi nosiri

More from NeelamDewangan7 (6)

RM_Chapter-3.pdf Research Methodology for Researchers
RM_Chapter-3.pdf  Research Methodology for ResearchersRM_Chapter-3.pdf  Research Methodology for Researchers
RM_Chapter-3.pdf Research Methodology for Researchers
NeelamDewangan7
RM_Chapter-1.pdf Research Methodologypdology
RM_Chapter-1.pdf Research MethodologypdologyRM_Chapter-1.pdf Research Methodologypdology
RM_Chapter-1.pdf Research Methodologypdology
NeelamDewangan7
Safety ppt of Bhilai Steel plant helpful for engineers
Safety ppt of Bhilai Steel plant helpful for engineersSafety ppt of Bhilai Steel plant helpful for engineers
Safety ppt of Bhilai Steel plant helpful for engineers
NeelamDewangan7
Safety ppt of Bhilai Steel Plant for maintenance department
Safety ppt of Bhilai Steel Plant for maintenance departmentSafety ppt of Bhilai Steel Plant for maintenance department
Safety ppt of Bhilai Steel Plant for maintenance department
NeelamDewangan7
Safety presentation for Government Organization
Safety presentation for Government OrganizationSafety presentation for Government Organization
Safety presentation for Government Organization
NeelamDewangan7
Research Methodology as for M.Tech by Research Students
Research Methodology as  for M.Tech by Research StudentsResearch Methodology as  for M.Tech by Research Students
Research Methodology as for M.Tech by Research Students
NeelamDewangan7
RM_Chapter-3.pdf Research Methodology for Researchers
RM_Chapter-3.pdf  Research Methodology for ResearchersRM_Chapter-3.pdf  Research Methodology for Researchers
RM_Chapter-3.pdf Research Methodology for Researchers
NeelamDewangan7
RM_Chapter-1.pdf Research Methodologypdology
RM_Chapter-1.pdf Research MethodologypdologyRM_Chapter-1.pdf Research Methodologypdology
RM_Chapter-1.pdf Research Methodologypdology
NeelamDewangan7
Safety ppt of Bhilai Steel plant helpful for engineers
Safety ppt of Bhilai Steel plant helpful for engineersSafety ppt of Bhilai Steel plant helpful for engineers
Safety ppt of Bhilai Steel plant helpful for engineers
NeelamDewangan7
Safety ppt of Bhilai Steel Plant for maintenance department
Safety ppt of Bhilai Steel Plant for maintenance departmentSafety ppt of Bhilai Steel Plant for maintenance department
Safety ppt of Bhilai Steel Plant for maintenance department
NeelamDewangan7
Safety presentation for Government Organization
Safety presentation for Government OrganizationSafety presentation for Government Organization
Safety presentation for Government Organization
NeelamDewangan7
Research Methodology as for M.Tech by Research Students
Research Methodology as  for M.Tech by Research StudentsResearch Methodology as  for M.Tech by Research Students
Research Methodology as for M.Tech by Research Students
NeelamDewangan7

Recently uploaded (20)

Fuel part 1.pptx........................
Fuel part 1.pptx........................Fuel part 1.pptx........................
Fuel part 1.pptx........................
ksbhattadcm
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷sHow to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
Celine George
How to Configure Flexible Working Schedule in Odoo 18 Employee
How to Configure Flexible Working Schedule in Odoo 18 EmployeeHow to Configure Flexible Working Schedule in Odoo 18 Employee
How to Configure Flexible Working Schedule in Odoo 18 Employee
Celine George
Kaun TALHA quiz Finals -- El Dorado 2025
Kaun TALHA quiz Finals -- El Dorado 2025Kaun TALHA quiz Finals -- El Dorado 2025
Kaun TALHA quiz Finals -- El Dorado 2025
Conquiztadors- the Quiz Society of Sri Venkateswara College
APM People Interest Network Conference - Tim Lyons - The neurological levels ...
APM People Interest Network Conference - Tim Lyons - The neurological levels ...APM People Interest Network Conference - Tim Lyons - The neurological levels ...
APM People Interest Network Conference - Tim Lyons - The neurological levels ...
Association for Project Management
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
sandynavergas1
cervical spine mobilization manual therapy .pdf
cervical spine mobilization manual therapy .pdfcervical spine mobilization manual therapy .pdf
cervical spine mobilization manual therapy .pdf
SamarHosni3
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, TuluThe Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
DrIArulAram
Modeling-Simple-Equation-Using-Bar-Models.pptx
Modeling-Simple-Equation-Using-Bar-Models.pptxModeling-Simple-Equation-Using-Bar-Models.pptx
Modeling-Simple-Equation-Using-Bar-Models.pptx
maribethlacno2
A PPT on the First Three chapters of Wings of Fire
A PPT on the First Three chapters of Wings of FireA PPT on the First Three chapters of Wings of Fire
A PPT on the First Three chapters of Wings of Fire
Beena E S
Blind spots in AI and Formulation Science, IFPAC 2025.pdf
Blind spots in AI and Formulation Science, IFPAC 2025.pdfBlind spots in AI and Formulation Science, IFPAC 2025.pdf
Blind spots in AI and Formulation Science, IFPAC 2025.pdf
Ajaz Hussain
Digital Tools with AI for e-Content Development.pptx
Digital Tools with AI for e-Content Development.pptxDigital Tools with AI for e-Content Development.pptx
Digital Tools with AI for e-Content Development.pptx
Dr. Sarita Anand
Mate, a short story by Kate Grenvile.pptx
Mate, a short story by Kate Grenvile.pptxMate, a short story by Kate Grenvile.pptx
Mate, a short story by Kate Grenvile.pptx
Liny Jenifer
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptxFESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
DanmarieMuli1
EDL 290F Week 3 - Mountaintop Views (2025).pdf
EDL 290F Week 3  - Mountaintop Views (2025).pdfEDL 290F Week 3  - Mountaintop Views (2025).pdf
EDL 290F Week 3 - Mountaintop Views (2025).pdf
Liz Walsh-Trevino
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
English 4 Quarter 4 Week 4 Classroom Obs
English 4 Quarter 4 Week 4 Classroom ObsEnglish 4 Quarter 4 Week 4 Classroom Obs
English 4 Quarter 4 Week 4 Classroom Obs
NerissaMendez1
Rass MELAI : an Internet MELA Quiz Finals - El Dorado 2025
Rass MELAI : an Internet MELA Quiz Finals - El Dorado 2025Rass MELAI : an Internet MELA Quiz Finals - El Dorado 2025
Rass MELAI : an Internet MELA Quiz Finals - El Dorado 2025
Conquiztadors- the Quiz Society of Sri Venkateswara College
Information Technology for class X CBSE skill Subject
Information Technology for class X CBSE skill SubjectInformation Technology for class X CBSE skill Subject
Information Technology for class X CBSE skill Subject
VEENAKSHI PATHAK
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptxTRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
PoojaSen20
Fuel part 1.pptx........................
Fuel part 1.pptx........................Fuel part 1.pptx........................
Fuel part 1.pptx........................
ksbhattadcm
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷sHow to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
How to Setup WhatsApp in Odoo 17 - Odoo 際際滷s
Celine George
How to Configure Flexible Working Schedule in Odoo 18 Employee
How to Configure Flexible Working Schedule in Odoo 18 EmployeeHow to Configure Flexible Working Schedule in Odoo 18 Employee
How to Configure Flexible Working Schedule in Odoo 18 Employee
Celine George
APM People Interest Network Conference - Tim Lyons - The neurological levels ...
APM People Interest Network Conference - Tim Lyons - The neurological levels ...APM People Interest Network Conference - Tim Lyons - The neurological levels ...
APM People Interest Network Conference - Tim Lyons - The neurological levels ...
Association for Project Management
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
Eng7-Q4-Lesson 1 Part 1 Understanding Discipline-Specific Words, Voice, and T...
sandynavergas1
cervical spine mobilization manual therapy .pdf
cervical spine mobilization manual therapy .pdfcervical spine mobilization manual therapy .pdf
cervical spine mobilization manual therapy .pdf
SamarHosni3
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, TuluThe Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
The Dravidian Languages: Tamil, Telugu, Kannada, Malayalam, Brahui, Kuvi, Tulu
DrIArulAram
Modeling-Simple-Equation-Using-Bar-Models.pptx
Modeling-Simple-Equation-Using-Bar-Models.pptxModeling-Simple-Equation-Using-Bar-Models.pptx
Modeling-Simple-Equation-Using-Bar-Models.pptx
maribethlacno2
A PPT on the First Three chapters of Wings of Fire
A PPT on the First Three chapters of Wings of FireA PPT on the First Three chapters of Wings of Fire
A PPT on the First Three chapters of Wings of Fire
Beena E S
Blind spots in AI and Formulation Science, IFPAC 2025.pdf
Blind spots in AI and Formulation Science, IFPAC 2025.pdfBlind spots in AI and Formulation Science, IFPAC 2025.pdf
Blind spots in AI and Formulation Science, IFPAC 2025.pdf
Ajaz Hussain
Digital Tools with AI for e-Content Development.pptx
Digital Tools with AI for e-Content Development.pptxDigital Tools with AI for e-Content Development.pptx
Digital Tools with AI for e-Content Development.pptx
Dr. Sarita Anand
Mate, a short story by Kate Grenvile.pptx
Mate, a short story by Kate Grenvile.pptxMate, a short story by Kate Grenvile.pptx
Mate, a short story by Kate Grenvile.pptx
Liny Jenifer
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptxFESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
FESTIVAL: SINULOG & THINGYAN-LESSON 4.pptx
DanmarieMuli1
EDL 290F Week 3 - Mountaintop Views (2025).pdf
EDL 290F Week 3  - Mountaintop Views (2025).pdfEDL 290F Week 3  - Mountaintop Views (2025).pdf
EDL 290F Week 3 - Mountaintop Views (2025).pdf
Liz Walsh-Trevino
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
English 4 Quarter 4 Week 4 Classroom Obs
English 4 Quarter 4 Week 4 Classroom ObsEnglish 4 Quarter 4 Week 4 Classroom Obs
English 4 Quarter 4 Week 4 Classroom Obs
NerissaMendez1
Information Technology for class X CBSE skill Subject
Information Technology for class X CBSE skill SubjectInformation Technology for class X CBSE skill Subject
Information Technology for class X CBSE skill Subject
VEENAKSHI PATHAK
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptxTRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
TRANSFER OF PATIENTS IN HOSPITAL SETTING.pptx
PoojaSen20

Research Presentation for those who are dong M.Tech

  • 1. 1 Six Monthly Progress Presentation on Design and Implementation of Spectrum sensing Techniques in Cognitive Radio Systems (From 15th December 2020 to 15th June 2021) Presented By Neelam Dewangan Under the Supervision of Dr. Arun Kumar (Supervisor), Associate Professor , BIT Durg Dr. R.N.Patel (Co-Supervisor), Associate Professor, NIT Raipur
  • 2. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 2 Scope of the Work To conduct an extensive study of the techniques for Spectrum sensing in Cognitive Radio To investigate the scope of performance improvement of Spectrum sensing and propose intelligent optimization techniques for Spectrum sensing schemes
  • 3. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 3 Objectives The main objective of this research is to design efficient techniques for cooperative spectrum sensing that are capable of discovering multiple spectrum access opportunities in a single sensing period to increase the achievable cooperative gain while limiting the incurred cooperation overhead and sensing errors Second objective is to investigate the performance of optimized technique over different channels. Developing an optimal decision fusion rule that considers the correlation between the cooperating secondary users local decisions.
  • 4. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 4 Flowchart of Methodology Current work
  • 5. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 5 Sl. No Month & Year No. of days attended Work done by research scholar 1 January 2021 12 (Telephonic/ online conversations) Implementation of Python based algorithm (linear regression analysis and logistic regression) for Machine Learning and verification with standard datasets 2 February 2021 14 (Telephonic/ online conversations) Implementation and verification of results of Paper (a part of paper ) : J. Tian et al., "A Machine Learning-Enabled Spectrum Sensing Method for OFDM Systems," in IEEE Transactions on Vehicular Technology, vol. 68, no. 11, pp. 11374-11378, Nov. 2019 3 March 2021 13 (Telephonic/ online conversations) Dataset Generation for OFDM based Cognitive Radio 4 April 2021 04 (Telephonic/ online conversations) Simulation of Energy Detector in Python with datasets generated through Monte Carlo Simulations 5 May 2021 11 (Telephonic/ online conversations) Simulation of Cyclostationary Detector in Python with datasets generated through Monte Carlo Simulations 6 June 2021 05 (Telephonic/ online conversations) Implementation and verification of results of Paper (a part of paper ) : Y. Arjoune and N. Kaabouch, "On Spectrum Sensing, a Machine Learning Method for Cognitive Radio Systems," 2019 IEEE International Conference on Electro Information Technology (EIT), 2019, pp. 333-338 Six Month Progress (15th December 2020 to 15th June 2021)
  • 6. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 6 Python Implementation of Linear Regression Model Linear regression is a statistical method for modeling relationship between a dependent variable with a given set of independent variables. we consider dependent variables as response and independent variables as features for simplicity It is assumed that the two variables are linearly related X 0 1 2 3 4 5 6 7 8 9 Y 1 3 2 5 7 8 8 9 10 12 Table : Data Set for Linear Regression
  • 7. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 7 Cont Feature vector x = [x1, x2, ., xn], Response vector y = [y1, y2, ., yn] Regression Line is given as h(xi) represents the predicted response value for ith observation. 硫0 and 硫 1 are regression coefficients and represent y-intercept and slope of regression line respectively. 竜i is residual error in ith observation. Cost Function or square error is given by : where SSxy is the sum of cross-deviations of y and x: and SSxx is the sum of squared deviations of x.
  • 8. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 8 Results Plot 1 : Scatter Plot of dataset (Linear Regression) Estimated coefficients: 硫0 = -0.0586206896552 硫1 = 1.45747126437 Plot 2 : Plot of regression line dataset (Linear Regression)
  • 9. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 9 Python Implementation of Logistic Regression Model Logistic regression is basically a supervised classification algorithm. In a classification problem, the target variable(or output), y, can take only discrete values for given set of features(or inputs), X As Linear regression assumes that the data follows a linear function, Logistic regression models the data using the sigmoid function. Table : Data Set for Linear Regression
  • 10. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 10 Cont The dataset has p feature variables and n observations. The feature matrix is represented as: Here, denotes the values of feature for observation. The observation, can be represented as:
  • 11. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 11 Results Output : Plot 3: Regression line dataset (Linear Regression) Accuracy : 0.89
  • 12. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 12 Implementation and verification of results of Paper : J. Tian et al., "A Machine Learning-Enabled Spectrum Sensing Method for OFDM Systems," in IEEE Transactions on Vehicular Technology, vol. 68, no. 11, pp. 11374-11378, Nov. 2019, doi: 10.1109/TVT.2019.2943997. This paper proposes class assisted prediction method based on Na誰ve Bayes classifiers on OFDM systems. This paper also studies accuracy of different algorithms against different training samples.
  • 13. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 13 Implementation of Na誰ve Bayes Classifiers Bayes Theorem finds the probability of an event occurring given the probability of another event that has already occurred. Bayes theorem is stated mathematically as the following equation: where A and B are events and P(B) ? 0. Basically, we are trying to find probability of event A, given the event B is true. Event B is also termed as evidence. P(A) is the priori of A (the prior probability, i.e. Probability of event before evidence is seen). The evidence is an attribute value of an unknown instance(here, it is event B). P(A|B) is a posteriori probability of B, i.e. probability of event after evidence is seen. Why to choose Bayes Classifiers ? They are extremely fast for both training and prediction They provide straightforward probabilistic prediction They are often very easily interpretable They have very few (if any) tunable parameters
  • 14. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 14 1: Iterations = 250 2: SNR value from -5dB to -15dB 3: ModType = BPSK (It stores the modulation type. It can have one of the four values BPSK, QPSK, 16-QAM and 64-QAM). 4: Generate OFDM signal (i) T = OFDM(ModType) (ii) S = Power Adjustment(T, SNR value) + WGN (iii) Assign Signal label 5: Generate Noise (i) N = WGN (ii) Assign Noise label 6: Dataset = concatenate(Dataset, S, N) 7: Update ModType 8: Until all ModTypes go to step 4 9: Update SNR value 10: Until all SNR values go to step 3 11: Iterations = Iterations - 1 12: Go to step 2 if iterations 0 Dataset Generation Algorithm Reference : Hassaan Bin Ahmad et al. Ensemble Classifier Based Spectrum Sensing in Cognitive Radio Networks Volume 2019 |Article ID 9250562 | https://doi.org/10.1155/2019/9250562
  • 15. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 15 Energy Detection Energy detection is a non-coherent detection scheme which do not need prior knowledge about the primary user . Energy of the receiving signal in the presence of primary user is calculated If the received signal is above threshold then it is deduced that Primary user is present. Also , the output of energy detector is compared with threshold and the signal is detected .
  • 16. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 16 Fig :Detector performance with 1000 statistics Fig :Detector performance with 10000 statistics Simulation Results for Energy Detector
  • 17. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 17 Fig :Detector statistics with 1000 statistics Fig :Detector statistics with 10000 statistics
  • 18. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 18 Fig :Detector performance with 1000 statistics Fig :Detector performance with 10000 statistics Simulation Results for Cyclostationary Detector
  • 19. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 19 Implementation and verification of results of Paper : Y. Arjoune and N. Kaabouch, "On Spectrum Sensing, a Machine Learning Method for Cognitive Radio Systems," 2019 IEEE International Conference on Electro Information Technology (EIT), 2019, pp. 333-338, doi: 10.1109/EIT.2019.8834099 This paper concludes that spectrum sensing methods based on a machine learning theory for cognitive radio networks provides a more reliable solution as compared to traditional methods like Energy detection, cyclostationary and matched filter. It also states that the random forest model outperforms all the other machine learning methods. Currently working on Random Forest model , implementation of traditional methods has been done.
  • 20. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 20 Road Map for the duration of 15th June 2021 to 15th December 2021 June July August September October November December Dataset verification Implementation ML algorithms with verified datasets Compilation of results Preparation and submission of paper for various journals and conferences
  • 21. Design and Implementation of Spectrum Sensing Techniques in Cognitive Radio Systems Presented by : Neelam Dewangan 21 Thanks