├── images └── profile.jpg ├── index.md └── _config.yml /images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anil-matcha/Anil-matcha.github.io/master/images/profile.jpg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | ## Welcome to GitHub Pages 2 | 3 | You can use the [editor on GitHub](https://github.com/Anil-matcha/Anil-matcha.github.io/edit/master/index.md) to maintain and preview the content for your website in Markdown files. 4 | 5 | Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. 6 | 7 | ### Markdown 8 | 9 | Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for 10 | 11 | ```markdown 12 | Syntax highlighted code block 13 | 14 | # Header 1 15 | ## Header 2 16 | ### Header 3 17 | 18 | - Bulleted 19 | - List 20 | 21 | 1. Numbered 22 | 2. List 23 | 24 | **Bold** and _Italic_ and `Code` text 25 | 26 | [Link](url) and ![Image](src) 27 | ``` 28 | 29 | For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/). 30 | 31 | ### Jekyll Themes 32 | 33 | Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/Anil-matcha/Anil-matcha.github.io/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file. 34 | 35 | ### Support or Contact 36 | 37 | Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out. 38 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Site 2 | repository: Anil-matcha/Anil-matcha.github.io 3 | favicon: images/favicon.png 4 | 5 | # Personal info 6 | name: Anil Chandra Naidu Matcha 7 | title: Senior Research Engineer 8 | email: matcha72@gmail.com 9 | website: https://www.linkedin.com/in/anilmatcha/ 10 | 11 | # Social links 12 | #twitter_username: facespics 13 | github_username: Anil-matcha 14 | linkedin_username: anilmatcha 15 | #kaggle_username: matcha 16 | 17 | # About Section 18 | # about_title: About Me 19 | about_profile_image: images/profile.jpg 20 | about_content: | # this will include new lines to allow paragraphs 21 | Currently working as a senior engineer in Samsung R&D providing visual intelligence to Samsung camera.Have 4+ years experience in deep learning, computer vision and machine learning.Worked with CNN, RNN, LSTM, GAN, VAE.Well versed with latest developments in machine learning.Have experienced working through the lifecycle of the product and completing projects from scratch. 22 | 23 | I am most skilled in : 24 | - Deep Learning 25 | - Machine Learning 26 | - Statistics 27 | - Problem Solving, Critical and Creative thinking 28 | - Programming with a scientific background 29 | 30 | # Projects Section 31 | # projects_title: Projects 32 | 33 | # Experience Section 34 | # experience_title: Experience 35 | 36 | # Education Section 37 | # educaton_title: Education 38 | 39 | # More Section 40 | # more_title: A Little More About Me 41 | more_content: | # this will include new lines to allow paragraphs 42 | Alongside working on Projects I am an Active Learner: 43 | #- [List of MOOCs attended]() 44 | - [Medium Profile](https://medium.com/@shaktimaan) 45 | - Blogs 46 | 47 | The spirit that drives me everyday : "The first principle is that you must not fool yourself and you are the easiest person to fool." - Richard P. Feynman 48 | 49 | # Footer 50 | footer_show_references: false 51 | 52 | # Build settings 53 | #theme: modern-resume-theme 54 | remote_theme: sproogen/modern-resume-theme 55 | 56 | sass: 57 | sass_dir: _sass 58 | style: compressed 59 | 60 | plugins: 61 | - jekyll-seo-tag 62 | --------------------------------------------------------------------------------