Hi all!
I have been trying to work with running hyper-parameter optimization experiment by creating a base experiment and then using .py script to kick off the automatic hyper-parameter. I have been using boto3(which has a urllib3 dependency) in my environment which conflicts with the urllib3 version for clearml apparently. I was able to get a quick workaround by creating a new environment without boto3 and run the base experiment and based on that do a hyper-param optimization. (I am using a self hosted server and running the agent)
But I want to be able to use my previous base experiment but the currently does not work:
I have been getting the following error: ImportError: cannot import name ‘appengine’ from ‘urllib3.contrib’
- Any clue what might be wrong?
- Is there a way to always pick the requirements.txt instead of this only happening when installed packages is empty?