1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
|
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H__
#define DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H__
#include "structural_svm_distributed_abstract.h"
#include "structural_svm_problem.h"
#include "../bridge.h"
#include "../smart_pointers.h"
#include "../threads.h"
#include "../pipe.h"
#include "../type_safe_union.h"
#include <iostream>
#include <vector>
namespace dlib
{
// ----------------------------------------------------------------------------------------
namespace impl
{
template <typename matrix_type>
struct oracle_response
{
typedef typename matrix_type::type scalar_type;
matrix_type subgradient;
scalar_type loss;
long num;
friend void swap (oracle_response& a, oracle_response& b)
{
a.subgradient.swap(b.subgradient);
std::swap(a.loss, b.loss);
std::swap(a.num, b.num);
}
friend void serialize (const oracle_response& item, std::ostream& out)
{
serialize(item.subgradient, out);
dlib::serialize(item.loss, out);
dlib::serialize(item.num, out);
}
friend void deserialize (oracle_response& item, std::istream& in)
{
deserialize(item.subgradient, in);
dlib::deserialize(item.loss, in);
dlib::deserialize(item.num, in);
}
};
// ----------------------------------------------------------------------------------------
template <typename matrix_type>
struct oracle_request
{
typedef typename matrix_type::type scalar_type;
matrix_type current_solution;
scalar_type cur_risk_lower_bound;
double eps;
bool skip_cache;
friend void swap (oracle_request& a, oracle_request& b)
{
a.current_solution.swap(b.current_solution);
std::swap(a.cur_risk_lower_bound, b.cur_risk_lower_bound);
std::swap(a.eps, b.eps);
std::swap(a.skip_cache, b.skip_cache);
}
friend void serialize (const oracle_request& item, std::ostream& out)
{
serialize(item.current_solution, out);
dlib::serialize(item.cur_risk_lower_bound, out);
dlib::serialize(item.eps, out);
dlib::serialize(item.skip_cache, out);
}
friend void deserialize (oracle_request& item, std::istream& in)
{
deserialize(item.current_solution, in);
dlib::deserialize(item.cur_risk_lower_bound, in);
dlib::deserialize(item.eps, in);
dlib::deserialize(item.skip_cache, in);
}
};
}
// ----------------------------------------------------------------------------------------
class svm_struct_processing_node : noncopyable
{
public:
template <
typename T,
typename U
>
svm_struct_processing_node (
const structural_svm_problem<T,U>& problem,
unsigned short port,
unsigned short num_threads
)
{
// make sure requires clause is not broken
DLIB_ASSERT(port != 0 && problem.get_num_samples() != 0 &&
problem.get_num_dimensions() != 0,
"\t svm_struct_processing_node()"
<< "\n\t Invalid arguments were given to this function"
<< "\n\t port: " << port
<< "\n\t problem.get_num_samples(): " << problem.get_num_samples()
<< "\n\t problem.get_num_dimensions(): " << problem.get_num_dimensions()
<< "\n\t this: " << this
);
the_problem.reset(new node_type<T,U>(problem, port, num_threads));
}
private:
struct base
{
virtual ~base(){}
};
template <
typename matrix_type,
typename feature_vector_type
>
class node_type : public base, threaded_object
{
public:
typedef typename matrix_type::type scalar_type;
node_type(
const structural_svm_problem<matrix_type,feature_vector_type>& prob,
unsigned short port,
unsigned long num_threads
) : in(3),out(3), problem(prob), tp(num_threads)
{
b.reconfigure(listen_on_port(port), receive(in), transmit(out));
start();
}
~node_type()
{
in.disable();
out.disable();
wait();
}
private:
void thread()
{
using namespace impl;
tsu_in msg;
tsu_out temp;
while (in.dequeue(msg))
{
// initialize the cache and compute psi_true.
if (cache.size() == 0)
{
cache.resize(problem.get_num_samples());
for (unsigned long i = 0; i < cache.size(); ++i)
cache[i].init(&problem,i);
psi_true.set_size(problem.get_num_dimensions(),1);
psi_true = 0;
const unsigned long num = problem.get_num_samples();
feature_vector_type ftemp;
for (unsigned long i = 0; i < num; ++i)
{
cache[i].get_truth_joint_feature_vector_cached(ftemp);
subtract_from(psi_true, ftemp);
}
}
if (msg.template contains<bridge_status>() &&
msg.template get<bridge_status>().is_connected)
{
temp = problem.get_num_dimensions();
out.enqueue(temp);
}
else if (msg.template contains<oracle_request<matrix_type> >())
{
const oracle_request<matrix_type>& req = msg.template get<oracle_request<matrix_type> >();
oracle_response<matrix_type>& data = temp.template get<oracle_response<matrix_type> >();
data.subgradient = psi_true;
data.loss = 0;
data.num = problem.get_num_samples();
// how many samples to process in a single task (aim for 100 jobs per thread)
const long block_size = std::max<long>(1, data.num / (1+tp.num_threads_in_pool()*100));
binder b(*this, req, data);
for (long i = 0; i < data.num; i+=block_size)
{
tp.add_task(b, &binder::call_oracle, i, std::min(i + block_size, data.num));
}
tp.wait_for_all_tasks();
out.enqueue(temp);
}
}
}
struct binder
{
binder (
const node_type& self_,
const impl::oracle_request<matrix_type>& req_,
impl::oracle_response<matrix_type>& data_
) : self(self_), req(req_), data(data_) {}
void call_oracle (
long begin,
long end
)
{
// If we are only going to call the separation oracle once then
// don't run the slightly more complex for loop version of this code.
if (end-begin <= 1)
{
scalar_type loss;
feature_vector_type ftemp;
self.cache[begin].separation_oracle_cached(req.skip_cache,
req.cur_risk_lower_bound,
req.current_solution,
loss,
ftemp);
auto_mutex lock(self.accum_mutex);
data.loss += loss;
add_to(data.subgradient, ftemp);
}
else
{
scalar_type loss = 0;
matrix_type faccum(data.subgradient.size(),1);
faccum = 0;
feature_vector_type ftemp;
for (long i = begin; i < end; ++i)
{
scalar_type loss_temp;
self.cache[i].separation_oracle_cached(req.skip_cache,
req.cur_risk_lower_bound,
req.current_solution,
loss_temp,
ftemp);
loss += loss_temp;
add_to(faccum, ftemp);
}
auto_mutex lock(self.accum_mutex);
data.loss += loss;
add_to(data.subgradient, faccum);
}
}
const node_type& self;
const impl::oracle_request<matrix_type>& req;
impl::oracle_response<matrix_type>& data;
};
typedef type_safe_union<impl::oracle_request<matrix_type>, bridge_status> tsu_in;
typedef type_safe_union<impl::oracle_response<matrix_type> , long> tsu_out;
pipe<tsu_in> in;
pipe<tsu_out> out;
bridge b;
mutable matrix_type psi_true;
const structural_svm_problem<matrix_type,feature_vector_type>& problem;
mutable std::vector<cache_element_structural_svm<structural_svm_problem<matrix_type,feature_vector_type> > > cache;
mutable thread_pool tp;
mutex accum_mutex;
};
scoped_ptr<base> the_problem;
};
// ----------------------------------------------------------------------------------------
class svm_struct_controller_node : noncopyable
{
public:
svm_struct_controller_node (
) :
eps(0.001),
verbose(false),
C(1)
{}
void set_epsilon (
double eps_
)
{
// make sure requires clause is not broken
DLIB_ASSERT(eps_ > 0,
"\t void structural_svm_problem::set_epsilon()"
<< "\n\t eps_ must be greater than 0"
<< "\n\t eps_: " << eps_
<< "\n\t this: " << this
);
eps = eps_;
}
double get_epsilon (
) const { return eps; }
void be_verbose (
)
{
verbose = true;
}
void be_quiet(
)
{
verbose = false;
}
double get_c (
) const { return C; }
void set_c (
double C_
)
{
// make sure requires clause is not broken
DLIB_ASSERT(C_ > 0,
"\t void structural_svm_problem::set_c()"
<< "\n\t C_ must be greater than 0"
<< "\n\t C_: " << C_
<< "\n\t this: " << this
);
C = C_;
}
void add_processing_node (
const std::string& ip,
unsigned short port
)
{
// make sure requires clause is not broken
DLIB_ASSERT(is_ip_address(ip) && port != 0,
"\t void structural_svm_problem::add_processing_node()"
<< "\n\t Invalid inputs were given to this function"
<< "\n\t ip: " << ip
<< "\n\t port: " << port
<< "\n\t this: " << this
);
// check if this pair is already registered
for (unsigned long i = 0; i < nodes.size(); ++i)
{
if (nodes[i] == make_pair(ip,port))
{
return;
}
}
nodes.push_back(make_pair(ip,port));
}
unsigned long get_num_processing_nodes (
) const
{
return nodes.size();
}
void remove_processing_nodes (
)
{
nodes.clear();
}
template <typename matrix_type>
double operator() (
const oca& solver,
matrix_type& w
) const
{
// make sure requires clause is not broken
DLIB_ASSERT(get_num_processing_nodes() != 0,
"\t double svm_struct_controller_node::operator()"
<< "\n\t You must add some processing nodes before calling this function."
<< "\n\t this: " << this
);
problem_type<matrix_type> problem(nodes,eps,verbose,C);
return solver(problem, w);
}
class invalid_problem : public error
{
public:
invalid_problem(
const std::string& a
): error(a) {}
};
private:
template <typename matrix_type_>
class problem_type : public oca_problem<matrix_type_>
{
public:
typedef typename matrix_type_::type scalar_type;
typedef matrix_type_ matrix_type;
problem_type (
const std::vector<std::pair<std::string,unsigned short> >& nodes_,
double eps_,
bool verbose_,
double C_
) :
nodes(nodes_),
eps(eps_),
verbose(verbose_),
C(C_),
in(3),
cur_risk_lower_bound(0),
skip_cache(true),
num_dims(0)
{
// initialize all the transmit pipes
out_pipes.resize(nodes.size());
for (unsigned long i = 0; i < out_pipes.size(); ++i)
{
out_pipes[i].reset(new pipe<tsu_out>(3));
}
// make bridges that connect to all our remote processing nodes
bridges.resize(nodes.size());
for (unsigned long i = 0; i< bridges.size(); ++i)
{
bridges[i].reset(new bridge(connect_to_ip_and_port(nodes[i].first,nodes[i].second),
receive(in), transmit(*out_pipes[i])));
}
// The remote processing nodes are supposed to all send the problem dimensionality
// upon connection. So get that and make sure everyone agrees on what it's supposed to be.
tsu_in temp;
unsigned long responses = 0;
bool seen_dim = false;
while (responses < nodes.size())
{
in.dequeue(temp);
if (temp.template contains<long>())
{
++responses;
// if this new dimension doesn't match what we have seen previously
if (seen_dim && num_dims != temp.template get<long>())
{
throw invalid_problem("remote hosts disagree on the number of dimensions!");
}
seen_dim = true;
num_dims = temp.template get<long>();
}
}
}
virtual bool risk_has_lower_bound (
scalar_type& lower_bound
) const
{
lower_bound = 0;
return true;
}
virtual bool optimization_status (
scalar_type current_objective_value,
scalar_type current_error_gap,
scalar_type current_risk_value,
scalar_type current_risk_gap,
unsigned long num_cutting_planes,
unsigned long num_iterations
) const
{
if (verbose)
{
using namespace std;
cout << "objective: " << current_objective_value << endl;
cout << "objective gap: " << current_error_gap << endl;
cout << "risk: " << current_risk_value << endl;
cout << "risk gap: " << current_risk_gap << endl;
cout << "num planes: " << num_cutting_planes << endl;
cout << "iter: " << num_iterations << endl;
cout << endl;
}
cur_risk_lower_bound = std::max<scalar_type>(current_risk_value - current_risk_gap, 0);
bool should_stop = false;
if (current_risk_gap < eps)
should_stop = true;
if (should_stop && !skip_cache)
{
// Instead of stopping we shouldn't use the cache on the next iteration. This way
// we can be sure to have the best solution rather than assuming the cache is up-to-date
// enough.
should_stop = false;
skip_cache = true;
}
else
{
skip_cache = false;
}
return should_stop;
}
virtual scalar_type get_c (
) const
{
return C;
}
virtual long get_num_dimensions (
) const
{
return num_dims;
}
virtual void get_risk (
matrix_type& w,
scalar_type& risk,
matrix_type& subgradient
) const
{
using namespace impl;
subgradient.set_size(w.size(),1);
subgradient = 0;
// send out all the oracle requests
tsu_out temp_out;
for (unsigned long i = 0; i < out_pipes.size(); ++i)
{
temp_out.template get<oracle_request<matrix_type> >().current_solution = w;
temp_out.template get<oracle_request<matrix_type> >().eps = eps;
temp_out.template get<oracle_request<matrix_type> >().cur_risk_lower_bound = cur_risk_lower_bound;
temp_out.template get<oracle_request<matrix_type> >().skip_cache = skip_cache;
out_pipes[i]->enqueue(temp_out);
}
// collect all the oracle responses
long num = 0;
scalar_type total_loss = 0;
tsu_in temp_in;
unsigned long responses = 0;
while (responses < out_pipes.size())
{
in.dequeue(temp_in);
if (temp_in.template contains<oracle_response<matrix_type> >())
{
++responses;
const oracle_response<matrix_type>& data = temp_in.template get<oracle_response<matrix_type> >();
subgradient += data.subgradient;
total_loss += data.loss;
num += data.num;
}
}
subgradient /= num;
total_loss /= num;
risk = total_loss + dot(subgradient,w);
}
std::vector<std::pair<std::string,unsigned short> > nodes;
double eps;
mutable bool verbose;
double C;
typedef type_safe_union<impl::oracle_request<matrix_type> > tsu_out;
typedef type_safe_union<impl::oracle_response<matrix_type>, long> tsu_in;
std::vector<shared_ptr<pipe<tsu_out> > > out_pipes;
mutable pipe<tsu_in> in;
std::vector<shared_ptr<bridge> > bridges;
mutable scalar_type cur_risk_lower_bound;
mutable bool skip_cache;
long num_dims;
};
std::vector<std::pair<std::string,unsigned short> > nodes;
double eps;
mutable bool verbose;
double C;
};
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H__
|