w1redch4d
w1redch4d
@elicn i have a branch of qemu in my local pc where i implemented some of the missing api calls, ig i have also implemented those mentioned there, mind if...
just to confirm with my changes the error doesnt fix in the emulation, as i had the file with me `vgk.sys` in this case, however i dont know about the...
i have a bit of hacky solution for it: in regexHighlight Function ```js captureGroups.push(`${Utils.escapeHtml(match)}`); return `[cc_capture_group_${total++}]`; ``` new function ```js function scrollDown(elementId) { return ` const element = document.getElementById('${elementId}'); element.scrollIntoView();...
Facing the same error, and @jongwook `clip.load("clip_off_the_shelve.pt")` doesnt work as well
The stackrace: ``` Traceback (most recent call last): File "D:\Projects\Python\Github\VQ-Diffusion\run.py", line 109, in Predictor().predict() File "D:\Projects\Python\Github\VQ-Diffusion\run.py", line 25, in predict images = VQ_Diffusion_model.generate_sample_with_condition( File "D:\Projects\Python\Github\VQ-Diffusion\run.py", line 90, in generate_sample_with_condition model_out...
> Another deeper problem is that `abspath()` is not semantically the same as `resolve()`—the latter follows symbolic links. So we need to _not_ use `resolve`, and review callers of this...
so should we take this approach instead?: ```py if WINDOWS: path = os.path._getfinalpathname(path).lstrip(r"\\?") else: path = os.path.normcase(os.path.abspath(path)) if path.startswith(os.getcwd() + os.path.sep): path = "." + path[len(os.getcwd()) :] return path ```
@pfmoore if you look at the original issue, we gotta use `resolve()` with pathlib in that case, but i dont think thats the way pip should be due to reasons...
> Sorry, I don't see why we have to use `resolve()`. Can you be more specific about where that's necessary? If the problem is that `display_path` is being called with...