mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-11-03 19:29:52 +00:00 
			
		
		
		
	* adding multiple choice * update test cases (hard coded) * merged common code in predict_proba and predict in TransformersEstimator
		
			
				
	
	
		
			22 lines
		
	
	
		
			595 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			595 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from azureml.core import Workspace, Experiment, ScriptRunConfig
 | 
						|
 | 
						|
ws = Workspace.from_config()
 | 
						|
 | 
						|
compute_target = ws.compute_targets["V100-4"]
 | 
						|
# compute_target = ws.compute_targets['K80']
 | 
						|
command = [
 | 
						|
    "pip install torch transformers datasets flaml[blendsearch,ray] && ",
 | 
						|
    "python test_electra.py",
 | 
						|
]
 | 
						|
 | 
						|
config = ScriptRunConfig(
 | 
						|
    source_directory="hf/",
 | 
						|
    command=command,
 | 
						|
    compute_target=compute_target,
 | 
						|
)
 | 
						|
 | 
						|
exp = Experiment(ws, "test-electra")
 | 
						|
run = exp.submit(config)
 | 
						|
print(run.get_portal_url())  # link to ml.azure.com
 | 
						|
run.wait_for_completion(show_output=True)
 |