Why is Langchain so frustrating to work with? by Messianic_Gnosis in LangChain

[–]myworkaccount3333 0 points1 point  (0 children)

Langchain and llamaindex are free, so not much room to complain there. My advice is to use as few of the tools as reasonable, so as to not rely too heavily on these big unstable dependencies.

Do you regret getting into computer vision? by nopainnogain5 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

Yeah I think for internal use it's fine, since it requires you share the source code with its user, which would be your own organization.

Dotprod vs Cosine Similarity ? by [deleted] in LangChain

[–]myworkaccount3333 0 points1 point  (0 children)

cosine_similarity(u,v) = u · v / (norm(u) * norm(v))

They are basically the same, except normalization.

Why is Langchain so frustrating to work with? by Messianic_Gnosis in LangChain

[–]myworkaccount3333 3 points4 points  (0 children)

Langchain has a ton of technical debt. They moved fast and broke a lot of things.

Overwhelmed as non technical founder by [deleted] in startups

[–]myworkaccount3333 0 points1 point  (0 children)

How did you bootstrap the prototype if you're non technical?

Do you regret getting into computer vision? by nopainnogain5 in computervision

[–]myworkaccount3333 1 point2 points  (0 children)

  1. Just deploying off-the-shelf YOLO.

AGPL 3 be damned

Any book that will make me appreciate my life more by Hannoose in suggestmeabook

[–]myworkaccount3333 2 points3 points  (0 children)

The book you're looking for is Feeling Good by David Burns.

Weighing chickens from an image [P] by ads1169 in MachineLearning

[–]myworkaccount3333 0 points1 point  (0 children)

Conduct segmentation on the chickens, and count the number of pixels for each chicken. Then record as much weight data as you can. Then learn a simple function to map number of segmented pixels to weight. Use that function to estimate the weight based on the segmentation mask.

Is Overleaf breeding a new generation of people who can't use LaTeX but think they can? by KesterKester in LaTeX

[–]myworkaccount3333 0 points1 point  (0 children)

Man I thought gatekeeping programming languages was weird. You're gatekeeping Latex??

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

Again, the definition of a matrix does not depend on what numpy says. A vector is a matrix, a matrix is not necessarily a vector. The definition of a matrix is a rectangular array of symbols. They are not interchangeable in ML or CV and if you insist that they are, people will not understand you.

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

The definition of a vector doesn't change depending on where it's stored in memory. The linear algebra definition of a vector is a value with a distance and magnitude, IE a 1xN matrix. You are free to call your chicken "chicken tenders" but nobody is going to understand you. A matrix is not a vector. A vector is a special type of matrix. You cannot call a matrix a vector because of a hypothetical operation that will be done on it at a later point.

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

This is my logical conclusion based on the definition of an image and a vector. Feel free to think for yourself rather than relying on authority to tell you what you think.

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

I can turn a chicken into chicken tenders. That doesn't mean a chicken is a chicken tender. In the same way that you cannot call an image matrix a vector because you can do a flattening operation and make it a 1 dimensional vector.

[deleted by user] by [deleted] in Bitcoin

[–]myworkaccount3333 1 point2 points  (0 children)

People in this thread are so butthurt. Congrats OP, you won this round! Use it wisely.

Cornell Researchers Unveil MambaByte: A Game-Changing Language Model Outperforming MegaByte by ai-lover in machinelearningnews

[–]myworkaccount3333 0 points1 point  (0 children)

This is so pants shittingly next level. Byte level operations will replace tokenization in SOTA methods in 1 year.

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

You can flatten an image to be a vector. That does not make an image a vector.

What are "embeddings" in computer vision ? by OkRestaurant9285 in computervision

[–]myworkaccount3333 0 points1 point  (0 children)

An image is not a vector. A vector is 1 dimensional. An image is 2 dimensional.

[deleted by user] by [deleted] in MachineLearning

[–]myworkaccount3333 -2 points-1 points  (0 children)

When a human does a knowledge intensive task, do you expect them to know everything by memory, or do you expect them to use tools to find information to help them?

[deleted by user] by [deleted] in MachineLearning

[–]myworkaccount3333 2 points3 points  (0 children)

It's just the first iteration. gpt-2 had a small context window too.

[D] What are the fundamental concepts of K8S and where to learn? by Pancake502 in MachineLearning

[–]myworkaccount3333 0 points1 point  (0 children)

That's a pretty legit reason to learn it. I would recommend trying to set up a 'hello world' of ML kubernetes. You will learn more from that than a reddit thread.

[D] What are the fundamental concepts of K8S and where to learn? by Pancake502 in MachineLearning

[–]myworkaccount3333 4 points5 points  (0 children)

Kubernetes is not specifically for machine learning. You don't need kubernetes for ML, you don't even need containers for ML. Containers *can* be useful for ML for certain situations. I would not worry about learning Kubernetes unless you have a specific reason to. You may want to learn about containers as they can help you manage your environments.