How to translate GPT-4's temperature scale (0 to 1) onto LLM models with a 0 to 3 scale?

GPT-4’s temperature ranges from 0 to 1, while some other LLM models out there can go from 0 to 2 or even 0 to 3. I am wondering if there is a way/formula for translating a temperature from 0 to 1 onto a 0 to 2/3 scale. Would it be linear? That is, if another LLM model is 0 to 2, would it be

ChatGPT-4 Temp = Other LLM Temp / 2

? thanks.

I guess it is linear, but you have to multiply the value of GPT temperature with the maximum value of other LLM.
So if GPT value is 0.5 and you want to map to other LLM value look for the maximum value LLM (3) then:

0.5 * 3 = 1.5