반응형

 

https://github.com/ZhangGe6/onnx-modifier

 

GitHub - ZhangGe6/onnx-modifier: A tool to modify ONNX models in a visualization fashion, based on Netron and Flask.

A tool to modify ONNX models in a visualization fashion, based on Netron and Flask. - GitHub - ZhangGe6/onnx-modifier: A tool to modify ONNX models in a visualization fashion, based on Netron and F...

github.com

 

1. 설치

git clone git@github.com:ZhangGe6/onnx-modifier.git
cd onnx-modifier

pip install -r requirements.txt

2. 실행

python ./app.py

 

주의 사항

Web based며 실행 이후에는 Web Browser를 통해서 접근해야됨.
Default로 127.0.0.1:5000 을 사용하고 있으며, Loopback 주소이기 때문에, 해당 컴퓨터의 GUI를 사용해야 됨.

만약 서버에서 설치 후에 다른 컴퓨터에서 접근하고 싶을 경우 Eth에 할당된 다른 주소를 --host 옵션의 파라미터로 전달할 경우 접근 가능함

python3 ./app.py --host <<IP Address>> --port <<Port>>

혹은 해당 서버의 할당된 IP들에 대해서 사용하고 싶을 경우 0.0.0.0을 할당하면, 모든 Eth에 할당된 IP를 통해 서비스 가능함

python3 ./app.py --host 0.0.0.0 --port <<Port>>
반응형
반응형

assoc 이용 Python 확장자 형식 확인 및 설정

assoc 명령어는 특정 확장자가 어떤 형식인지 설정할 수 있는 명령어로 assoc 명령어로 ".py" 확장자의 형식을 확인함 

>> assoc | findstr ".py"

없다면 아래의 명령어로 설정함

>> assoc .py=Python.File

 

ftype 명령어로 실행방법 확인 및 설정

ftype 명령어는 파일 타입의 실행 방법에 대해 설정할 수 있는 명령어로 ftype 명령어로 Python.File 혹은 assoc로 알아낸 타입의 실행 방법을 확인함 
>> ftype | findstr "python" 
없거나 수정이 필요한 경우 아래의 명령어로 설정함 
>> ftype Python.File= "C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python<VERSION>\python.exe" "%1" %* 

".py" 확장자의 Python Script 파일을 더블 클릭하여 바로 실행되는 것을 확인함

 

반응형

+ Recent posts