We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not seeing where the gpt2 model is handled similar to how it is done here: https://github.com/openai/tiktoken/blob/main/tiktoken_ext/openai_public.py#L10
gpt2
A simple test like:
+func TestGpt2Encoding(t *testing.T) { + if _, err := EncodingForModel("gpt2"); err != nil { + t.Error(err) + } +}
will fail like so:
--- FAIL: TestGpt2Encoding (0.00s) tiktoken_test.go:36: Unknown encoding: gpt2 FAIL exit status 1 FAIL github.com/pkoukk/tiktoken-go 0.194s
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not seeing where the
gpt2
model is handled similar to how it is done here: https://github.com/openai/tiktoken/blob/main/tiktoken_ext/openai_public.py#L10A simple test like:
will fail like so:
The text was updated successfully, but these errors were encountered: