-
Notifications
You must be signed in to change notification settings - Fork 0
/
Projects.js
78 lines (69 loc) · 3.79 KB
/
Projects.js
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
import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import ProjectCard from "./ProjectCards";
import Particle from "../Particle";
import leaf from "../../Assets/Projects/leaf.png";
import emotion from "../../Assets/Projects/emotion.png";
import editor from "../../Assets/Projects/codeEditor.png";
import chatify from "../../Assets/Projects/chatify.png";
import suicide from "../../Assets/Projects/suicide.png";
import bitsOfCode from "../../Assets/Projects/blog.png";
function Projects() {
return (
<Container fluid className="project-section">
<Particle />
<Container>
<h1 className="project-heading">
My Recent <strong className="purple">Works </strong>
</h1>
<p style={{ color: "white" }}>
Here are a few projects I've worked on recently.
</p>
<Row style={{ justifyContent: "center", paddingBottom: "10px" }}>
<Col md={4} className="Ping-Pong=Game">
<ProjectCard
imgPath={chatify}
isBlog={false}
title="Chatify"
description="Personal Chat Room or Workspace to share resources and hangout with friends build with react.js, Material-UI, and Firebase. Have features which allows user for realtime messaging, image sharing as well as supports reactions on messages."
ghLink="https://github.com/sachinmahajan817/Ping-Pong-Project"
demoLink="https://sachinmahajan817.github.io/Ping-Pong-Project/"
/>
</Col>
<Col md={4} className="Cripto_Tracker_Major_Project">
<ProjectCard
imgPath={editor}
isBlog={false}
title="Editor.io"
description="Online code and markdown editor build with react.js. Online Editor which supports html, css, and js code with instant view of website. Online markdown editor for building README file which supports GFM, Custom Html tags with toolbar and instant preview.Both the editor supports auto save of work using Local Storage"
ghLink="https://github.com/sachinmahajan817/CryptoTracker_major-project"
demoLink="https://ancrypt.onrender.com/#/"
/>
</Col>
<Col md={4} className="Calculator">
<ProjectCard
imgPath={leaf}
isBlog={false}
title="Plant AI"
description="Used the plant disease dataset from Kaggle and trained a image classifer model using 'PyTorch' framework using CNN and Transfer Learning with 38 classes of various plant leaves. The model was successfully able to detect diseased and healthy leaves of 14 unique plants. I was able to achieve an accuracy of 98% by using Resnet34 pretrained model."
ghLink="https://github.com/sachinmahajan817/Calculator"
demoLink="https://sachinmahajan817.github.io/Calculator/"
/>
</Col>
<Col md={4} className="To_Do_List">
<ProjectCard
imgPath={emotion}
isBlog={false}
title="Face Recognition and Emotion Detection"
description="Trained a CNN classifier using 'FER-2013 dataset' with Keras and tensorflow backened. The classifier sucessfully predicted the various types of emotions of human. And the highest accuracy obtained with the model was 60.1%.
Then used Open-CV to detect the face in an image and then pass the face to the classifer to predict the emotion of a person."
ghLink="https://github.com/sachinmahajan817/ToDoList"
// demoLink="https://sachinmahajan817.github.io/ToDoList/" <--------Please include a demo link here
/>
</Col>
</Row>
</Container>
</Container>
);
}
export default Projects;