Files
Resume/templates/articles.html
2025-11-08 19:15:39 +01:00

43 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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 Newtons 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 %}