Fred Brooks' The Mythical Man-Month

Marton Trencseni - Thu 15 December 2022 • Tagged with book, management, engineering

I reflect on the core points of Fred Brooks' seminal book, The Mythical Man-Month, that I often recall and apply in my daily work.

The Mythical Man-Month

Continue reading

How good an astrophysicist is GPT-3?

Marton Trencseni - Mon 12 December 2022 • Tagged with gpt, gpt-3

Here I will show a "conversation" with GPT-3 to gauge how good an astrophysicist — or an illusion of an astrophysicist — it is. I will focus on cosmology questions, because that's most interesting part of the field.

GPT-3

Continue reading

Similar posts recommendation with Doc2Vec - Part III

Marton Trencseni - Sat 10 December 2022 • Tagged with similarity, python, gensim, word2vec, doc2vec, pyml

In the previous posts, I used the Doc2Vec neural network architecture to compute the similarities between my blog posts, and explored the quality of the scores. In this final post, I show how I added the final Articles You May Like recommendation sections to the blog — it's live!

.

Continue reading

Similar posts recommendation with Doc2Vec - Part II

Marton Trencseni - Sun 04 December 2022 • Tagged with similarity, python, gensim, word2vec, doc2vec, pyml

In the previous post, I used the Doc2Vec neural network architecture to compute the similarities between my blog posts. In this second post I investigate the results further by examining clusters in graphs.

.

Continue reading

Similar posts recommendation with Doc2Vec - Part I

Marton Trencseni - Sat 03 December 2022 • Tagged with similarity, python, gensim, word2vec, doc2vec, pyml

One of the things I learned at Facebook is the power of recommendations. Examples are People You May Know (PYMK), Groups You May Like (GYML) and Pages You May Like (PYML). Inspired by these, I am planning to add an Articles You May Like widget to Bytepawn, based on the semantic similarity of blog posts. I use the Doc2Vec neural network architecture to compute the similarity between my blog posts, and return the top 3 recommendations for each page.

.

Continue reading

Ask HN: Data Scientists, what libraries do you use for timeseries forecasting?

Marton Trencseni - Wed 30 November 2022 • Tagged with timeseries, prophet, darts, python

One of the most common Data Science tasks in a business setting is timeseries forecasting. I was curious what methods and libraries other Data Scientists use, so I posted an "Ask HN" on Hacker News. The post generated 89 comments, most of them high-quality. This is my summary of the discussion.

.

Continue reading

Estimating mathematical constants with Monte Carlo simulations

Marton Trencseni - Sun 09 October 2022 • Tagged with monte-carlo, simulation, math

I use simple Monte Carlo simulations to estimate some mathematical constants: √2, ϕ, e and π.

.

Continue reading

Common patterns in technical interviewing

Marton Trencseni - Sat 01 October 2022 • Tagged with interviewing

I will attempt to enumerate all the categories of questions commonly asked in technical interview loops, and my experience with them.

.

Continue reading

How good a particle physicist is GPT-3?

Marton Trencseni - Sat 24 September 2022 • Tagged with gpt, gpt-3

Here I will show a "conversation" with GPT-3 to gauge how good a particle physicist — or an illusion of a particle physicist — it is.

GPT-3

Continue reading

Data Science Culture Doc

Marton Trencseni - Fri 23 September 2022 • Tagged with culture

I wrote a Culture Doc for the Data Science team I lead.

Culture doc

Continue reading

How good a Data Scientist is GPT-3? - Part II

Marton Trencseni - Sat 03 September 2022 • Tagged with gpt, gpt-3

I have further "conversations" with GPT-3, this time asking more difficult questions about real-world Data Science projects I have personally worked on.

GPT-3

Continue reading

How good a Data Scientist is GPT-3?

Marton Trencseni - Sun 31 July 2022 • Tagged with gpt, gpt-3

Recently I have been playing around with OpenAI's GPT-3 and I am very impressed by it. It reminds of the famous Arthur C. Clarke quote, “Any sufficiently advanced technology is indistinguishable from magic.” Here I will show a "conversation" with GPT-3 to gauge how good a Data Scientist — or an illusion of a Data Scientist — it is.

GPT-3

Continue reading

The Elements of Typographic Style

Marton Trencseni - Sat 23 July 2022 • Tagged with book, typography

The Elements of Typographic Style by Robert Bringhurst is the most beautiful book I've ever held in my hand. This stunning piece of readable art shows Bringhurst's love for the craft of design, typography and writing, and his mastery of these subject, a result of his life-long devotion to them. I am not a professional typographer, but I enjoyed glancing at, reading and appreciating every page of this book.

The Elments of Typographic Style

Continue reading

The Culture Map

Marton Trencseni - Fri 22 July 2022 • Tagged with book, management, culture

The Culture Map by Erin Meyer is a system of 8 scales which can be used to determine how cultures vary along a spectrum. The scales can be used to analyse one culture relative to another and decode how culture influences your international collaborations. I find the considerations in the book helpful irrespective of cultural background; the 8 scales can be applied to individuals as well, irrespective of where they are from.

The Culture Map

Continue reading

Working Backwards

Marton Trencseni - Sun 10 July 2022 • Tagged with amazon, book, management, writing

Amazon established a set of principles and mechanisms, enabling the company to grow from a single founder to several hundred thousand employees while remaining stubbornly true to its mission of obsessing over customers to create long-term shareholder value.

Working Backwards

Continue reading

HBR Guide to Better Business Writing

Marton Trencseni - Fri 08 July 2022 • Tagged with hbr, book, management, writing

If your writing is sloppy and artless people will think you are the same. They won’t care about your message, they won’t do business with you. It’s not true that only ideas matter. Good writing gets ideas noticed.

HBR Guide to Better Business Writing

Continue reading

Culture Docs: Facebook, Netflix and Valve

Marton Trencseni - Sat 18 June 2022 • Tagged with culture, facebook, netflix, valve

Many companies have some sort of "Culture Doc", a booklet or similar, which explains to new joiners what the company is about. I received Facebook's "Little Red Booklet" when I joined in 2016 February, and I was amazed how good it was. Recently I was researching other companies' Culture Docs, and found a version of Netflix's and Valve's online. It's interesting to compare and contrast what these different companies choose to put in their Culture Doc. Facebook's Culture Doc is very mission and execution oriented and serious, Netflix is analytical and HR-focused, and Valve's is a lighthearted explanation of how the company works.

Move fast and break things

Continue reading

More Data Scientists should learn SQL

Marton Trencseni - Sun 29 May 2022 • Tagged with data, sql

In my experience, many Data Scientists struggle to write SQL queries in interviews.

SQL

Continue reading

Useful Python decorators for Data Scientists

Marton Trencseni - Sun 22 May 2022 • Tagged with python, decorators

I show toy implementations of Python decorator patterns that may be useful for Data Scientists.

Python decorators

Continue reading

Building a toy Python @dataclass decorator

Marton Trencseni - Thu 12 May 2022 • Tagged with python, dataclass, decorator

I write a toy implementation of Python's @dataclass decorator to improve my Python fu and learn more about decorators and metaprogramming.

Python enum

Continue reading