├── .github └── ISSUE_TEMPLATE │ ├── broken-link.yml │ ├── config.yml │ ├── duplicate.yml │ ├── feature-request.yml │ ├── inaccuracy.yml │ └── out-of-date.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MDST_logo.png └── README.md /.github/ISSUE_TEMPLATE/broken-link.yml: -------------------------------------------------------------------------------- 1 | name: Broken link report 2 | description: Report a broken link. 3 | title: "[Link] " 4 | labels: Broken-link 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thank you for taking the time to file a bug report. Before you create a new issue please do the following: 11 | - Check the issue section to see if there is already an issue discussing your problem. 12 | 13 | - type: textarea 14 | attributes: 15 | label: "Paste the offending README listing (entire row):" 16 | validations: 17 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: Question/Help/Support 3 | url: https://github.com/MichiganDataScienceTeam/2024-Internship/discussions 4 | about: "Consider opening a dicussion if your concern is not directly related to the repository content." 5 | - name: Contact the team 6 | url: "If your concern cannot be addressed publicly, please contact the maintainers at mdst-coms@umich.edu" 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/duplicate.yml: -------------------------------------------------------------------------------- 1 | name: Duplicate positions report 2 | description: Report duplicated positions. 3 | title: "[Duplicate] " 4 | labels: Duplicate 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thank you for taking the time to file a bug report. Before you create a new issue please do the following: 11 | - Check the issue section to see if there is already an issue discussing your problem. 12 | 13 | - type: textarea 14 | attributes: 15 | label: "Paste one of the duplicates (entire row):" 16 | validations: 17 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Please submit your ideas for improving this repository here. 3 | title: "[Feature] " 4 | labels: Feature-request 5 | 6 | body: 7 | - type: textarea 8 | attributes: 9 | label: "Proposed new feature or change:" 10 | validations: 11 | required: true 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/inaccuracy.yml: -------------------------------------------------------------------------------- 1 | name: Inaccurate information report 2 | description: Report an inaccurate entry. 3 | title: "[Inaccurate] " 4 | labels: Inaccuracy 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thank you for taking the time to file a bug report. Before you create a new issue please do the following: 11 | - Check the issue section to see if there is already an issue discussing your problem. 12 | 13 | - type: textarea 14 | attributes: 15 | label: "Paste the offending README section (entire row):" 16 | validations: 17 | required: true 18 | 19 | - type: textarea 20 | attributes: 21 | label: "Explain which part of the listing is inaccurate:" 22 | validations: 23 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/out-of-date.yml: -------------------------------------------------------------------------------- 1 | name: Outdated information report 2 | description: Report an outdated entry. 3 | title: "[Out-of-date] " 4 | labels: Out-of-date 5 | 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thank you for taking the time to file a bug report. Before you create a new issue please do the following: 11 | - Check the issue section to see if there is already an issue discussing your problem. 12 | 13 | - type: textarea 14 | attributes: 15 | label: "Paste the offending README listing (entire row):" 16 | validations: 17 | required: true 18 | 19 | - type: textarea 20 | attributes: 21 | label: "Explain why the listing is out of date/what has changed:" 22 | validations: 23 | required: true -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | mdst-coms@umich.edu. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to PR 2 | For an excellent step-by-step guide for making your first contribution, refer to the [first-conbutrions](https://github.com/firstcontributions/first-contributions) repository on GitHub. 3 | 4 | Here is an overview of the steps you need to take: 5 | 6 | - Fork this repo to your personal account 7 | - Clone the *forked* repo locally 8 | - Checkout to a new branch (not *main*) 9 | - Make the changes, add and commit them before pushing 10 | - Make a pull request to the original repo (this one!) 11 | 12 | If you are coming back to working on the repo after a while, you should also do the following before you get back to work: 13 | 14 | - Sync your fork with the upstream repo (this one!) 15 | - Pull the updates locally to the *main* branch 16 | - Rebase your feature branch on *main* 17 | 18 | # Contribution Guidelines 19 | ## Scope 20 | Jobs submitted to this repository must meet the following conditions: 21 | 22 | - The position must be an internship with a start date in 2024 23 | - The position must be in Canada, United States, or be remote 24 | - The position must be directly related to data science, such as data analyst/scientist/engineer, or machine learning engineer etc. Please do not propose software engineer or quantitative trader roles to this repository 25 | 26 | ## README Formatting 27 | You should use markdown syntax when adding to the README. 28 | 29 | ## README Contents 30 | ### Company 31 | Use the most frequently used company name and link to their general career page (`.../careers etc.`). 32 | 33 | ### Role 34 | Use the position as it is listed on the careers website but remove any information if it is better suited for another column (e.g. location). Also link to the posting page directly. 35 | 36 | ### Location 37 | List all of the available in-person locations if there are less than three, else write "various locations". 38 | 39 | ### Notes 40 | Use this column to supply relevant information, such as **visa sponsorship** and **citizenship requirement**. 41 | 42 | ## Application Closed 43 | Add **CLOSED** to the top of the `Notes` column and add ~~strikethrough~~ to all other columns. 44 | 45 | ## Links Formatting 46 | You should shorten all submitted links as much as possible by removing all query parameters. These are located at the end of the url in the format of `?{parameter name}={parameter value}&...` 47 | 48 | For example, shorten 49 | ``` 50 | https://draftkings.wd1.myworkdayjobs.com/Campus_Career_Portal/job/Boston-MA/Software-Engineer-Co-Op_JR07280?source=Applicant_Source_University_Career_Fair 51 | ``` 52 | to 53 | ``` 54 | https://draftkings.wd1.myworkdayjobs.com/Campus_Career_Portal/job/Boston-MA/Software-Engineer-Co-Op_JR07280 55 | ``` 56 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /MDST_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichiganDataScienceTeam/2024-Internship/060cd4eaf36a90458032140d84b3f168949746c3/MDST_logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2024-Internship by MDST 2 | 3 | ![](MDST_logo.png) 4 | 5 | Welcome to the 2024 data science internship repo by Michigan Data Science Team! 6 | 7 | | Company | Role | Location | Min. Degree | Notes | 8 | | ------- | ---- | -------- | ----------- | ----- | 9 | | [Perpay](https://perpay.com/careers) | [Data Science Intern](https://boards.greenhouse.io/perpay/jobs/4076978007) | Philadelphia, PA | Bachelors | 10 | | [RBC](https://jobs.rbc.com/ca/en/amplify) | [Data Engineer Intern](https://jobs.rbc.com/ca/en/job/R-0000067381/Data-Engineer-RBC-Amplify-2024) | Toronto, ON | Bachelors | 11 | | [Bell](https://jobs.bell.ca/ca/en/c/students-graduates-jobs#Intern) | [AI & Data Engineering](https://jobs.bell.ca/ca/en/job/BECACA414139EXTERNALENCA/2024-Internship-Program-AI-Data-Engineering) | Toronto, ON; Montreal, QC | Bachelors | 12 | | [Capital One](https://www.capitalonecareers.ca/campus) | [Business Analyst Intern](https://www.capitalonecareers.ca/job/-/-/234/51809875536) | Toronto, ON | Bachelors | 13 | | [Epic Games](https://boards.greenhouse.io/epicgames) | [Data Software Engineer Intern](https://boards.greenhouse.io/epicgames/jobs/4957105004) | Cary, NC | 14 | | [Amazon](https://amazon.jobs/content/en/career-programs/student-programs) | [Data Science Internship - US](https://amazon.jobs/en/jobs/2426866/2024-summer-data-science-internship-united-states-student-science-recruiting) | Various | Bachelors | 15 | | [Amazon](https://amazon.jobs/content/en/career-programs/student-programs) | [Data Science Internship - US](https://amazon.jobs/en/jobs/2426864/2024-summer-data-science-internship-canada-student-science-recruiting) | Vancouver, BC; Toronto, ON | Bachelors | 16 | | [Microsoft](https://careers.microsoft.com/v2/global/en/programs/students.html) | [Data Engineer Internship - US](https://jobs.careers.microsoft.com/global/en/job/1627631/Data-Engineer%3A-Internship-Opportunities-for-University-Students%2C-Redmond) | Redmond, WA | Bachelors, Masters | 17 | | [Microsoft](https://careers.microsoft.com/v2/global/en/programs/students.html) | [Data Scientist Internship - US](https://jobs.careers.microsoft.com/global/en/job/1602323/Data-Scientist%3A-Internship-Opportunities) | Mountain View, CA | Bachelors, Masters | 18 | | [Microsoft](https://careers.microsoft.com/v2/global/en/programs/students.html) | [Data Scientist Internship - US](https://jobs.careers.microsoft.com/global/en/job/1602310/Data-Scientist%3A-Internship-Opportunities) | Redmond, WA | Bachelors, Masters | 19 | | Visa | [Associate Data Scientist – Intern - Cybersecurity](https://jobs.smartrecruiters.com/Visa/743999943242512) | Ashburn, VA | Bachelors, Masters | 20 | | Fizz | [Machine Learning Intern - Summer 2024](https://jobs.lever.co/fizz/d3647110-e2c2-4422-818d-de82e236ac74/apply) | Palo Alto, CA | Bachelors, Masters | 21 | | Elevance Health | [Data Analyst Internship - Summer 2024 - Undergraduate](https://elevancehealth.wd1.myworkdayjobs.com/en-US/ANT/job/IL-CHICAGO-233-S-WACKER-DR-STE-3700/Data-Analyst-Internship---Summer-2024--Undergraduate_JR95005-1) | Chicago, IL | Bachelors, Masters | 22 | | Databricks | [Genai Machine Learning Engineer Intern](https://boards.greenhouse.io/embed/job_app?token=7011259002) | San Francisco, CA | Bachelors, Masters | 23 | | Zanbato | [Data Engineering Intern Spring/Summer 2024](https://boards.greenhouse.io/zanbato/jobs/5486989) | Mountain View, CA | Bachelors, Masters | 24 | | Ripple | [Software Engineer Intern - Machine Learning - Summer 2024](https://ripple.com/careers/all-jobs/job/5454377?gh_jid=5454377) | Toronto, ON | Bachelors, Masters | 25 | | Ripple | [Software Engineer Intern - Data Science - Summer 2024](https://ripple.com/careers/all-jobs/job/5417573?gh_jid=5417573) | Toronto, ON | Bachelors, Masters | 26 | | Golden Hippo | [SEO Data Scientist Intern - Remote](https://boards.greenhouse.io/goldenhippo/jobs/4335653005) | Remote | Bachelors, Masters | 27 | | Blizzard Entertainment | [2024 US Summer Internship - Analytics & Data Science](https://activision.wd1.myworkdayjobs.com/Blizzard_External_Careers/job/Irvine---Blizzard---Blizzard-Way/XMLNAME-2024-US-Summer-Internship---Analytics---Data-Science_R021985) | Irvine, CA | Bachelors, Masters | 28 | | Trace3 | [AI Program Intern - Hybrid](https://boards.greenhouse.io/trace3/jobs/5477963) | Irvine, CA | Bachelors, Masters | 29 | | Trace3 | [Data and Analytics Intern - Remote](https://boards.greenhouse.io/trace3/jobs/5476254) | | Bachelors, Masters | 30 | | PlayStation Global | [Machine Learning Engineer Intern](https://boards.greenhouse.io/sonyinteractiveentertainmentglobal/jobs/4977229004) | San Diego, CA | Bachelors, Masters | 31 | | Shamrock Trading | [Data Services Intern](https://jobs.jobvite.com/shamrock/job/ozqdpfwl?nl=1&nl=1&fr=false) | Overland Park, KS | Bachelors, Masters | 32 | | Visa | [Staff Machine Learning Scientist, Intern - Summer 2024 ](https://jobs.smartrecruiters.com/Visa/743999934413999-staff-machine-learning-scientist-intern-summer-2024?trid=623f64f4-c657-499b-989f-16ab0ccee0d9) | Austin, TX | Bachelors, Masters | 33 | | Scale AI | [Machine Learning Research Engineering Intern](https://boards.greenhouse.io/scaleai/jobs/4305872005) | San Francisco, CA | Bachelors, Masters | 34 | | Fetch | [Machine Learning Engineer Apprentice](https://boards.greenhouse.io/fetchrewards/jobs/5787815003) | Madison, WI | Bachelors, Masters | 35 | | Fetch | [Machine Learning Engineer Apprentice](https://boards.greenhouse.io/fetchrewards/jobs/5787814003) | Chicago, IL | Bachelors, Masters | 36 | | Fetch | [Machine Learning Engineer Apprentice](https://boards.greenhouse.io/fetchrewards/jobs/5787816003) | Birmingham, AL | Bachelors, Masters | 37 | | NVIDIA | [Developer Technology Intern - Data Analytics - Summer 2024](https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Developer-Technology-Intern--Data-Analytics---Summer-2024_JR1971214) | Santa Clara, CA; New York, NY; Boulder, CO | Bachelors, Masters | 38 | | eBay | [Data Science Intern](https://app.ripplematch.com/v2/public/job/da8ca0f1/details) | San Francisco, CA; Bellevue, WA; New York, NY | Bachelors, Masters | 39 | | Keysight Technologies | [Machine Learning Engineering Internship ](https://careers-keysight.icims.com/jobs/13765/machine-learning-engineering-internship/job) | Atlanta, GA | Bachelors, Masters | 40 | | Insitro | [Data Science & Machine Learning Intern](https://boards.greenhouse.io/insitro/jobs/4295590006) | San Bruno, CA | Bachelors, Masters | 41 | | Toyota | [TFS Data Science Summer 2024 Internship](https://toyota.wd5.myworkdayjobs.com/TMNA_College/job/Plano-Texas/TFS-Data-Science-Summer-2024-Internship_10243939) | Plano, TX | Bachelors, Masters | 42 | | Thermo Fisher | [Data Science Intern](https://jobs.thermofisher.com/global/en/job/R-01208462/Data-Science-Intern?rx_ch=jobpost&rx_job=R-01208462&rx_medium=post&rx_paid=0&rx_r=none&rx_source=linkedin&rx_ts=20231019T124203Z&rx_vp=linkedindirectindex&utm_medium=post) | Carlsbad, CA | Bachelors, Masters | 43 | | Lumen | [Data Science ](https://jobs.lumen.com/global/en/job/331383/Intern-Data-Science-Summer-2024) | Remote | Bachelors, Masters | 44 | | Guidewire | [Machine Learning Engineer Intern](https://jobs.lever.co/guidewire/b8768601-a37f-4170-85fa-36100ea059c1/apply) | San Mateo, CA | Bachelors, Masters | 45 | | Vectra | [Data Engineering Internship](https://boards.greenhouse.io/vectranetworks/jobs/5449095) | San Jose, CA | Bachelors, Masters | 46 | | Vectra | [Data Science Internship - San Jose](https://boards.greenhouse.io/vectranetworks/jobs/5448970) | San Jose, CA | Bachelors, Masters | 47 | | Taboola | [Full-time Data Science Intern - Immediate start](https://www.taboola.com/careers/job/5452094?gh_jid=5452094) | Los Angeles, CA | Bachelors, Masters | 48 | | Bristol-Myers Squibb | [Summer 2024 – Internship - Applied Statistical Learning - Informatics & Predictive Science - Ips](https://bristolmyerssquibb.wd5.myworkdayjobs.com/en-US/BMS/job/Cambridge-Crossing---MA---US/Summer-2024---Applied-Statistical-Learning---Informatics---Predictive-Science--IPS--Internship_R1574588) | Cambridge, MA | Bachelors, Masters | 49 | | Bristol-Myers Squibb | [Summer 2024 – Internship - Data Science - Informatics and Predictive Sciences - Ips](https://bristolmyerssquibb.wd5.myworkdayjobs.com/en-US/BMS/job/Cambridge-Crossing---MA---US/Summer-2024---Data-Science---Informatics-and-Predictive-Sciences--IPS--Internship_R1574598) | Cambridge, MA | Bachelors, Masters | 50 | | Salesforce | [Summer 2024 Intern - Data Business Analyst](https://salesforce.wd12.myworkdayjobs.com/en-us/External_Career_Site/job/California---San-Francisco/Summer-2024-Intern---Data-Business-Analyst_JR223727) | San Francisco, CA | Bachelors, Masters | 51 | | Global Atlantic Financial Group | [2024 Risk & Data Analytics Intern](https://boards.greenhouse.io/gainternships/jobs/5433969) | New York, NY | Bachelors, Masters | 52 | | Sabre | [Data Science - 2024 Summer Intern](https://sabre.wd1.myworkdayjobs.com/en-US/SabreJobs/job/Dallas-Fort-Worth-Metroplex/Data-Science---2024-Summer-Intern_JR102529) | Dallas, TX | Bachelors, Masters | 53 | | Corning | [Data Science Intern ](https://corningjobs.corning.com/job/Corning-Data-Science-Intern-NY-14831/1082184300/) | Corning, NY | Bachelors, Masters | 54 | | Atlassian | [Data Science Intern ](https://campus-americas.icims.com/jobs/10594/job) | Mountain View, CA | Bachelors, Masters | 55 | | Atlassian | [Machine Learning Scientist Intern ](https://campus-americas.icims.com/jobs/11273/machine-learning-scientist-intern%252c-2024-summer-u.s/job?iis=LINKEDIN&iisn=LINKEDIN&trid=1e0b9127-2df6-4b3d-8bc4-d81ae332a601) | San Francisco, CA | Bachelors, Masters | 56 | | Centerfield | [Data Engineer Intern - Summer 2024](https://jobs.lever.co/centerfield/0bc14b28-6ab3-4dc8-8d93-773f8ff222bb/apply) | Los Angeles, CA | Bachelors, Masters | 57 | | Adobe | [2024 Intern - Machine Learning Engineer](https://careers.adobe.com/us/en/job/R141150/2024-Intern-Machine-Learning-Engineer) | Various | Bachelors, Masters | 58 | | Zoox | [Security Data Visualization Internship/Co-op](https://jobs.lever.co/zoox/bec26265-c159-40ba-b249-4d9b2604f3cc/apply) | San Mateo, CA | Bachelors, Masters | 59 | | Rivian | [Engineering Intern – 7-Month Co-Op Program - Machine Learning - Vision](https://careers.rivian.com/jobs/13816?lang=en-us&icims=1) | Normal, IL | Bachelors, Masters | 60 | | Spectrum | [Data Science ](https://jobs.spectrum.com/job/greenwood-village/2024-summer-intern-data-science/4673/54899712928) | Greenwood Village, CO | Bachelors, Masters | 61 | | Spectrum | [Data Developer ](https://jobs.spectrum.com/job/greenwood-village/2024-summer-intern-data-developer/4673/54742370256) | Greenwood Village, CO | Bachelors, Masters | 62 | | Notion | [Data Scientist Intern, Sales and Success (Summer 2024)](https://app.ripplematch.com/v2/public/job/041fe806/details) | San Francisco, CA | Bachelors, Masters | 63 | | Notion | [Data Scientist Intern, Growth (Summer 2024)](https://app.ripplematch.com/v2/public/job/787afef6/details) | San Francisco, CA | Bachelors, Masters | 64 | | Elevance Health | [Data Analyst Internship - Summer 2024 - Undergraduate ](https://elevancehealth.wd1.myworkdayjobs.com/en-US/ANT/job/IL-CHICAGO-233-S-WACKER-DR-STE-3700/Data-Analyst-Internship---Summer-2024--Undergraduate_JR89066) | Indianapolis, IN; Chicago, IL; Atlanta, GA | Bachelors, Masters | 65 | | Palantir | [Machine Learning Researcher – Internship](https://jobs.lever.co/palantir/9eda4c9e-768f-4707-b002-1c4349269cd0/apply) | Washington, DC | Bachelors, Masters | 66 | | Palantir | [Machine Learning Researcher – Internship](https://jobs.lever.co/palantir/ba8994c7-1c6d-4567-9032-441495b5e1b6/apply) | Seattle, WA | Bachelors, Masters | 67 | | Atlassian | [Data Science Intern](https://www.atlassian.com/company/careers/details/10594) | Mountain View, CA | Bachelors, Masters | 68 | | Asana | [SF Summer Data Science Internship](https://www.asana.com/jobs/apply/5175585?gh_jid=5175585) | San Francisco, CA | Bachelors, Masters | 69 | | Zoox | [Data Science Intern](https://jobs.lever.co/zoox/9309308c-4af1-4696-a24b-c699d2c316b5/apply) | San Mateo, CA | Bachelors, Masters | 70 | | StackAdapt | [Data Analyst – Intern](https://jobs.lever.co/stackadapt/fb4adade-d082-40bc-a71a-a5be6c05c6d6/apply) | Canada | Bachelors, Masters | 71 | | Recorded Future | [Data Science Co-op - Research - Python - Nosql](https://boards.greenhouse.io/recordedfuture/jobs/6937026002) | Cambridge, MA | Bachelors, Masters | 72 | | Vectra | [Data Science Internship - Boston - MA](https://boards.greenhouse.io/vectranetworks/jobs/5330891) | Cambridge, MA | Bachelors, Masters | 73 | | First Resonance | [Data Engineer Intern - 2024 ](https://boards.greenhouse.io/firstresonance/jobs/5735233003) | Remote | Bachelors, Masters | 74 | | Perpay | [Data Engineering Internship - 2024](https://boards.greenhouse.io/perpay/jobs/4076965007) | Philadelphia, PA | Bachelors, Masters | 75 | | Overbond | [Data Science Intern – Pey/Co-Op](https://jobs.lever.co/overbond/3982e23c-e913-4a51-b237-7108cf3a3fc1/apply) | Canada | Bachelors, Masters | 76 | | OP3N | [Machine Learning Engineer Intern - Remote](https://boards.greenhouse.io/op3n/jobs/4251821006) | Los Angeles, CA | Bachelors, Masters | 77 | | Gilead Sciences | [Intern – Global Clinical Data Standards](https://gilead.wd1.myworkdayjobs.com/gileadcareers/job/United-States---California---Foster-City/Intern---Global-Clinical-Data-Standards_R0037772) | San Mateo, CA | Bachelors, Masters | 78 | | Gilead Sciences | [Intern – Clinical Data Science - Development Systems](https://gilead.wd1.myworkdayjobs.com/gileadcareers/job/United-States---California---Foster-City/Intern---Clinical-Data-Science--Development-Systems_R0037853) | San Mateo, CA | Bachelors, Masters | 79 | | Zello | [Data Analyst Intern](https://jobs.ashbyhq.com/Zello/84006244-1cdd-4626-92ef-6abf7ac3d807/application) | Austin, TX | Bachelors, Masters | 80 | | Gilead Sciences | [Intern – Associate Data Visualization Programmer](https://gilead.wd1.myworkdayjobs.com/gileadcareers/job/United-States---California---Foster-City/Intern---Associate-Data-Visualization-Programmer_R0037774) | San Mateo, CA | Bachelors, Masters | 81 | | General Mills | [Data Science Intern ](https://app.ripplematch.com/v2/public/job/71309fd0/details) | Minneapolis, MN | Bachelors, Masters | 82 | | Epic Games | [Data Software Engineer Intern](https://boards.greenhouse.io/epicgames/jobs/4957105004) | Morrisville, NC | Bachelors, Masters | 83 | | Honeywell | [IT or Cybersecurity or Data Science Intern ](https://careers.honeywell.com/us/en/job/HONEUSREQ413283EXTERNALENUS/Information-Systems-IT-Cyber-Engineer-Data-Science-Summer-2024-Intern-Co-Ops-US-Person-Requir) | Various | Bachelors, Masters | 84 | | Figma | [Data Science Intern (2024)](https://app.ripplematch.com/v2/public/job/f1076b21/details) | San Francisco, CA; New York, NY | Bachelors, Masters | 85 | | Rivian | [Data Engineering and Analytics – Summer 2024 Internships ](https://careers.rivian.com/jobs/12601?lang=en-us&icims=1) | Irvine, CA | Bachelors, Masters | 86 | | Wells Fargo | [Software or Data Engineer Intern ](https://www.wellsfargojobs.com/en/jobs/r-298768/2024-summer-internship-early-careers-technology-software-or-data-engineer) | Various | Bachelors, Masters | 87 | | Figma | [Data Scientist Intern - 2024](https://boards.greenhouse.io/figma/jobs/4956894004) | San Francisco, CA; New York, NY | Bachelors, Masters | 88 | | Salesforce | [Summer 2024 Intern - Data Science - Data & Analytics](https://salesforce.wd12.myworkdayjobs.com/en-us/External_Career_Site/job/Texas---Dallas/Data-Science-Intern--Data---Analytics--Summer-2024-_JR211411-1) | Indianapolis, IN; Dallas, TX; Atlanta, GA | Bachelors, Masters | 89 | | Intel | [Undergraduate Internship - Data Science - Bachelors](https://intel.wd1.myworkdayjobs.com/en-us/external/job/US-Arizona-Phoenix/Undergraduate-Internship---Data-Science---Bachelors-_JR0247229) | Albuquerque, NM; Santa Clara, CA; Hillsboro, OR; Phoenix, AZ | Bachelors, Masters | 90 | | Jump Trading | [Campus Data Engineer – Intern](https://www.jumptrading.com/careers/5281435?gh_jid=5281435) | Chicago, IL | Bachelors, Masters | 91 | | Tesla | [Software Engineering & Machine Learning Intern - Vehicle Hardware](https://www.tesla.com/careers/search/job/vehicle-hardware-software-engineering-and-machine-learning-internship-spring-summer-2024-206421) | Palo Alto, CA | Bachelors, Masters | 92 | | JD.com Inc | [JD Logistics – Data Analyst Intern - Logistics/Supply Chain](https://boards.greenhouse.io/jdcom/jobs/6452981002) | Fontana, CA | Bachelors, Masters | 93 | | Cisco | [Data Scientist Intern](https://jobs.cisco.com/jobs/ProjectDetail/Data-Scientist-Intern-United-States/1405351?source=Cisco+Jobs+Career+Site&tags=CDC+Browse+all+jobs) | Various | Bachelors, Masters | 94 | | Cisco | [Data Engineer Intern](https://jobs.cisco.com/jobs/ProjectDetail/Data-Engineer-Intern-United-States/1405278?source=Cisco+Jobs+Career+Site&tags=CDC+Browse+all+jobs) | Various | Bachelors, Masters | 95 | | Wells Fargo | [Data Analytics - Summer 2024 ](https://www.wellsfargojobs.com/en/jobs/r-295402/2024-summer-internship-early-careers-analytics-data?jClickId=0f76a32d-92ba-4e35-8e19-d7a3a2b682ce&publisher=Linkedin%2520Flat%2520bid&utm_source=joveo) | Various | Bachelors, Masters | 96 | | Red Ventures | [2024 Launch Program: Data Analyst Intern](https://www.redventures.com/careers/apply/5209748?gh_jid=5209748) | Charlotte, NC | Bachelors, Masters | 97 | | WebFX | [Business Data Analyst Internship](https://jobs.lever.co/webfx/cf2e63c1-94ba-4478-b1cd-acc54cadfc75/apply) | Harrisburg, PA | Bachelors, Masters | 98 | | The Block | [Research Intern - Data](https://jobs.lever.co/theblockcrypto/00ecc02c-b30e-4d1b-a02b-2f400e53e66a/apply) | Remote | Bachelors, Masters | 99 | | Fyusion | [Computer Vision Intern - Deep Learning](https://jobs.lever.co/fyusion/31540b34-b559-4f3b-8c0a-688d504d7288/apply) | San Francisco, CA | Bachelors, Masters | 100 | --------------------------------------------------------------------------------