Skip to content

Commit

Permalink
chore: add machine learning in artificial intelligence
Browse files Browse the repository at this point in the history
  • Loading branch information
rupali-codes committed Aug 7, 2023
1 parent 8c92433 commit 4963a6b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
"name": "KDnuggets",
"description": "KDnuggets is a popular data science website that provides news, tutorials, and resources.",
"url": "https://www.kdnuggets.com/",
"category": "ml & ai",
"category": "artificial intelligence",
"subcategory": "data-science"
},
{
"name": "Datacamp Tutorials",
"description": "Provides tutorials for aspirational full stack Data Scientists.",
"url": "https://www.datacamp.com/tutorial",
"category": "ml & ai",
"category": "artificial intelligence",
"subcategory": "data-science"
},
{
"name": "Analytics Vidhya",
"description": "Analytics Vidhya is a platform for data science enthusiasts, offering tutorials, competitions, and community support.",
"url": "https://www.analyticsvidhya.com/",
"category": "ml & ai",
"category": "artificial intelligence",
"subcategory": "data-science"
},
{
"name": "Kaggle",
"description": "Kaggle is an online platform that hosts data science competitions. It's also where data scientists and machine learning practitioners worldwide come and network with each other.",
"url": "https://www.kaggle.com/",
"category": "ml & ai",
"category": "artificial intelligence",
"subcategory": "data-science"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Distill",
"description": "A platform that focuses on explaining and visualizing complex concepts in deep learning, providing in-depth articles, tutorials, and interactive visualizations to help understand and explore deep learning techniques.",
"url": "https://distill.pub/",
"category": "ml & ai",
"category": "artificial intelligence",
"subcategory": "deep-learning"
}
]
17 changes: 6 additions & 11 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,13 @@ export const sidebarData: ISidebar[] = [
],
},
{
category: 'machine learning',
category: 'artificial intelligence',
subcategory: [
{
name: 'artificial intelligence',
url: '/artificial-intelligence',
resources: DB.artificialIntelligence,
},
{
name: 'machine learning',
url: '/machine-learning',
Expand All @@ -151,16 +156,6 @@ export const sidebarData: ISidebar[] = [
},
],
},
{
category: 'artificial intelligence',
subcategory: [
{
name: 'Artificial Int.',
url: '/artificial-intelligence',
resources: DB.artificialIntelligence,
},
],
},
{
category: 'internet of things',
subcategory: [
Expand Down
6 changes: 3 additions & 3 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ export { default as oracle } from './cloud_computing_platforms/oracle.json'
export { default as ibm } from './cloud_computing_platforms/ibm.json'

//machine learning
export { default as ml } from './machine_learning/machine-learning.json'
export { default as dataScience } from './machine_learning/data-science.json'
export { default as deepLearning } from './machine_learning/deep-learning.json'
export { default as ml } from './artificial_intelligence/machine-learning.json'
export { default as dataScience } from './artificial_intelligence/data-science.json'
export { default as deepLearning } from './artificial_intelligence/deep-learning.json'
// Open-source
export { default as openSourceBlogs } from './open_source/blogs.json'
export { default as openSourceProjects } from './open_source/projects.json'
Expand Down
1 change: 0 additions & 1 deletion types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export type Category =
| 'artificial intelligence'
| 'internet of things'
| 'cloud computing'
| 'machine learning'
| 'open source'
| 'resources'
| 'youtube'
Expand Down

0 comments on commit 4963a6b

Please sign in to comment.