Skip to content
Advertisement

Tag: python-3.x

Store objects between remote functions in Ray

I’m writing a project which writes using the same data a ton of times, and I have been using ray to scale this up in a cluster setting, however the files are too large to send back and forth/save on the ray object store all the time. Is there a way to save the python objects on the local nodes

Python UTF-16 unicode conversion

I’m using the below code to convert Arabic to Unicode UTF-16. for example I have an Arabic text as مرحبا this code provide Unicode string as 0x6450x6310x62d0x6280x627 The format in which I need Unicode is u0645u0631u062du0628u0627 I want to replicate this website using the above method I’m using replace method to convert 0x format to u0 format but 0x format

Advertisement