simpleladle

๐Ÿ“… Joined in 2023

๐Ÿ”ผ 3 Karma

โœ๏ธ 4 posts

๐ŸŒ€
4 total posts
Stories1
Comments3
Ask HN0
Show HN0
Jobs0
Polls0
๐Ÿ‘คsimpleladle๐Ÿ•‘2y๐Ÿ”ผ2๐Ÿ—จ๏ธ0

(Replying to PARENT post)

Just to follow up on the above replies, you could also just build a single package. For example, you could build asynchronous_union_find with `bazel build //in_memory/connected_components:asynchronous_union_find`. (This isn't very useful outside of the context of a cc_binary rule.)

This in turn allows you to only build and use the 'package' you care about without having to build the whole repo in other projects. Continuing on the above example, if you only wanted to use the asynchronous_union_find.h header file in your project, somewhere in your WORKSPACE file, you add the graph-mining library using a git_repository rule (see WORKSPACE.bazel for examples), and in a cc_library rule in a BUILD file inside your project, you can add a `@graph-mining//in_memory/connected_components:asynchronous_union_find`. Then you can include it as a header elsewhere. Building your project then only builds that package and its dependencies, and not the entire graph-mining library.

๐Ÿ‘คsimpleladle๐Ÿ•‘2y๐Ÿ”ผ0๐Ÿ—จ๏ธ0

(Replying to PARENT post)

Fundamentals of Music Theory course from University of Edinburgh[1] and its accompanying textbook[2]. It's a centered around western music but certainly a good resource.

1: https://www.coursera.org/learn/edinburgh-music-theory

2: https://books.ed.ac.uk/edinburgh-diamond/catalog/book/ed-978...

๐Ÿ‘คsimpleladle๐Ÿ•‘2y๐Ÿ”ผ0๐Ÿ—จ๏ธ0

(Replying to PARENT post)

They did; perhaps not in ways that were immediately obvious to the general public. Back in 2014, they created attention to improve how RNNs handled long sequences, an effort driven by google translate. Same goes for when they created the transformer architecture. The first product to see an improvement was also translate. They simply never exposed the bare language models to the public a la OpenAI style with GPT3
๐Ÿ‘คsimpleladle๐Ÿ•‘2y๐Ÿ”ผ0๐Ÿ—จ๏ธ0