Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
AshokBatakala committed Oct 8, 2023
1 parent 400e1a8 commit 7f95712
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
50 changes: 50 additions & 0 deletions Projects/Datascience_project/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<title>My Chart</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<canvas id="myChart"></canvas>

<script>
var ctx = document.getElementById('myChart').getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
</script>
</body>
</html>
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,18 @@ <h2 class="mb-5">Skills</h2>
<span class="fa-li"><svg class="svg-inline--fa fa-check" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg><!-- <i class="fas fa-check"></i> Font Awesome fontawesome.com --></span> OpenCV</li>
</ul>
</div>

</section>
<hr class="m-0">
<!-- Interests-->
<section class="resume-section" id="Projects">
<div class="resume-section-content">
<h2 class="mb-5">Projects</h2>
<ul><li><a href="Projects\video_reshaping\index.html"> Realistic spatio temporal editing of human subjects in vidoes</a></li> </ul>
<ul>
<li><a href="Projects\video_reshaping\index.html"> Realistic spatio temporal editing of human subjects in vidoes</a></li>
<li><a href="Projects\Datascience_project\index.html">Datascience project from DS200 assignment</a></li>

</ul>

<!-- <p></p>
<p class="mb-0">I am a Master’s student at IISc with experience in computer vision, diffusion models, deep learning, and machine learning. My passion lies in developing innovative solutions to real-world problems using cutting-edge technologies. I am excited to apply my skills and knowledge to make a positive impact on society.</p> -->
Expand Down

0 comments on commit 7f95712

Please sign in to comment.