Method: Cnvrg::Project#get_experiment

Defined in:
lib/cnvrg/project.rb

#get_experiment(slug) ⇒ Object



545
546
547
548
549
# File 'lib/cnvrg/project.rb', line 545

def get_experiment(slug)
  response = Cnvrg::API.request("users/#{self.owner}/projects/#{self.slug}/experiments/#{slug}", 'GET')
  CLI.is_response_success(response)
  return response
end