Changes between Version 12 and Version 13 of Other/Summer/2024/lLM


Ignore:
Timestamp:
Jul 18, 2024, 6:07:38 PM (4 months ago)
Author:
talati
Comment:

Legend:

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

    v12 v13  
    4343**Slideshow Link**:https://docs.google.com/presentation/d/1KVkkivbBrbGRZX3KOFKji4vJhOQXKhP2bg0rk4jRsdE/edit#slide=id.p
    4444**What we did this week:**
    45 1. **Maestro Tracking** (GitHub Issue): We worked on creating an updatable JSON file for the experiment which could show the status of the experiment, as well as the specific Maestros that were running. The file can update in real time, as Maestros are turned on and off.
     451. **Maestro Tracking** (GitHub Issue): We worked on creating an updatable JSON file for the experiment which could show the status of the experiment, as well as the specific Maestros that were running. The file can update in real time, as Maestros are turned on and off. This was accomplished by adding a check_json function to the file, app.py.
     46
     47{{{#!python
     48def check_json():
     49    path = r"experiment.json"
     50    if not os.path.exists(path):
     51        experiment_dict = {
     52            "status": "off",
     53            "maestros": []
     54        }
     55        json_obj = json.dumps(experiment_dict, indent=4)
     56        with open('experiment.json', 'w') as outfile:
     57            outfile.write(json_obj)
     58    else:
     59        return
     60}}}
     61
     622. **Frontend Development**:
     63
     643. **Maestro Setup**: We got 6 Maestros setup and running within our group's local workspace. These Maestros are all set to run experiments and start collecting data. We plan roll out more Maestro devices throughout the rest of WINLAB in the coming two weeks, with the end goal of having ~25 Maestro devices throughout the facility collecting data.
     65
    4666Week 3
    4767