9 ms·
Ask HN: What things are happening in ML that we can't hear over the din of LLMs?
What are some exciting things that are happening in the #ML #DataScience world that we are not able to hear over the din of LLMs?
I notice that Cynthia rudin is continuing to produce great stuff on explainable AI.
What else is going on that is not GPT/Diffusion/MultiModal?
- mike_hearn 2y agoNeRFS. It's a rethink of 3D graphics from the ground up, oriented around positioning glowing translucent orbs instead of textured polygons. The positioning and color of the orbs is learned by a NN given accurate multi-angle camera shots and poses, then you can render them on GPUs by ray tracing. The resulting scenes are entirely photo-realistic, as they were generated from photos, but they can also be explored. In theory you can also animate such scenes but how to actually do that is still a research problem. Whether this will end up being better than really well optimized polygon based systems like Nanite+photogrammetry is also an open question. The existing poly pipes are pretty damn good already.
- unwind 2y agoVery cool, thanks! NeRFs = Neural Radiance Fields, here [1] is the first hit I got that provides some example images. [1]: https://www.matthewtancik.com/nerf https://www.matthewtancik.com/nerf
- baxuz 2y agoWhat you're talking about is I think gaussian splats. NeRFS are exclusively radiance fields without any sort of regular 3d representation.
- lelag 2y agoYes, I think Gaussian Splats are were all the rage is. My limited understanding is that Nerfs are compute-heavy because each cloud point is essentially a small neural network that can compute its value from a specific camera angle. Gaussian splats are interesting since they achieve almost the same effect using a much simpler mechanism of using gaussian values at each cloud points and can be efficiently computed in real-time on GPU. While a Nerf could be used to render a novel view of a scene, it could not do so in real-time, while gaussian splats can which opens up lots of use-cases.
- Mandelmus 2y ago> My limited understanding is that Nerfs are compute-heavy because each cloud point is essentially a small neural network There's no point cloud in NeRFs. A NeRF scene is a continuous representation in a neural network, i.e. the scene is represented by neural network weights, but (unlike with 3D Gaussian Splatting) there's no explicit representation of any points. Nobody can tell you what any of the network weights represent, and there's no part of it that explicitly tells you "we have a point at location (x, y, z)". That's why 3D Gaussian Splatting is much easier to work with and create editing tools for.
- lelag 2y agoInteresting. Thanks for the clarification.
- sigmoid10 2y ago>Whether this will end up being better than really well optimized polygon based systems like Nanite+photogrammetry is also an open question I think this is pretty much settled unless we encounter any fundamental new theory roadblocks on the path of scaling ML compute. Polygon based systems like Nanite took 40+ years to develop. With Moore's law finally out of the way and Huang's law replacing it for ML, hardware development is no longer the issue. Neural visual computing today is where polygons where in the 80s. I have no doubt that it will revolutionize the industry, if only because it is so much easier to work with for artists and designers in principle. As a near-term intermediate we will probably see a lot of polygon renderers with neural generated stuff inbetween, like DLSS or just artificially generated models/textures. But this stuff we have today is like the Wright brother's first flight compared to the moon landing. I think in 40 years we'll have comprehensive real time neural rendering engines. Possibly even rendering output directly to your visual cortex, if medical science can keep up.
- WithinReason 2y agoIt's easier to just turn NeRFs/splats into polygons for faster rendering.
- sigmoid10 2y agoThat's only true today. And it's quite difficult for artists by comparison. I don't think people will bother with the complexities of polygon based graphics once they no longer have to.
- WithinReason 2y agoRasterisation will always be faster, it's mathematically simpler.
- sigmoid10 2y agoNot really. Look at how many calculations a single pixel needs in modern PBR pipelines just from shaders. And we're not even talking about the actual scene logic. A super-realistic recreation of reality will probably need a kind of learned, streaming compression that neural networks are naturally suited for.
- phireal 2y agoThere's a couple of computerphile videos on this: nerfs: https://youtu.be/wKsoGiENBHU https://youtu.be/wKsoGiENBHU Gaussian platting: https://youtu.be/VkIJbpdTujE https://youtu.be/VkIJbpdTujE
- anshumankmr 2y ago+1 to this, but one might be hard pressed to find anything nowadays that isn't involving a transfomer model somehow.
- TheDudeMan 2y agoSame sentiment here. Love the question, but transformers are still so new and so effective that they will probably dominate for a while. We (humans) are following the last thing that worked (imagine if we could do true gradient decent on the algorithm space). Good question, and I'm interested to hear the other responses.
- antegamisou 2y ago> but transformers are still so new and so effective that they will probably dominate for a while. They're mostly easy grant money and are being gamed by entire research groups worldwide to be seen as effective on the published papers. State of academia...
- sdenton4 2y agoIn the area in working in (bioacoustics), embeddings from supervised learning are still consistently beating self supervised transformer embeddings. The transformers win on held out training data (in-domain) but greatly underperform on novel data (generalization). I suspect that this is because we've actually got a much more complex supervised training task than average (10k classes, multilabel), leading to much better supervised embeddings, and rather more intense needs for generalization (new species, new microphones, new geographic areas) than 'yet more humans on the internet.'
- tkulim 2y agoHey, that is a field that I am interested in (mostly inspired by a recent museum exhibition). Do you have recent papers on this topic, or labs/researchers to follow?
- 2y ago
- angusturner 2y agoOne area that I would dive into (if I had more time) is "geometric deep learning". i.e) How to design models in a principled way to respect known symmetries in the data. ConvNets are the famous/obvious example for their translation equivariance, but there are many recent examples that extend the same logic to other symmetry groups. And then there is also a question of whether certain symmetries can be discovered or identified automatically.
- mrdmnd 2y agoI've been doing some reading on LLMs for protein/RNA structure prediction and I think there's a decent amount of work on SO3 invariant transformer architectures now
- mjhay 2y agoThere's also been some work on more general Lie-group equivariant transformer models. http://proceedings.mlr.press/v139/hutchinson21a/hutchinson21a.pdf http://proceedings.mlr.press/v139/hutchinson21a/hutchinson21...
- FrustratedMonky 2y agoSeems like there is always push back on LLM's that they don't learn to do proofs and reasoning. Deepmind just placed pretty high at International Mathematical Olympiad . Here it does have to present reasoning. https://arstechnica.com/ai/2024/01/deepmind-ai-rivals-the-worlds-smartest-high-schoolers-at-geometry/ https://arstechnica.com/ai/2024/01/deepmind-ai-rivals-the-wo... And it's couple years old, but AlphaFold was pretty impressive. EDIT: Sorry, I said LLM. But meant AI/ML/NN generally, people say a computer can't reason, but DeepMind is doing it.
- imtringued 2y ago>To overcome this difficulty, DeepMind paired a language model with a more traditional symbolic deduction engine that performs algebraic and geometric reasoning. I couldn't think of a better way to demonstrate that LLMs are poor at reasoning than using this crutch.
- fennecfoxy 2y agoI suppose it's because LLM training data uses text that can contain reasoning within it, but without any specific context to specifically learn reasoning. I feel like the little reasoning an LLM can do is a byproduct of the training data. Does seem more realistic to train something not on text but on actual reasoning/logic concepts and use that along with other models for something more general purpose. LLMs should really only be used to turn "thoughts" into text and to receive instructions, not to do the actual reasoning.
- FrustratedMonky 2y agoI wouldn't say 'crutch' but component. Eventually LLMs will be plugged into Vision Systems, and Symbolic Systems, and Motion Systems, etc... etc... The LLM wont be the main 'thing'. But the text interface. Even human brain is bit segmented with different faculties being 'processed' in different areas with different architectures.
- beklein 2y agoMore like a cousin of LLMs are Vision-Language-Action (VLA) models like RT-2 [1]. Additionally to text and vision data they also include data from robot actions as "another language" as tokens to output movement actions for robots. [1]: https://robotics-transformer2.github.io https://robotics-transformer2.github.io
- kookamamie 2y agoThe SAM-family of computer-vision models have made many of the human annotation services and tools somewhat redundant, as it's possible to achieve relatively high-quality auto-labeling of vision data.
- joshvm 2y agoThis is probably true for simple objects, but there is almost certainly a market for hiring people who use SAM-based tools (or similar) to label with some level of QA. I've tried a few implementations and they struggle with complex objects and can be quite slow (due to GPU overhead). Some platforms have had some variant of "click guided" labelling for a while (eg V7) but they're not cheap to use. Prompt guided labelling is also pretty cool, but still in infancy (eg you can tell the model "label all the shadows"). Seg GPT for example. But now we're right back to LLMs... On labelling, there is still a dearth of high quality niche datasets ($$$). Everyone tests on MS-COCO and the same 5-6 segmentation datasets. Very few papers provide solid instructions for fine tuning on bespoke data.
- kookamamie 2y agoThat's basically what we are able to do now: showing models an image (or images, from video) and prompting for labels, such as with "person, soccer player".
- dmarchand90 2y agoTo plug my own field a bit, in material science and chemistry there is a lot of excitement in using machine learning to get better simulations of atomic behavior. This can open up exciting areas in drug and alloy design, maybe find new CO2 capturing material's or better cladding for fusion reactors, to name just a few. The idea is that to solve these problems you need to solve the schrodinger equation (1). But the schrodinger equation scales really badly with the number of electrons and can't get computed directly for more than a few sample cases. Even Density Functional Theory (DFT), the most popular approximation that still is reasonably accurate scales N^3 with the number of electrons, with a pretty big pre factor. A reasonable rule of thumb would be 12 hours on 12 nodes (each node being 160 cpu cores) for 256 atoms. You can play with settings and increase your budget to maybe get 2000 (and only for a few timesteps) but good luck beyond that. Machine learning seems to be really useful here. In my own work on aluminium alloys I was able to get the same simulations that would have needed hours on the supercomputer to run in seconds on a laptop. Or, do simulations with tens of thousands of atoms for long periods of time on the supercomputer. The most famous application is probably alphafold from deep mind. There are a lot of interesting questions people are still working on: What are the best input features? We don't have any nice equivalent to CNNs that are universally applicable, though some have tried 3d convnets. One of the best methods right now involves taking spherical harmonic based approximates of the local environment in some complex way I've never fully understood, but is closer to the underlying physics. Can we put physics into these models? Almost all these models fail in dumb ways sometimes. For example if I begin to squish two atoms together they should eventually repel each other and that repulsion force should scale really fast (ok maybe they fuse into a black hole or something but we're not dealing with that kind of esoteric physics here). But, all machine learning potentials will by default fail to learn this and will only learn the repulsion to the closest distance of any two atoms in their training set. Beyond that and the guess wildly. Some people are able to put this physics into the model directly but I don't think we have it totally solved yet. How do we know which atomic environments to simulate? These models can really only interpolate they can't extrapolate. But while I can get an intuition of interpolation in low dimensions once your training set consists of many features over many atoms in 3d space this becomes a high dimensional problem. In my own experience, I can get really good energies for shearing behavior of strengthening precipitates in aluminum without directly putting the structures in. But was this extrapolated or interpolated from the other structures. Not always clear. (1) sometimes also the relativistic Dirac equation. E.g. fast moving moving atoms in some of the heavier elements move at relativistic speeds.
- lelag 2y agoSome exciting projects from the last months: - 3d scene reconstruction from a few images: https://dust3r.europe.naverlabs.com/ https://dust3r.europe.naverlabs.com/ - gaussian avatars: https://shenhanqian.github.io/gaussian-avatars https://shenhanqian.github.io/gaussian-avatars - relightable gaussian codec: https://shunsukesaito.github.io/rgca/ https://shunsukesaito.github.io/rgca/ - track anything: https://co-tracker.github.io/ https://co-tracker.github.io/ https://omnimotion.github.io/ https://omnimotion.github.io/ - segment anything: https://github.com/facebookresearch/segment-anything https://github.com/facebookresearch/segment-anything - good human pose estimate models: (Yolov8, Google's mediapipe models) - realistic TTS: https://huggingface.co/coqui/XTTS-v2 https://huggingface.co/coqui/XTTS-v2, bark TTS (hit or miss) - open great STT (mostly whisper based) - machine translation (ex: seamlessm4t from meta) It's crazy to see how much is coming out of Meta's R&D alone.
- nicce 2y ago> It's crazy to see how much is coming out of Meta's R&D alone. They have the money...
- logtempo 2y agoand data
- deleted 2y ago[deleted]
- deleted 2y ago[deleted]
- teaearlgraycold 2y agoHundreds of thousands of H100s…
- FLT8 2y agoAnd a dystopian vision for the future that can make profitable use of the above ...
- publius_0xf3 2y agoIs there anything cool going on in animation? Seems like an industry that relies on a lot of rote, repetitive work and is a prime candidate for using AI to interpolate movement.
- soulofmischief 2y ago3D animation is seeing tools like https://me.meshcapade.com/ https://me.meshcapade.com/ crop up
- xrd 2y agoThat is a really creepy demo. It is cool for sure, but creepy for sure.
- ok_dad 2y agoAnyone know anything I can use to take video of a road from my car (a phone) and create a 3D scene from it? More focused on the scenery around the road as I can put a road surface in there myself later. I’m talking about several miles or perhaps more, but I don’t mind if it takes a lot of processing time or I need multiple angles, I can drive it several times from several directions. I’m trying to create a local road or two for driving on in racing simulators.
- Jedd 2y agophotogrammetry - is the key word you're looking to search on. There's quite a few advanced solutions already (predating LLM/ML)
- 0_____0 2y agoSLAM from monoscopic video. I imagine without an IMU or other high quality pose estimator you'll need to do a fair bit of manual cleanup.
- sp332 2y agoMicrosoft's PhotoSynth did this years ago, but they cancelled it.
- WhatIsDukkha 2y agoGaussian splatting, there is quite a bit of youtube about it and there are commercial packages that are trying to make a polished experience. https://www.youtube.com/@OlliHuttunen78 https://www.youtube.com/@OlliHuttunen78 edit - I just realized you want a mesh :) for which Gaussian splatting is not there yet! BUT there are multiple papers which are exploring adding gaussians to a mesh thats progressively refined, I think its inevitable based on what's needed for editing and usecases just like yours. You could start exploring and compiling footage and testing and maybe it will work out but ... Here is a news site focused on the field - https://radiancefields.com/ https://radiancefields.com/
- chpatrick 2y agoYou can do this for free now with RealityCapture, not ML though.
- hiddencost 2y agoKeep in mind that LLMs are basically just sequence to sequence models that can scan 1 million tokens and do inference affordably. The underlying advances (attention, transformers, masking, scale) that made this possible are fungible to other settings. We have a recipe for learning similar models on a huge variety of other tasks and data types.
- HarHarVeryFunny 2y agoTransformers are really more general than seq-to-seq, maybe more like set-to-set or graph-to-graph. The key insight (Jakob Uszkoreit) to using self-attention for language was that language is really more hierarchical than sequential, as indicated by linguist's tree diagrams for describing sentence structure. The leaves of one branch of a tree (or sub-tree) are independent of those in another sub-tree, allowing them to be processed in parallel (not in sequence). The idea of a multi-layer transformer is therefore to process this language hierarchy one level at a time, working from leaves on upwards through the layers of the transformer (processing smaller neighborhoods into increasingly larger neighborhoods).
- antegamisou 2y agoI wager the better question is What things are happening in fields of, or other than, CS that we don't hear over the din of ML/AI
- king_magic 2y agofeatup
- dartos 2y agoAlpha fold seems like a major medical breakthrough
- chronosift 2y agoA novel SNN framework I'm working on. Newest post has been taking me a while. metalmind.substack.com
- postatic 2y agoI launched https://app.scholars.io https://app.scholars.io to get latest research from arxiv on specific topics I’m interested in so I can filter out ones that I’m not interested. Hopefully it will help someone find research activities other than LLM.
- 4b11b4 2y agojust signed up for computer vision and image processing related topics as this is what I'm specializing in for my Master's The interface to sign up was very painless and straightforward I signed up for a 2-week periodic digest The first digest comes instantly and scanning through the titles alone was inspirational and I'm sure will provide me with more than a few great papers to read over upcoming years
- svdr 2y agoThis is a nice daily newsletter with AI news: https://tldr.tech/ai https://tldr.tech/ai
- wara23arish 2y agoI was just going to ask a similar question recently. Ive been working on a side project involving xgboost and was wondering if ML is still worth learning in 2024. My intuition says yes but what do I know.
- microtonal 2y agoI recently attended an interesting talk at a local conference. It was from someone that works at a company that makes heating systems. They want to optimize heating given the conditions of the day (building properties, outside temperature, amount of sunshine, humidity, past patterns, etc.). They have certain hard constraints wrt. model size, training/update compute, etc. Turns out that for their use case a small (weights fit in tens of KiB IIRC) multilayer perceptron works the best. There is a lot of machine learning out in the world like that, but it doesn't grab the headlines.
- krapht 2y agoI have doubts that a simple adaptive building model-based controller wouldn't be better, and interpretable. I wonder why you'd go with a perceptron... those are so limited.
- rkwz 2y agoSounds interesting, can you share a link to video if available?
- microtonal 2y agohttps://m.youtube.com/watch?v=RSU_yf9BzOU&pp=ygULUHlncnVubiBjbzI%3D https://m.youtube.com/watch?v=RSU_yf9BzOU&pp=ygULUHlncnVubiB...
- mjhay 2y agoxgboost will still work better for most problems people encounter in industry (which usually involve tabular data).
- Breza 2y ago
- deleted 2y ago[deleted]
- babel_ 2y agoSo, from the perspective I have within the subfield I work in, explainable AI (XAI), we're seeing a bunch of fascinating developments. First, as you mentioned, Rudin continues to prove that the reason for using AI/ML is that we don't understand the problem well enough; otherwise we wouldn't even think to use it! So, pushing our focus to better understand the problem, and then levy ML concepts and techniques (including "classical AI" and statistical learning), we're able to make something that not only outperforms some state-of-the-art in most metrics, but often even is much less resource intensive to create and deploy (in compute, data, energy, and human labour), with added benefits from direct interpretability and post-hoc explanations. One example has been the continued primacy of tree ensembles on tabular datasets [0], even for the larger datasets, though they truly shine on the small to medium datasets that actually show up in practice, which from Tigani's observations [1] would include most of those who think they have big data. Second, we're seeing practical examples of exactly this outside Rudin! In particular, people are using ML more to do live parameter fine-tuning that outwise would need more exhaustive searches or human labour that are difficult for real-time feedback, or copious human ingenuity to resolve in a closed-form solution. Opus 1.5 is introducing some experimental work here, as are a few approaches in video and image encoding. These are domains where, as in the first, we understand the problem, but also understand well enough that there's search spaces we simply don't know enough about to be able to dramatically reduce. Approaches like this have been bubbling out of other sciences (physics, complexity theory, bioinformatics, etc) that lead to some interesting work in distillation and extraction of new models from ML, or "physically aware" operators that dramatically improve neural nets, such as Fourier Neural Operators (FNO) [2], which embeds FFTs rather than forcing it to be relearned (as has been found to often happen) for remarkable speed-ups with PDEs such as for fluid dynamics, and has already shown promise with climate modelling [3], material science [4]. There are also many more operators, which all work completely differently, yet bring human insight back to the problem, and sometimes lead to extracting a new model for us to use without the ML! Understanding begets understanding, so the "shifting goalposts" of techniques considered "AI" is a good thing! Third, specifically to improvements in explainability, we've seen the Neural Tangent Kernel (NTK) [5] rapidly go from strength to strength since its introduction. While rooted in core explainability vis a vis making neural nets more mathematically tractable to analysis, not only inspiring other approaches [6] and behavioural understanding of neural nets [7, 8], but novel ML itself [9] with ways to transfer the benefits of neural networks to far less resource intensive techniques; which [9]'s RFM kernel machine proves competitive with the best tree ensembles from [0], and even has advantage on numerical data (plus outperforms prior NTK based kernel machines). An added benefit is the approach used to underpin [9] itself leads to new interpretation and explanation techniques, similar to integrated gradients [10, 11] but perhaps more reminiscent of the idea in [6]. Finally, specific to XAI, we're seeing people actually deal with the problem that, well, people aren't really using this stuff! XAI in particular, yes, but also the myriad of interpretable models a la Rudin or the significant improvements found in hybrid approaches and reinforcement learning. Cicero [12], for example, does have an LLM component, but uses it in a radically different way compared to most people's current conception of LLMs (though, again, ironically closer to the "classic" LLMs for semantic markup), much like the AlphaGo series altered the way the deep learning component was utilised by embedding and hybridising it [13] (its successors obviating even the traditional supervised approach through self-play [14], and beyond Go). This is all without even mentioning the neurosymbolic and other approaches to embed "classical AI" in deep learning (such as RETRO [15]). Despite these successes, adoption of these approaches is still very far behind, especially compared to the zeitgeist of ChatGPT style LLMs (and general hype around transformers), and arguably much worse for XAI due to the barrier between adoption and deeper usage [16]. This is still early days, however, and again to harken Rudin, we don't understand the problem anywhere near well enough, and that extends to XAI and ML as problem domains themselves. Things we can actually understand seem a far better approach to me, but without getting too Monkey's Paw about it, I'd posit that we should really consider if some GPT-N or whatever is actually what we want, even if it did achieve what we thought we wanted. Constructing ML with useful and efficient inductive bias is a much harder challenge than we ever anticipated, hence the eternal 20 years away problem, so I just think it would perhaps be a better use of our time to make stuff like this, where we know what is actually going on, instead of just theoretically. It'll have a part, no doubt, Cicero showed that there's clear potential, but people seem to be realising "... is all you need" and "scaling laws" were just a myth (or worse, marketing). Plus, all those delays to the 20 years weren't for nothing, and there's a lot of really capable, understandable techniques just waiting to be used, with more being developed and refined every year. After all, look at the other comments! So many different areas, particularly within deep learning (such as NeRFs or NAS [17]), which really show we have so much left to learn. Exciting! [0]: Léo Grinsztajn et al. "Why do tree-based models still outperform deep learning on tabular data?" https://arxiv.org/abs/2207.08815 [1]: Jordan Tigani "Big Data is Dead" https://motherduck.com/blog/big-data-is-dead/ [2]: Zongyi Li et al. "Fourier Neural Operator for Parametric Partial Differential Equations" https://arxiv.org/abs/2010.08895 [3]: Jaideep Pathak et al. "FourCastNet: A Global Data-driven High-resolution Weather Model using Adaptive Fourier Neural Operators" https://arxiv.org/abs/2202.11214 [4]: Huaiqian You et al. "Learning Deep Implicit Fourier Neural Operators with Applications to Heterogeneous Material Modeling" https://arxiv.org/abs/2203.08205 [5]: Arthur Jacot et al. "Neural Tangent Kernel: Convergence and Generalization in Neural Networks" https://arxiv.org/abs/1806.07572 [6]: Pedro Domingos "Every Model Learned by Gradient Descent Is Approximately a Kernel Machine" https://arxiv.org/abs/2012.00152 [7]: Alexander Atanasov et al. "Neural Networks as Kernel Learners: The Silent Alignment Effect" https://arxiv.org/abs/2111.00034 [8]: Yilan Chen et al. "On the Equivalence between Neural Network and Support Vector Machine" https://arxiv.org/abs/2111.06063 [9]: Adityanarayanan Radhakrishnan et al. "Mechanism of feature learning in deep fully connected networks and kernel machines that recursively learn features" https://arxiv.org/abs/2212.13881 [10]: Mukund Sundararajan et al. "Axiomatic Attribution for Deep Networks" https://arxiv.org/abs/1703.01365 [11]: Pramod Mudrakarta "Did the model understand the questions?" https://arxiv.org/abs/1805.05492 [12]: META FAIR Diplomacy Team et al. "Human-level play in the game of Diplomacy by combining language models with strategic reasoning" https://www.science.org/doi/10.1126/science.ade9097 [13]: DeepMind et al. "Mastering the game of Go with deep neural networks and tree search" https://www.nature.com/articles/nature16961 [14]: DeepMind et al. "Mastering the game of Go without human knowledge" https://www.nature.com/articles/nature24270 [15]: Sebastian Borgeaud et al. "Improving language models by retrieving from trillions of tokens" https://arxiv.org/abs/2112.04426 [16]: Umang Bhatt et al. "Explainable Machine Learning in Deployment" https://dl.acm.org/doi/10.1145/3351095.3375624 [17]: M. F. Kasim et al. "Building high accuracy emulators for scientific simulations with deep neural architecture search" https://arxiv.org/abs/2001.08055
- PaulHoule 2y agoI'm just a touch disappointed that this thread is still dominated by neural-network methods, often that apply similar architectures as LLMs to other domains such as vision transformers. I'd like to see something about other ML methods such as SVM, XGBoost, etc.
- ron0c 2y agoUW-Madison's ML+X community is hosting Machine Learning Marathon that will be featured as a competition on Kaggle (https://www.kaggle.com/c/about/host https://www.kaggle.com/c/about/host) "What is the 2024 Machine Learning Marathon (MLM24)? This approximately 12-week summer event (exact dates TBA) is an opportunity for machine learning (ML) practitioners to learn and apply ML tools together and come up with innovative solutions to real-world datasets. There will be different challenges to select from — some suited for beginners and some suited for advanced practitioners. All participants, project advisors, and event organizers will gather on a weekly or biweekly basis to share tips with one another and present short demos/discussions (e.g., how to load and finetune a pretrained model, getting started with GitHub, how to select a model, etc.). Beyond the intrinsic rewards of skill enhancement and community building, the stakes are heightened by the prospect of a cash prize for the winning team." More information here: https://datascience.wisc.edu/2024/03/19/crowdsourced-ml-for-wisconsin/ https://datascience.wisc.edu/2024/03/19/crowdsourced-ml-for-...
- TheDudeMan 2y agoThere was a lot of research into game-playing prior to LLMs (e.g. real-time strategy). Is there nothing left to conquer there now? Or is it still happening but no one reports on it?