Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 2.37 KB

gradio.md

File metadata and controls

52 lines (41 loc) · 2.37 KB

gradio内网加载慢的问题

版本5.5测试通过

目录位置/path to conda/anaconda3/envs/conda name/lib/python3.xx/site-packages/gradio

  1. 修改 themes/utils/fonts.py 搜索googleapis 修改为 return ''#f'.......
  2. 修改templates/frontend/index.html 搜索cdnjs 修改为src="assets/iframeResizer.contentWindow.min.js"//"http://cdnjs....... 但是assets目录没有iframeResizer.contentWindow.min.js这个文件了,需要从网上下载,或者从gradio旧版本复制一个。
  3. 复制themes/utils/assets/font/Source Sans Pro 为themes/utils/assets/font/ui-sans-serif cp -r themes/utils/assets/font/Source\ Sans\ Pro themes/utils/assets/font/ui-sans-serif cd themes/utils/assets/font/ui-sans-serif cp SourceSansPro-Regular.woff2 ui-sans-serif-Regular.woff2 cp SourceSansPro-Bold.woff2 ui-sans-serif-Bold.woff2
  4. 代码中添加os.environ['GRADIO_ANALYTICS_ENABLED']='False'

版本4.29、4.32测试通过 目录位置/path to conda/anaconda3/envs/conda name/lib/python3.xx/site-packages/gradio

  1. 修改 themes/utils/fonts.py 搜索googleapis 修改为 return ''#f'.......
  2. 修改templates/frontend/index.html 搜索cdnjs 修改为src="assets/iframeResizer.contentWindow.min.js"//"http://cdnjs.......
  3. 代码中添加os.environ['GRADIO_ANALYTICS_ENABLED']='False'

版本3.36.1 之前搜到过一个网页,照着改就行了现在找不到了。

Chromadb 禁止访问posthog

需要在代码种增加参数,参考 例如在langchain中调用: from chromadb.config import Settings db = Chroma(...,client_settings=Settings(anonymized_telemetry=False)) 这是在chromadb中: db = Chroma.from_documents(texts, llama, persist_directory=persist_directory, client_settings={"anonymized_telemetry": False})

Tensorflow不能加载TensorRT的问题

tensorflow 2.16之后删除了tensorflow-gpu(最后版本停留在2.11版)。 tensorflow 2.16 安装要求 :gpu驱动450以上版本,cuda 11.2,tensorRT 6.0, cudnn 8.1。 pytorch 已经开始用cuda 12了,所以2个都用就有点麻烦的。 tensorflow 2.16.1使用tensorRT,好像连cudnn都没有加载成功。

最后只能使用tensorflow 2.11.0。 在tensorflow 2.11.0下使用tensorRT需要安装tensorflow-gpu 2.11。安装成功后,训练推理速度是上面的3倍。