Browse Source

Update 'README.md'

天问 1 year ago
parent
commit
7685f9bb93
1 changed files with 11 additions and 0 deletions
  1. 11 0
      README.md

+ 11 - 0
README.md

@@ -10,5 +10,16 @@ pip install tiktoken
 import tiktoken
 import torch
 
+text = f"""
+hello world
+"""
+encoding = tiktoken.encoding_for_model("gpt-3.5-turbo")
+
+# Encode 
+tokens = encoding.encode(text)
+print(tokens);
+
+# Decode
+[encoding.decode_single_token_bytes(token) for token in tokens]
 
 ```