TangYuan96 / MiniGPT-3D

[MM 2024] [Need only a 3090] MiniGPT-3D: Efficiently Aligning 3D Point Clouds with Large Language Models using 2D Priors
https://tangyuan96.github.io/minigpt_3d_project_page/
71 stars 5 forks source link

Use conversation demo link #5

Closed WentangChen closed 1 month ago

WentangChen commented 1 month ago

我把链接http://127.0.0.1:7862放在浏览器之后,显示无法访问: image image 请问这个怎么解决呀?

TangYuan96 commented 1 month ago

Thanks for your interest in our work.

When using the link of the Gradio demo, there are two cases:

  1. Running MiniGPT-3D on a local server, you can directly copy the link to the browser on the local server. Because both you and your local server are within the same local network (LAN), you can access the service.

  2. Running MiniGPT-3D on a remote server and you wish to access the demo on your laptop's browser, you will first need to establish an SSH tunnel between your laptop and the remote server to project the service port of the remote server onto your laptop. Follow these instructions:

    • Way 1: a. open the cmd of windows (terminal of linux), b. input ssh -L 7860:127.0.0.1:7860 xiaoli@ip -p 22, where xiaoli@ip -p 22 is your ssh login infor on remote server. c. copy link 127.0.0.1:7860 to your laptop's browser

    • Way 2 using mobaxterm:CH Instr 1, CH Instr 2, EN Instr 1, EN Instr 2

WentangChen commented 1 month ago

Thanks for your interest in our work.

When using the link of the Gradio demo, there are two cases:

  1. Running MiniGPT-3D on a local server, you can directly copy the link to the browser on the local server. Because both you and your local server are within the same local network (LAN), you can access the service.
  2. Running MiniGPT-3D on a remote server and you wish to access the demo on your laptop's browser, you will first need to establish an SSH tunnel between your laptop and the remote server to project the service port of the remote server onto your laptop. Follow these instructions:

    • Way 1: a. open the cmd of windows (terminal of linux), b. input ssh -L 7860:127.0.0.1:7860 xiaoli@ip -p 22, where xiaoli@ip -p 22 is your ssh login infor on remote server. c. copy link 127.0.0.1:7860 to your laptop's browser
    • Way 2 using mobaxterm:CH Instr 1, CH Instr 2, EN Instr 1, EN Instr 2

Way 2 solves my problem, thanks!