Changes between Version 61 and Version 62 of Other/Summer/2023/Features


Ignore:
Timestamp:
Aug 7, 2023, 7:48:24 PM (11 months ago)
Author:
KatieLew
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2023/Features

    v61 v62  
    5454* **Validate results:** We discovered that there was a mistake in our training data, so last week's training results were null. There was a bias in the input data, and irrelevant learning happened.
    5555
    56 * **Retrain model:** We retrained the machine learning model using simpler test cases, like the black-white frame test. With simple black and white classes, our model obtained 100% accuracy. With more complicated classes, our model obtained 98% accuracy.
     56* **Retrain model:** We retrained the machine learning model using simpler test cases, like the black-white frame test. With simple black-and-white classes, our model obtained 100% accuracy. With more complicated classes, our model obtained 98% accuracy.
    5757
    5858* **Reformat tar files: ** We altered the program to reformat the training data. Instead of combining the frames of the random bee simulator into a video format, we compiled the data into a tar file, which consists of a png, a class, and a metadata file for each frame in the simulation. We will use these tar files as training data for the model.
     
    6060=== Week 6 Progress
    6161
    62 * **Time Varying Features: ** In order to train the model to capture time varying features (motion), we increased the channels while keeping the same kernel size. This works for small movements in the training data.
     62* **Time Varying Features: ** In order to train the model to capture time-varying features (motion), we increased the channels while keeping the same kernel size. This works for small movements in the training data.
    6363
    64 * **Clockwise-Anticlockwise Test: ** With the time-varying features accounted for, we began to train the model with patterns of motion instead of simple black and white frames. For instance, we created training data with one class of frames that move in a clockwise direction and one class of frames that move in a counterclockwise direction. Can the model detect left versus right rotations?
     64* **Clockwise-Anticlockwise Test: ** With the time-varying features accounted for, we began to train the model with patterns of motion instead of simple black-and-white frames. For instance, we created training data with one class of frames that move in a clockwise direction and one class of frames that move in a counterclockwise direction. Can the model detect left versus right rotations?
    6565
    6666* **Entropy v. Accuracy Graphs: ** We created a graph from our model output data to derive the relation between entropy versus accuracy.