-
Notifications
You must be signed in to change notification settings - Fork 13
Artificial Intelligence Minor #1013
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
eb4cebb
Add Artificial Intelligence minor
NigelTatem 87e8a50
Fix linting errors in AI minor file
NigelTatem cac2fb4
Update snapshot test to include AI minor requirements
NigelTatem fe00fa2
chore: retrigger preview
NigelTatem 4c59a97
Update artificial intelligence minor
NigelTatem 64330a9
run req-gen
plumshum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| import { CollegeOrMajorRequirement, Course } from '../../requirements/types'; | ||
| import { includesWithSubRequirements, courseMatchesCodeOptions } from '../../requirements/checkers'; | ||
| import { AdvisorGroup } from '../../tools/advisors/types'; | ||
|
|
||
| const aiMinorRequirements: readonly CollegeOrMajorRequirement[] = [ | ||
| { | ||
| name: 'Foundations of AI Core Courses', | ||
| description: | ||
| 'Four required core courses covering computational AI methods, human-AI systems, and AI ethics', | ||
| source: 'https://bowers.cornell.edu/programs/artificial-intelligence-minor', | ||
| checker: includesWithSubRequirements( | ||
| ['CS 4780', 'CS 4786', 'CS 4740'], | ||
| ['CS 4700', 'CS 4701', 'CS 4720'], | ||
| ['INFO 3450', 'INFO 4450', 'CS 4450'], | ||
| ['GOVT 2049', 'INFO 2040', 'STS 2040'] | ||
| ), | ||
| fulfilledBy: 'courses', | ||
| perSlotMinCount: [1, 1, 1, 1], | ||
| slotNames: [ | ||
| 'Machine Learning Course', | ||
| 'AI/Reasoning Course', | ||
| 'Human-AI Systems Course', | ||
| 'AI Ethics Course', | ||
| ], | ||
| allowCourseDoubleCounting: true, | ||
| }, | ||
| { | ||
| name: 'AI Elective Courses', | ||
| description: 'Two AI elective courses from approved list', | ||
| source: 'https://www.cs.cornell.edu/undergrad/aiminor', | ||
| checker: [ | ||
| (course: Course): boolean => | ||
| courseMatchesCodeOptions(course, [ | ||
| 'CS 4750', | ||
| 'CS 4670', | ||
| 'CS 4780', | ||
| 'CS 4786', | ||
| 'CS 4700', | ||
| 'CS 4701', | ||
| 'CS 4720', | ||
| 'CS 4740', | ||
| 'CS 4758', | ||
| 'CS 4820', | ||
| 'CS 4850', | ||
| 'INFO 3450', | ||
| 'INFO 4450', | ||
| 'INFO 2040', | ||
| 'GOVT 2049', | ||
| 'STS 2040', | ||
| 'ORIE 4740', | ||
| 'MATH 4710', | ||
| 'MATH 4740', | ||
| ]), | ||
| ], | ||
| fulfilledBy: 'courses', | ||
| perSlotMinCount: [2], | ||
| slotNames: ['AI Elective Course'], | ||
| allowCourseDoubleCounting: true, | ||
| }, | ||
| ]; | ||
|
|
||
| export default aiMinorRequirements; | ||
|
|
||
| export const aiMinorAdvisors: AdvisorGroup = { | ||
| advisors: [{ name: 'Computer Science Department', email: '[email protected]' }], | ||
| }; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this link brings me to a broken site