Coder Social home page Coder Social logo

Comments (7)

luisroque avatar luisroque commented on May 14, 2024

I am having the same issue exactly

from whisper-jax.

sanchit-gandhi avatar sanchit-gandhi commented on May 14, 2024

Fixed on main in transformers, can you do:

pip install git+https://github.com/huggingface/transformers.git

to install transformers from main?

from whisper-jax.

nachoh8 avatar nachoh8 commented on May 14, 2024

I have tried but the error persists.

from whisper-jax.

diegofer25 avatar diegofer25 commented on May 14, 2024

any update about it? I'm having exctly same error when I try to embed the result with speechbrain audio diarization.

def transform_timestamp_list(input_list, duration):
    output_list = []

    for item in input_list:
        output_item = {
            "start": item["timestamp"][0],
            "end": item["timestamp"][1] if item["timestamp"][1] != None else duration,
            "text": item["text"]
        }
        output_list.append(output_item)

    return output_list
    
        result = pipeline(temp_file.name, task="transcribe", language="pt", return_timestamps=True)
        print("transcribe result", result)

        segments = transform_timestamp_list(result["chunks"], duration)

        # Create embedding
        def segment_embedding(segment):
            audio = Audio()
            start = segment["start"]
            # Whisper overshoots the end timestamp in the last segment
            end = min(duration, segment["end"])
            clip = Segment(start, end)
            waveform, sample_rate = audio.crop(temp_file.name, clip)
            return embedding_model(waveform[None])

        print("starting embedding")
        embeddings = np.zeros(shape=(len(segments), 192))
        for i, segment in enumerate(segments):
            embeddings[i] = segment_embedding(segment)
        embeddings = np.nan_to_num(embeddings)
        print(f'Embedding shape: {embeddings.shape}')

        # Assign speaker label
        clustering = AgglomerativeClustering(num_speakers).fit(embeddings)
        labels = clustering.labels_
        for i in range(len(segments)):
            segments[i]["speaker"] = 'SPEAKER ' + str(labels[i] + 1)

        # Make output
        output = []  # Initialize an empty list for the output
        for segment in segments:
            # Append the segment to the output list
            output.append({
                'start': str(convert_time(segment["start"])),
                'end': str(convert_time(segment["end"])),
                'speaker': segment["speaker"],
                'text': segment["text"]
            })

        print("done with embedding")
        time_end = time.time()
        time_diff = time_end - time_start

        system_info = f"""-----Processing time: {time_diff:.5} seconds-----"""
        print(system_info)

        # Add this line at the end of the handler function, before the return statement
        os.remove(temp_file.name)

        return Response(
            json = output,
            status=200
        )

LOGS

01 May, 11:19:36
There was an error while processing timestamps, we haven't found a timestamp as last token. Was WhisperTimeStampLogitsProcessor used?
01 May, 11:19:37
starting embedding
01 May, 11:19:38
Embedding shape: (12, 192)
01 May, 11:19:38
-----Processing time: 38.261 seconds-----
01 May, 11:19:38
done with embedding

from whisper-jax.

jkf87 avatar jkf87 commented on May 14, 2024

I am having the same issue exactly too

from whisper-jax.

sanchit-gandhi avatar sanchit-gandhi commented on May 14, 2024

Hey @nachoh8 - just double checked your code sample, we shouldn't be using stride_length_s=0.0 since this means we have no overlap between chunks (which will severely degrade the performance of your transcription). Could you try leaving this set to None so that it defaults to chunk_length_s / 6 = 30 / 6 = 5? This probably explains why only your first batch had timestamps, and not the successive ones.

from whisper-jax.

phineas-pta avatar phineas-pta commented on May 14, 2024

any update? i'm getting the same error, running on google colab gpu

from whisper-jax.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.