init commit

This commit is contained in:
2025-11-08 19:15:39 +01:00
parent ecffcb08e8
commit c7adacf53b
470 changed files with 73751 additions and 0 deletions

43
templates/articles.html Normal file
View File

@@ -0,0 +1,43 @@
{% 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 %}