Everyone:
Welcome to CSE 30124 Introduction to Artifical Intelligence, which (as the syllabus states) is a broad introduction to the field of artificial intelligence. We will begin the semester with a brief history of the field and review of relevant mathematical concepts that form the foundation of AI. As the semester continues we will dive into Machine and Deep Learning and then at the very end loop back around to where we started.
For this week, you should familiarize yourself with using Slack, setup your GitHub assignments repository, decide how you will run the notebook software used in this course and then submit your notebook for the course primer.
Artificial Intelligence is an extremely broad field and while no doubt all of you will be familiar with some aspects of it, likely the GPT family, these tools are only a small subset of what the field encompasses as a whole.
We will begin the course at the top of the circle and work our way down. However at the end of the semester and the bottom of the circles we will find that we start to wrap back around again to the top.
For communication outside of our meeting time, we will be using Slack,
specifically the #cse-30124-sp25
channel:
There is a class mailing list, but most day-to-day communication (including office hours and homework help) should take place on Slack.
Be aware of the following:
All of your work, other than the notebook for the Course Primer, will be submitted to GitHub using git. Your third task is to setup your GitHub repository by doing the following:
Sign-in or create a GitHub account if you do not already have one.
Fork the class homeworks repository from the following template:
This will create a private cse-30124-homeworks-$TEAMNAME
repository under your own account and linked to the nd-cse-30124-sp25
organization.
Once this is done, you can clone your git repository to your local machine (or the student machines):
$ git clone git@github.com:nd-cse-30124-sp25/cse-30124-homeworks-$TEAMNAME
To remotely access your repository from the command-line, you have two options:
Setup a Personal Access Token: With this method, GitHub will generate an application specific password that you can use with HTTPS. As the PAT is a long string of characters, it is recommended that you use it in conjunction with a password manager or keyring.
Setup SSH Keys: With this method, you generate a local public and private key pair on your computer and then upload the public key to GitHub. When accessing GitHub from the command-line, you will use the private key to authenticate to the server. This is the recommended way to setup your repository as it will allow for passwordless access.
Here is a quick tutorial on how to Setup SSH Keys on the student machines (if you have not already):
Generate SSH keys if you don't have them yet:
# Accept the defaults, don't make a password if you want to go passwordless
$ ssh-keygen
Copy the contents of ~/.ssh/id_rsa.pub
to the SSH Keys section of
your GitHub settings page:
# Copy and paste the contents of this file into GitHub
$ cat ~/.ssh/id_rsa.pub
Edit/create ~/.ssh/config
to use this key with GitHub:
# Add the following to your config (replace $NETID with your netid)
$ $EDITOR ~/.ssh/config
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile /escnfs/home/$NETID/.ssh/id_rsa
Once this is done, you should be able to do git operations without a password. You will need to accept the host key the first time by typing in "yes".
Note: Please update the README.md
file to include your name
and NetID so it is straightforward to identify your account.
You are responsible for ensuring that your GitHub assignments repository is in proper order, which means you have the correct settings and permissions set. Failure to properly configure your repository will adversely impact your grade.
The readings for Wednesday, January 22nd are
Introduction to Notebooks
Please at least skim all four, but for the purposes of this course you just need to get one of the methods working to run your notebooks. Notebooks can be run locally through something like VSCode, and this is what I recommend and use. If you have other methods, please feel free to reach out to your me to discuss them.
Once you have done the readings, run the following notebook using the method of your choosing:
For your convenience the notebook is displayed below as HTML but you will likely find it easier to download the raw notebook file given above.
Note After you finish the notebook, upload a copy of it to canvas, this is the one canvas submission this semester.