tanreinama

Results 5 issues of tanreinama

The .pb file format model included in this repository is very old. So I converted it to PyTorch and tensorflow2 styles. https://github.com/tanreinama/anime-style-transfer-tf2_pytorch

# Model description **Before PR was automatically closed as a result of sync and pull, so it will be reopened.** GPTSAN is a Japanese language model using Switch Transformer. It...

The text written in Japanese on the image is translated into English and output. ``` from markitdown import MarkItDown from openai import OpenAI client = OpenAI() md = MarkItDown(llm_client=client, llm_model="gpt-4o")...

When run the code in the sample to convert an image to Markdown, an error occurs. ``` from markitdown import MarkItDown from openai import OpenAI client = OpenAI() md =...

in _get_llm_description function, base64 and mimetypes used, but not imported. ``` client = OpenAI() md = MarkItDown(llm_client=client, llm_model="gpt-4o") result = md.convert("example.jpg") >>> NameError: name 'mimetypes' is not defined ``` in...