Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello, I Am Currently Trying To Install Unsloth On My Clearml Agent. However After Trying Many Different Approaches, There Seems To Be An Issue With Installing It From Github. The Closest I Come To An Installation Is With The Following Code:

Hello,
I am currently trying to install unsloth on my ClearML agent.
However after trying many different approaches, there seems to be an issue with installing it from Github.
The closest I come to an installation is with the following code:

Task.force_store_standalone_script()
os.environ["CLEARML_LOG_MODEL"] = "True"

Task.ignore_requirements("unsloth")
Task._force_requirements[
        "unsloth @ git+
"
    ] = None

task = Task.init(project_name='All Experiments', 
                 task_name=os.getenv("TASK_NAME"))

task.execute_remotely(queue_name="default-gpu")

However with that approach, pip freeze shows the package as UNKNOWN @ git+ None and is with that unusable. Checking the pyproject.toml metadata everything is correct.

Do you have any idea how to fix this issue?
Installing from Github should generally not be an issue, right?

  
  
Posted 2 months ago
Votes Newest

Answers


Hi @<1637624975324090368:profile|ElatedBat21>
I think that what you want is:

Task.add_requirements("unsloth", "@ git+
")
task = Task.init(...)

after you do that, what are you seeing in the Task "Installed Packages" ?

  
  
Posted 2 months ago
253 Views
1 Answer
2 months ago
2 months ago
Tags