jmcminis | 2 years ago | on: Show HN: LLMs can generate valid JSON 100% of the time
jmcminis's comments
jmcminis | 2 years ago | on: How to scale LLMs better with an alternative to transformers
jmcminis | 3 years ago | on: Show HN: "GPT Take the Wheel" – write what you want, let GPT implement it
jmcminis | 3 years ago | on: Ask HN: Best resources to learn how to use OpenAI for your startup?
General advice:
People + AI Guidebook - A toolkit for teams building human-centered AI products. https://pair.withgoogle.com/guidebook/
LLM advice:
Tips to improve prompt and answer quality. https://github.com/openai/openai-cookbook/blob/main/techniqu...
I wrote a short overview of some of the LLM Application development tools and platforms that might be helpful: https://mcminis1.github.io/jekyll/update/2023/01/23/llm-land...
jmcminis | 3 years ago | on: Ask HN: Firing an employee under a month before vest?
As stated above, after that, the communication to the rest of the team is key.
jmcminis | 4 years ago | on: Show HN: Webcrepe – SQL for the Internet
Because of that, I'm starting an open source project, WebCrepe, to empower analysts to pull data directly into their databases using SQL. The idea is that we pair a database extension with a web app to enable searching the internet and pulling in structured data. It's really early right now. I have a docker-compose file you can use to spin up a postgres database and the backend. I still need to write some better documentation on how to write queries but it's basically using the advanced google search language.
I'm interested in analytics folks that have use cases I can build out and engineers interested in working on it. If there is any interest then I'll write up better docs and build more functionality.
jmcminis | 4 years ago | on: Ask HN: Need Advice, ML dev – bangalore on move to Canada
jmcminis | 4 years ago | on: Ask HN: Who wants to collaborate?
Right now I have a proof of concept that's pretty simple. It's a multicorn extension that calls to a FastAPI backend. I have it all running using docker-compose.
I'm open to working with people that want to use it, or people that want to build it. I don't have any real plans to open source it or commercialize it. It's just a little side project I think is neat. I'm open to any ideas or use cases you might have.
Send me an email (in profile) or dm. Looking forward to it!
jmcminis | 5 years ago | on: Ask HN: Who is hiring? (August 2020)
We are elovee, a healthcare startup focused on developing A.I. based technology to improve day-to-day care for seniors. We're building a voice user interface for seniors living with dementia. Our mission is to solve loneliness and isolation for seniors.
Roles we're hiring for - ML Engineer/ Data Scientist. - Full Stack Engineer
Why you want to work with us - We are small. You get to help set the culture and direction - Cutting edge technology. We are pushing SoTA Speech-to-text, conversation modeling, text-to-speech models. Tuning where needed and building what we have to.
What we are looking for - Experienced engineers that can take requirements and build products. - A strong sense of ownership. - Empathetic, team oriented teammates. - Connection to our mission
Please connect at [email protected] or reach out with a DM.
jmcminis | 6 years ago | on: Cortex – An ML model deployment platform that runs in your AWS account
I bet you could get Cortex running on Kubeflow pretty easily since it's all K8s anyway.
jmcminis | 6 years ago | on: Cortex – An ML model deployment platform that runs in your AWS account
jmcminis | 7 years ago | on: Ask HN: Best ways of letting someone go in an early stage startup?
Don’t forget that this person is a part of your network and always will be. They might be a good fit later. Someone they know might be a good fit.
jmcminis | 7 years ago | on: Ask HN: How old were the most talented software engineers you've met?
I would be interested to know the trajectory these engineers had as they aged. Were they average until they got some experience under their belt? Genius from day one, but productivity improved? How did they develop over time and what were the predictors of greatness?
jmcminis | 7 years ago | on: Ask HN: Is moving to SV/SF Bay Area still worth it?
I did a postdoc in computational chemistry/condensed matter physics at LLNL and transitioned into industry in SF five years ago. I worked at two high growth startups and was promoted a few times. I got very lucky in picking good companies and got in as an early employee (around 10 each time). I gained a world of knowlege and experience in just a few years. Now I take that experience with me wherever I go. I would do it again in a heartbeat.
The options you have from Stanford will likely be as good or better than mine were. Best of luck!
jmcminis | 7 years ago | on: Ask HN: What do I need to learn to be data analyst?
0. Scientific method - probably true for all domains. Not really a kind of analysis, more an approach to doing analysis.
1. Cohort analysis - used in aquisition and retention analysis.
2. Model building - used in all kinds of financial analysis.
3. A/B/... testing - determining the difference between 2 or more populations.
4. Exploratory - understanding the relationships in your data to develop intuition about it.
There are plenty of analysis techniques in use. You can learn more about these and others if you survey blogs and other literature. One that I find interesting is Tom Tunguz. He has a particular theme, but his analysis is very good. The methods and way of thought are transferrable. http://tomtunguz.com/
jmcminis | 7 years ago | on: Ask HN: What non technical skills do you think are valuable to startups?
No matter how good your product is, if you don’t get traction, you’re dead in the water.
jmcminis | 7 years ago | on: Bye HN: Existentially-rational, self-termination
jmcminis | 7 years ago | on: Ask HN: Ever been the last engineer at a failing startup?
jmcminis | 7 years ago | on: Fibonacci Hashing: The Optimization That the World Forgot
[0] https://en.wikipedia.org/wiki/Fibonacci_search_technique
jmcminis | 8 years ago | on: The Case for Learned Index Structures
1. I have a json schema with required fields. I complete the json, but do not include the required fields.
2. I run out of token from the model before I finish the json object because I'm in the middle of some deep, nested structure.
These seem solvable, just edge cases to control for by either reserving tokens, randomly generating required tokens until completing the json, or something more sophisticated.