Changes between Version 5 and Version 6 of Other/Summer/2024/lLM


Ignore:
Timestamp:
Jul 8, 2024, 2:19:18 PM (5 months ago)
Author:
ssamant26
Comment:

Legend:

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

    v5 v6  
    1919}}}
    2020
     212. **SSL Connection to Maestros** Since this project requires us to first connect to the testbed and then to the RaspberryPi (Maestros), we had to familiarize ourself with SSH (Secure Shell Protocol) to securely send instructions to the Maestros. We first created ORBIT accounts to access testbed, and then followed instructions to connect:
     22{{{#!python
     23#have two command prompts open, and complete the following in both
     24ssh testbed@10.61.1.235 -L 5000:localhost:5000 #after, type in the password
     25#in one of the windows, run the following:
     26conda activate smart-box #activating a specific environment with dependencies
     27cd maestro #access directory
     28./testbed.sh
     29#in the other, run the following
     30cd /home/testbed/maestro/Maestro-Testbed/app
     31python start_experiment.py --ids 1 --video_model None --sensor_model None --chunk_size 10 --frequency 10 --directory storage #id can be changed based on running maestro
     32#to end, run the following in the same tab:
     33python end_experiment.py
     34}}}
     35After familiarizing ourselves with this, we were more prepared to run experiments ourselves and respond to connection and backend issues in the Github.
     36
     37
     38
     39
     40
    2141
    2242Week 2