Skip to content

Commit

Permalink
[Fix] shared volume path (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoo0515 authored Feb 21, 2024
1 parent 3189890 commit c2c64be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai/fluentify.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
with open(os.path.join(self.current_path, 'data/prompt.yaml'), 'r', encoding='UTF-8') as file:
self.prompt = yaml.load(file, Loader=yaml.FullLoader)

self.audio_path = "./data/audio"
self.audio_path = "./shared-data/audio"
# self.tokenizer = AutoTokenizer.from_pretrained("facebook/wav2vec2-base-960h")
# self.ars_w2v_model = AutoModelForCTC.from_pretrained("facebook/wav2vec2-base-960h")
# self.feature_extractor = AutoFeatureExtractor.from_pretrained("facebook/wav2vec2-base-960h", sampling_rate=16000)
Expand Down

0 comments on commit c2c64be

Please sign in to comment.