Paul Totzke
Paul Totzke
Are you using StreamReader? WASM or Server Blazor?
I get this error with the inference_style_transfer.ipynb I'm on windows and using the ljs model --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () 8 in_lens = torch.LongTensor([text.shape[1]]).cuda() 9 with...
Give this a try: completion = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[{"role": "user", "content":"hello"}], stop=[r"\n"] ) https://community.openai.com/t/stop-n-in-gpt-3-5-turbo-leads-to-500-error/87815/12 This worked for me.