algoneer
ParlAI
Our great sponsors
algoneer | ParlAI | |
---|---|---|
1 | 18 | |
13 | 10,293 | |
- | 1.0% | |
0.0 | 6.8 | |
over 2 years ago | 8 days ago | |
Python | Python | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
algoneer
-
Adoption of Mypy for Python type checking: 45% already use it, 40% don't plan to
I gave a presentation on type checking at the EuroPython 2017 where I also investigated how many Python projects really use type checking, I present the results at the end (35 minutes in):
https://www.youtube.com/watch?v=vM2Zoy4Sxhk&t=2181s
My conclusion was that only a small fraction of projects really used them, there were a lot of projects that had type checks in their code but only in "homeopathic" doses.
I started using them for some of my Python projects as well (e.g https://github.com/algoneer/algoneer) and while I find them useful I think they're not as useful as a "real" type system in a fully typed language like Golang. Still, they're very useful for discovering simple mistakes that would only show up in unit testing otherwise.
You can also "misuse" them for other purposes, at the end of the presentation I e.g. show how you can implement software contracts with them. Of course this would wreck a type checker like mypy, so don't do that in your codebase. That's probably also one of my critiques as the annotation syntax can in principle be used for anything, but mypy and other tools are not able to deal with code that does that.
ParlAI
-
Why does flake8 require me to copyright facebook and license under MIT?
Do you have https://github.com/facebookresearch/ParlAI installed? Looks like they're doing something weird with their flake8 config.
-
[D] We're the Meta AI research team behind CICERO, the first AI agent to achieve human-level performance in the game Diplomacy. We’ll be answering your questions on December 8th starting at 10am PT. Ask us anything!
There's quite a few open-source Reinforcement Learning challenges that you can explore with modest amounts of compute in order to build some experience training RL models, for example the Nethack Learning Environment, Atari, Minigrid, etc. For me personally, I had only worked in NLP / dialogue for years but got into RL by implementing Random Network Distillation models for NetHack. It's a fun area that definitely has its own unique challenges vs other domains. -AM
- How to Get Your Backup to Half of Its Size – ZSTD Support in XtraBackup
- re there any places you can download code for a ai chat bot and run on your own system?
-
BlenderBot 3: A 175B parameter, publicly available chatbot
Further it uses the old GPT-2 tokenizer with a quite small token vocabulary and BPE so it will never be able to figure out how to rhyme, for instance.
I do really like that again they have shared a training logbook.
https://github.com/facebookresearch/ParlAI/blob/main/project...
You probably meant to link this: https://github.com/facebookresearch/ParlAI/blob/main/project...
-
Adoption of Mypy for Python type checking: 45% already use it, 40% don't plan to
I run a fairly large open source project (https://github.com/facebookresearch/ParlAI/) and we use mypy. Our experience has been that it can be quite difficult to placate, so we usually treat it only as a warning. However, having our code annotated with types in many places has significantly improved developer productivity, just from having less ambiguity with what you're dealing with.
What are some alternatives?
pyre-check - Performant type-checking for python.
mypy - Optional static typing for Python
nle - The NetHack Learning Environment