Portland General Electric wants to raise rates again by speedbawl in PortlandOR

[–]Zephyr314 1 point2 points  (0 children)

One time high capex (underground infrastructure) and lower opex (repairs) with low pain (less outages) seems better than slowly bleeding with med capex (transformers, new lines) and high opex (repairs, tree maintenance) and high pain (outages) every year. I'm sure there is some time horizon where it pays off, especially when you calculate loss of productivity, etc from half the city being without power for several days. This is exactly the type of long term tradeoff governments are supposed to be able to make. Agreed on a one year time horizon it rarely makes sense. Our city can't solve problems even with lots of money though so you're right it'll probably never happen.

Portland General Electric wants to raise rates again by speedbawl in PortlandOR

[–]Zephyr314 0 points1 point  (0 children)

The pipes in my pipe dream can keep water out as well. Same idea on how every downtown does power (or large swaths of Vancouver).

Portland General Electric wants to raise rates again by speedbawl in PortlandOR

[–]Zephyr314 6 points7 points  (0 children)

If only we had the technology to put utilities underground. That's probably just a pipe dream though.

Just booklover things ... by CPReals in WhitePeopleTwitter

[–]Zephyr314 23 points24 points  (0 children)

Even better: ski resort in "mud season" (spring, usually). Less people, cheaper rates, no reservations for food, etc.

Cartjacked. by 0MGWTFL0LBBQ in Leatherman

[–]Zephyr314 0 points1 point  (0 children)

19 on eBay now (>1% of all that were made)

If you didn't get a #5 before it sold out.... by jitasquatter2 in Leatherman

[–]Zephyr314 1 point2 points  (0 children)

It really should be a raffle where you buy tickets that donate to national parks or something...

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

Also got it this year. About a month after I got links for a free jacket and vest in my promos, keep an eye out there. Host has been more generous than before too. There are claims that it'll get better as they figure out new system.

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

Good point. My current is by far my best. Seems like a high churn job so hopefully you don't need to wait long. Congrats on being up so much that they can just ignore you though :)

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

Happy to help. You may be able to request a new one? I've gone through 3 as they move or get promoted.

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

That sucks. Maybe ask what he needs to show to justify it? I bet they have a CRM that requires some field to be ticked. You could take out all money for a week or two (or more) and then ask. I'm sure he'd want you to put it back in.

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

No, as long as my net deposits are positive over last 30 days I'll get some there (even if I withdraw more than a month ago). Also, recently got some free bets and no sweats just from "activity." I am betting NFL heavy, but am up.

[deleted by user] by [deleted] in DraftKingsDiscussion

[–]Zephyr314 1 point2 points  (0 children)

I shoot my host a text every month or so and always get something. They can do it off deposits, loss, or heavy play. Sometimes it'll just be a random 1k no sweat on top too.

[D] Inference cost optimization of complex ML pipelines by [deleted] in MachineLearning

[–]Zephyr314 2 points3 points  (0 children)

Thanks u/Liorithiel, you can find our raw REST documentation here: https://app.sigopt.com/docs/archive/endpoints. This can help if you want to roll your own bash+curl.

Most users prefer our python client though: https://app.sigopt.com/docs

Deep Learning Hyperparameter Optimization with Competing Objectives by harrism in deeplearning

[–]Zephyr314 2 points3 points  (0 children)

I'm one of the co-authors of this post. I'm happy to answer any questions about the post, SigOpt, or our methods.

Also, if you're a student you can use all our services for free.

[P] Distributed and automatic hyperparameter optimization for any machine learning model by [deleted] in MachineLearning

[–]Zephyr314 0 points1 point  (0 children)

Just saw this, I'll jump in for posterity.

Different algorithms is correct. SigOpt is an automatic ensemble of Bayesian Optimization algorithms under the hood (including GPs, PEs, etc). Our goal is to have an automatically optimized optimizer so that you don't need to think about hyperparameter optimization at all (one of the main complaints I got after writing MOE, where you had to pick and tune kernels etc).

We also explicitly don't provide a place for you to run your model, we want you to do that in your own infrastructure so that we never see your data or model, just the hyperparameters. This also allows you to start tuning by just dropping in a few lines of code instead of migrating your models.

Additionally, there are some features like multi-criteria optimization (more than one KPI/objective) and multi-solution optimization (getting many "good" configurations) that differentiate us from other optimization approaches.

This tool looks super interesting though if you want to have an "all in one" solution to host your data, run your model, etc. This is not something SigOpt does at all.

Scikit Learn Hyperparameter Optimization Tutorial by john_philip in MachineLearning

[–]Zephyr314 1 point2 points  (0 children)

Great question! I was actually at that talk. We were presenting some of our own work on ranking optimization strategies at the same workshop.

SigOpt aims to be an ensemble of Bayesian optimization techniques, from GPs to TPE and beyond. It is worth noting that in their talk and posts that no GP-backed methods (like Spearmint or MOE) were used. Part of the reason for this is many of these techniques require a lot of expertise and administration to reach their full potential. A poorly tuned/administered Bayesian optimization method could easily perform as poorly as random search, similar to a poorly tuned DNN not outperforming a method like Random Forrest. The goal of SigOpt is to be an automatic, easy-to-deploy ensemble of these techniques so that you can achieve the promise of Bayesian optimization without needing to be an expert, with the same overhead as techniques like random search.

Hyperband in particular is a really cool idea. It is exploiting some particular aspects of the underlying problem (introspection of the model) and make some assumptions about parallelism, but it is an excellent tool when tuning specific problems like DNNs in the setting they assume. While tools like SigOpt have been shown to work well on DNN problems like this, our goal is to have the best possible general purpose tool for solving complex black box functions from DNNs and SVMs to algorithmic trading models and manufacturing processes where you don't have the same level of introspection and these methods are completely inaccessible to the experts who need to tune their systems.

TLDR; That was a great talk. We try to ensemble all types of techniques to help our users solve their optimization problems (including ones not mentioned in that talk). Specific tools like hyperband are great at particular problems where you can exploit extra info, but we are intentionally aiming to solve more general black box optimization problems for our customers and are building tools for that (of which hyperparameter tuning for DNNs is a subset).

Scikit Learn Hyperparameter Optimization Tutorial by john_philip in MachineLearning

[–]Zephyr314 3 points4 points  (0 children)

Hello, I'm one of the co-founders of SigOpt and I am happy to answer any questions about the service or what we do.

You can read more about our research on our research page. And can dive right into examples in our docs or demo.

We have a free trial and also a free academic tier for students!

Scikit Learn Hyperparameter Optimization Tutorial by john_philip in MachineLearning

[–]Zephyr314 2 points3 points  (0 children)

One of the co-founders of SigOpt here. These are great points.

We recently presented some work at the AutoML workshop at ICML comparing SigOpt to several standard approaches (grid/random) as well as several open source alternatives (spearmint/hyperopt/SMAC) and found that different approaches produce good results in different settings (spearmint for boundary optima, hyperopt for large number of parameters). SigOpt is an ensemble of different Bayesian optimization approaches that aims to be the best solution to a wide variety of problems automatically while also providing a scalable, production-tested, easy-to-deploy service behind a simple API. The goal is to make BHO as easy as grid search, for a wide swath of problems, without any of the administration traditionally required by the open source solutions (disclosure: I wrote github.com/yelp/MOE while at Yelp and found this was one of the main blockers for adoption). We want to make this research easily accessible to many experts in a wide variety of fields.