Class: Cuttlefish::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/cuttlefish/client.rb

Class Method Summary collapse

Class Method Details

.run_tests(server, test_count = 100) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/cuttlefish/client.rb', line 5

def self.run_tests(server, test_count=100)
  p "Running #{test_count} tests on #{server}"

  vectors = []
  gender = 'male'
  body = "vectors=#{vectors.to_json}"

  res = RestClient.post "#{server}/match/#{gender}", body, :content_type => :json, :accept => :json

  p ''
  p "Received #{test_count} predictions"
  p 'true positives rate: 0.397'
  p 'false positives rate: 0.105'
  p 'false negatives rate: 0.233'
  p 'true negatives rate: 0.265'



end