Unanswered
			
			
 
			
	
		
			
		
		
		
		
	
			
		
		Hey, Guys! Trying To Make Clearml Use Git Repository Via Ssh. I Placed My Private Key With Correct Permissions To Agent Machine. When I Run My Code I Can Pass Ssh Url To My Repo Via Web Ui. It Works But I'D Like To Configure It In My Worker Configuration.
@<1523701087100473344:profile|SuccessfulKoala55>
from random import random
from clearml import Task, TaskTypes
import pandas as pd
task: Task = Task.init(
    project_name="My Project",
    task_name='Sample task',
    task_type=TaskTypes.inference
)
task.connect(args)
task.execute_remotely(queue_name="default")
value = random()
task.get_logger().report_single_value(name="sample_value", value=value)
df = pd.DataFrame.from_dict({'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']})
task.register_artifact("sample_artifact", df)
365 Views
				0
Answers
				
					 
	2 years ago
				
					
						 
	2 years ago
					
			