-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio-5.html
More file actions
108 lines (94 loc) · 4.36 KB
/
portfolio-5.html
File metadata and controls
108 lines (94 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<div id="ajax-page" class="ajax-page-content">
<div class="ajax-page-wrapper">
<div class="ajax-page-nav">
<div class="nav-item ajax-page-prev-next">
<a class="ajax-page-load" href="portfolio-4.html"><i class="zmdi zmdi-chevron-left"></i></a>
<a class="ajax-page-load" href="portfolio-6.html"><i class="zmdi zmdi-chevron-right"></i></a>
</div>
<div class="nav-item ajax-page-close-button">
<a id="ajax-page-close-button" href="#"><i class="zmdi zmdi-close"></i></a>
</div>
</div>
<div class="ajax-page-title">
<h1>Loan Predictor</h1>
</div>
<div class="row">
<div class="col-sm-7 col-md-7 portfolio-block">
<div class="owl-carousel portfolio-page-carousel">
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture1.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture3.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture4.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture5.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture7.PNG" alt="" />
</div>
<div class="item">
<img src="images/Project Photo/Loan Predictor/Capture8.PNG" alt="" />
</div>
</div>
<!--
<div class="portfolio-page-image">
<img src="images/portfolio/1.jpg" alt="">
</div>
-->
<script type="text/javascript">
jQuery(document).ready(function($){
$('.portfolio-page-carousel').owlCarousel({
smartSpeed:1200,
items: 1,
loop: true,
dots: true,
nav: true,
navText: false,
margin: 10
});
});
</script>
</div>
<div class="col-sm-5 col-md-5 portfolio-block">
<!-- Project Description -->
<div class="block-title">
<h3>Description</h3>
</div>
<ul class="project-general-info">
<li><p><i class="fa fa-user"></i> Devendra Patil</p></li>
</ul>
<p class="text-justify">This is a Loan Predictor Created using Python. I have used DecisionTreeClassifier, LogisticRegression, RandomForestClassifier to predict the accuracy.</p>
<!-- /Project Description -->
<!-- Technology -->
<div class="tags-block">
<div class="block-title">
<h3>Technology</h3>
</div>
<ul class="tags">
<li><a>Python</a></li>
<li><a>GoogleCollab</a></li>
<li><a>Machine Learning</a></li>
</ul>
</div>
<!-- /Technology -->
<!-- Share Buttons -->
<div class="btn-group share-buttons">
<div class="block-title">
<h3>Share</h3>
</div>
<a href="#" target="_blank" class="btn"><i class="fa fa-facebook"></i> </a>
<a href="#" target="_blank" class="btn"><i class="fa fa-twitter"></i> </a>
<a href="#" target="_blank" class="btn"><i class="fa fa-dribbble"></i> </a>
</div>
<!-- /Share Buttons -->
</div>
</div>
</div>
</div>