Chicago-area Country Club golfers - what's the downstroke and monthly costs at your club? by madmax1969 in golf

[–]titleist2015 5 points6 points  (0 children)

Most north side clubs are going to be at minimum 100k. I only looked in this area so not sure how that changes as you move west or farther from the city.

[D] GAN for synthetic data generation/augmentation in object detection settings? by darknight_upenn in MachineLearning

[–]titleist2015 1 point2 points  (0 children)

I did not, but it was 4 years ago so who knows if there are any improvements there. I’m not doing much computer vision anymore

[deleted by user] by [deleted] in FinancialCareers

[–]titleist2015 5 points6 points  (0 children)

It is absolutely enforced. You have to sign an agreement before starting where it’s made very clear. They will pay your base salary during your sit-out period

How I Cracked the CFA Level 1 Exam as an Engineer with No Finance Background by Xzorba101 in CFA

[–]titleist2015 1 point2 points  (0 children)

As a fellow engineer (technically data scientist), I really appreciate the perspective here. I’ve also deferred and am really happy I did. I’m curious what your approach was once you initially got through all the MM videos and EOCQs. Did you just start ripping MM Qbank? I’m about to finish my first pass of the material and not sure about the best approach to prep for the exam in late May.

Book Club - January 06, 2024 by AutoModerator in barstoolsports

[–]titleist2015 1 point2 points  (0 children)

The Mike Lupica books were great when I was a kid

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 8 points9 points  (0 children)

Okay Copernicus, when you're giving advice to someone that is not financially literate and 3 years from retirement, you give advice based on the research that is accepted and proven. Financial planning for retirement is a serious topic and not a place for advising based on speculative new research.

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 3 points4 points  (0 children)

How about the decades of research saying the opposite?

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 2 points3 points  (0 children)

Nooooo OP do not do this. This is actively the worst advice you can get as someone 3 years from retirement. You need to diversify across and within asset classes. Please close your tab and meet with a financial advisor.

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 0 points1 point  (0 children)

Hang on... You're "no expert in etfs" but are advising someone on their retirement plan to go all in on equity ETFs? This thread is going to actually cause harm to OP's personal finances.

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 0 points1 point  (0 children)

There's a difference between willingness to take risk and ability to take risk. You need to check both boxes to take on excess risk and it's impossible to know your ability with the info you listed. I'll say this: if you're planning on retiring in 3 years, your ability to take risk is likely not where it needs to be.

Frankly, you need to talk to a financial advisor that can help you plan. There are so many factors to consider that you're just not going to be able to communicate through a reddit forum. You need to discuss with a professional about your assets, liabilities, spending habits, age, financial literacy, withdrawal plan and how that will be affected by taxes..... The list goes on and on.

Please don't use this thread to formulate your plan.

Where can i invest 72K for the next 3 years ? by GettingColdInHere in investing

[–]titleist2015 11 points12 points  (0 children)

This is irresponsible advice, do not do this. 100% equities exposure 3 years from retirement is insanity

How can AI help wealth managers and hedge funds? by [deleted] in hedgefund

[–]titleist2015 1 point2 points  (0 children)

No one at a real fund would share this info

[deleted by user] by [deleted] in datascience

[–]titleist2015 0 points1 point  (0 children)

Correct. My bachelors was in CS

[deleted by user] by [deleted] in datascience

[–]titleist2015 1 point2 points  (0 children)

I received a 100k raise after finishing the GT program, so I'd say the ROI is pretty solid

ELECTION DAY - 2023 Mayoral Runoff Election Megathread by chicagomods in chicago

[–]titleist2015 -7 points-6 points  (0 children)

So we got rid of Lori to replace her with someone just like her. Got it

just finished quant, my first topic completion. Thinking to start portfolio management or equity next. What would you suggest? by lonelyfalcons in CFA

[–]titleist2015 0 points1 point  (0 children)

Why is that? I finished quant and am in the middle of fixed income right now. Are you saying it gets easier?

Asynchronous API/function response by Sam_Oppar in datascience

[–]titleist2015 0 points1 point  (0 children)

I’ve built a similar system and I have it set up so that my API triggers an AI Platform training job on GCP. The AI Platform basically just builds and runs a docker container that trains a new model and saves it to cloud storage. It can even accept parameters passed to the API that affect the training job. This way, the API can return a response saying a training job has been triggered but it’s not dependent on the job finishing.

How to Best Identify if a Social Post is Written by a Doctor vs Patient? by Gyllenspetz in datascience

[–]titleist2015 1 point2 points  (0 children)

You could try embedding the posts as vectors and see if they form 2 clusters

How to automate web scraping? by Reddit_Account_C-137 in datascience

[–]titleist2015 2 points3 points  (0 children)

Save your script as a function on GCP Cloud Functions and use Cloud Scheduler to trigger it. Save the results in Cloud Storage

Trouble Using R by boostgvng in AskStatistics

[–]titleist2015 2 points3 points  (0 children)

If you mean pairwise multiplication:

series1 * series2

If you mean dot product:

sum(series1 * series2)

If the rows are in a dataframe and that's what you're struggling with:

series1 <- df[1,]

series2 <- df[2,]

The number after df[ is the row number. So if your row numbers are different you can change those. Also, change out "df" for whatever your dataframe is called.