![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
DreamML is a machine learning framework aimed at the industrial process. The main task is to choose a simple model, taking into account the balance of complexity, quality and metrics. We also suggest reviewing the quality of the models in special development reports, and for some tasks, a validation report created using the central bank's methodology.
*This is the first cycle of the project's release into open source, then we plan to publish more materials and improve the framework.
To develop a model, you can use the notebooks located in the notebooks/1. Model Development
and select the one you need depending on the type of your task.
To validate models, you can use the notebooks located in the notebooks/2. Validate Model
To calibration models, you can use the notebooks located in the notebooks/3. Calibration
notebooks/1. Model Development
First, you need to determine the pipeline configuration
regression
, binary
, multiclass
, multilabel
tasks you can refer to this document 1_Model_Development_doc.mdtopic_modeling
task you can refer to this document 1_Topic_Modeling_doc.mdtimeseries
with (boosting) task you can refer to this document 1_TimeSeries_doc.mdamts
with (Prophet) task you can refer to this document 1_AltModeTimeSeries_forecast.mdYou should start building the configuration and preparing the data for modeling
config_storage = ConfigStorage(config=config)
transformer = DataTransformer(config_storage)
data_storage = transformer.transform()
pipeline = MainPipeline(config_storage=config_storage, data_storage=data_storage)
pipeline.transform()
lama = add_lama_model(data_storage.get_eval_set(), config_storage)
oot_potential = calculate_oot_metrics(data_storage.get_eval_set(), config_storage)
saver = pipeline.artifact_saver
models = pipeline.prepared_model_dict
pipeline.oot_potential = oot_potential
models.update(lama)
nb_name = saver.get_notebook_path_and_save()
saver.save_artifacts(
models=models,
other_models=pipeline.other_model_dict,
encoder=transformer.cat_transformer,
ipynb_name=nb_name,
feature_threshold=config_storage.feature_threshold,
)
saver.save_data(data=data_storage.get_eval_set(), dropped_data=data_storage.get_dropped_data())
dreamml/results
folder.get_report(pipeline=pipeline, config_storage=config_storage, data_storage=data_storage, encoder=transformer.cat_transformer)
Author | |
---|---|
Nikita Buts | nikitabuts2000@gmail.com |
Alexander Izyurov | halfbrick845@gmail.com |
Ivan Plotnikov | com.gateway.api@gmail.com |
Maidari Tsydenov | maidaritsydenov@gmail.com |
Evgeny Tkachenko | e_t@inbox.ru |
Ilya Ivanov | morwes4@gmail.com |
Nikita Varganov | - |
This project is licensed under the Apache License, Version 2.0. See LICENSE for details.
FAQs
Framework for creating, running and validation of ML models on tabular data
We found that dreamml demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.