Changes between Version 3 and Version 4 of Other/Summer/2024/lLM


Ignore:
Timestamp:
Jul 8, 2024, 2:02:18 PM (8 days ago)
Author:
ssamant26
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2024/lLM

    v3 v4  
    11**HS Team Members**: Jose Rubio, Sathvik Samant, Jonathan Duran, Vedant Talati
    2 
     2https://www.orbit-lab.org/wiki/Other/Summer/2024/lLM?action=edit#
    33**Project Goal**: To create a functional smart-space for Internet-of-Things(IoT) and Machine Learning (ML) research. "Maestros," which are RaspberryPi 3B+s with various sensors, will collect a variety of multi-modal data formats (ex. temperature, humidity, RGB, motion, video, audio, etc). This data, then, will be stored on the a WINLAB server, and can be remotely connected to and experimented with using SSH.
    44
     
    77Week 1
    88**Slideshow Link**: https://docs.google.com/presentation/d/1tB2aXgDJbP6hyVbTjhTdmyO4sL-t9mIQVLcBbdQiM44/edit?usp=sharing
     9**What we did this week:**
     101. **Github** Familiarized ourselves with Cy-Phy Lab Github, understanding system architecture, existing code, and creating our credentials. We then practiced pushing and pulling commits to Github using the following command line prompts:
     11{{{#!div style="font-size: 80%"
     12Code highlighting:
     13  {{{git clone https://github.com/URL-TO-REPO-HERE #to clone repository onto local
     14git status
     15git add #takes the changes from working directory to staging area
     16git commit #takes changes from staging area and pushes to repository
     17git commit -m "ADD_COMMIT_MESSAGE_HERE" #to ensure readable Github
     18git push origin main #this pushes changes to the main repository from your local
     19
     20
     21}}}
    922
    1023