Mattias Aabmets
Mattias Aabmets
It would be convenient, if the library would handle datatype conversions behind the scenes automatically, for example, when I pass in a List as an input, but it expects a...
Running `pip install ludwig` on Python 3.10 and Windows 10 produces the following error: ``` Collecting scikit-learn [46 lines of output] Partial import of sklearn during the build process. INFO:...
Since the TF 2.0 Keras API has been frozen for beta, it's possible to convert the code to TF2 without fear of having to deal with API changes in the...
Would it be possible to upgrade the numpy requirement of FEDOT to the latest version? My software requires the latest version of numpy and I'm unable to implement FEDOT into...
Should functions of similar functionality not belong to the same class?
It currently looks like an exchange of semen. Please.
I don't like how piccolo requires its files to have `piccolo_app.py` and `piccolo_conf.py` names. I want to have a single file `piccolo.py` with the following contents: ```python from piccolo.conf.apps import...
I created tables with these definitions: ```python class ElementsTable(Table, tablename="meta_elements", schema=AppConfig.DB_SCHEMA): classification_code = ForeignKey( references=tables.ClassificationsTable, target_column=tables.ClassificationsTable.code, on_delete=OnDelete.cascade, on_update=OnUpdate.cascade, default=None, required=True, null=False ) class ClassificationsTable(Table, tablename="meta_classifications", schema=AppConfig.DB_SCHEMA): code = Varchar( length=40,...
Given the following table definitions: ```python class ElementsTable(Table, tablename="meta_elements", schema=AppConfig.DB_SCHEMA): classification_code = ForeignKey( references=ClassificationsTable, target_column=ClassificationsTable.code, on_delete=OnDelete.cascade, on_update=OnUpdate.cascade, required=True, null=False ) class ClassificationsTable(Table, tablename="meta_classifications", schema=AppConfig.DB_SCHEMA): ... # other tables omitted due...
Rewrote the SECURITY.md file to more clearly describe the goals and security claims of the library. Also, relocated FrodoKEM issues into historical issues section.