GithubHelp home page GithubHelp logo

ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate about stable-ts HOT 2 CLOSED

danthegoodman1 avatar danthegoodman1 commented on August 20, 2024
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate

from stable-ts.

Comments (2)

jianfch avatar jianfch commented on August 20, 2024

the script does not modify whisper.load_model() so it is not an issue with the script
check this discussion to see if it helps
if not, you can manually download the base model (or whatever model you want to run):

import whisper
base_model_link = whisper._MODELS['base']
print(base_model_link)

after you download it and get its path to load it manually:

import torch
import whisper
with open(model_path, "rb") as fp:
    checkpoint = torch.load(fp, map_location='cpu')

dims = whisper.model.ModelDimensions(**checkpoint["dims"])
model = whisper.model.Whisper(dims)
model.load_state_dict(checkpoint["model_state_dict"])
# then use the model as you would with/without modify_model()

from stable-ts.

danthegoodman1 avatar danthegoodman1 commented on August 20, 2024

works, thanks!

from stable-ts.

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.