Skip to content

Commit

Permalink
Merge pull request #11 from Capstone-Projects-2024-Spring/zhu
Browse files Browse the repository at this point in the history
Ignore pycache
  • Loading branch information
tun71427 authored Apr 2, 2024
2 parents 0939237 + 02187e7 commit a1e0f64
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@
.env.production.local

# PTH files
.checkpoints/imagebind_huge.pth
.checkpoints/imagebind_huge.pth

# pycache
__pycache__/
2 changes: 2 additions & 0 deletions HelloWorld.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
from imagebind.models import imagebind_model
from imagebind.models.imagebind_model import ModalityType

# A test file for imagebind

text_list=["A dog.", "A car", "A bird"]
image_paths=[".assets/dog_image.jpg", ".assets/car_image.jpg", ".assets/bird_image.jpg"]
audio_paths=[".assets/dog_audio.wav", ".assets/car_audio.wav", ".assets/bird_audio.wav"]
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import cv2 as cv
from setuptools import launch
import utile as utile
import Camera
import Camera as camera
import camera
import camera as camera
from tkinter import messagebox, ttk
from PIL import Image, ImageTk

Expand Down
File renamed without changes.

0 comments on commit a1e0f64

Please sign in to comment.