Skip to content

Rename llama3_2_mm to llama3_2_vision #5892

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include <executorch/examples/models/llama3_2_mm/cross_attention/cross_attention_mask.h>
#include <executorch/examples/models/llama3_2_vision/cross_attention/cross_attention_mask.h>

#include <algorithm>
#include <string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include <executorch/examples/models/llama3_2_mm/cross_attention/cross_attention_mask.h>
#include <executorch/examples/models/llama3_2_vision/cross_attention/cross_attention_mask.h>

#include <gtest/gtest.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# LICENSE file in the root directory of this source tree.

import torch
from executorch.examples.models.llama3_2_mm.preprocess.export_preprocess_lib import (
from executorch.examples.models.llama3_2_vision.preprocess.export_preprocess_lib import (
export_preprocess,
get_example_inputs,
lower_to_executorch_preprocess,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include "executorch/examples/models/llama3_2_mm/preprocess/preprocess.h"
#include "executorch/examples/models/llama3_2_vision/preprocess/preprocess.h"

#include <algorithm>
#include <cassert>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*/

#include <executorch/examples/models/llama3_2_mm/preprocess/preprocess.h>
#include <executorch/examples/models/llama3_2_vision/preprocess/preprocess.h>
#include <gtest/gtest.h>

using namespace ::testing;
Expand Down
Loading