I am using the WSL (Ubuntu 18.04.2 LTS) for machine learning projects. So I installed autokeras 1.0 on Python 3.6 which is based on the new tensorflow 2.0. However, all autokeras examples break with the psutil error message "NotImplementedError: can't find current frequency file".
So far, I found out that psutil is looking for a file named cpuinfo_cur_freq for each cpu e.g. in /sys/devices/system/cpu/cpu0/cpufreq/. However, in that path I only have the files cpuinfo_max_freq and scaling_max_freq. As far as I understand, the files pstool is looking for are managed by the Linux cpufreq kernel infrastructure, which obviously is not active on my system.
So I wonder if WSL supports the Linux cpufreq infrastructure at all. I could imagine this to be difficult as it would have to be coordinated with the cpu management on the Windows host system. But if WSL does support it, I would like to learn, what I need to do to get it running.
I am not sure, if this is the right place to ask, but the platforms provided by Microsoft for WSL (GitHub and UserVoice) did not seem appropriate to me.