43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}
|
||
Articles
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
|
||
<!-- Primary Page Layout
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<div class="container">
|
||
<!-- <section class="header">
|
||
|
||
</section> -->
|
||
|
||
|
||
<section>
|
||
<h2>Articles</h2>
|
||
<div class="row item">
|
||
<a class="item-screenshot-wrapper" target="_blank" href="/articles/NUTSVM">
|
||
<img class="item-screenshot" src="static/public/images/NUTSVM.jpg">
|
||
</a>
|
||
<div class="one-half offset-by-one-half column">
|
||
<h6 class="item-header">A novel method for solving universum twin bounded support vector machine in the primal space</h6>
|
||
<p class="item-project-summary"> In this Article we propose (NUTBSVM), a Newton-based approach for solving in the primal space the optimization problems related to Twin Bounded Support Vector Machines with Universum data (UTBSVM). In the NUTBSVM, the constrained programming problems of UTBSVM are converted into unconstrained optimization problems, and a generalization of Newton’s method for solving the unconstrained problems is introduced. </p>
|
||
<p class="docs-subheader">Introduction to Artificial Intelligence <span class="date">Nov 2023</span></p>
|
||
|
||
<a class="button" href="static/public/files/NUTSVM.pdf" target="_blank">Download</a>
|
||
<a class="button" href="/projects/run-models">Run</a>
|
||
<a class="button" href="https://github.com/saeedkhosravi94/resume" target="_blank">Source</a>
|
||
</div>
|
||
</div>
|
||
|
||
</section>
|
||
|
||
|
||
|
||
|
||
|
||
<!-- End Document
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
|
||
{% endblock %} |