├── .github └── workflows │ └── neptune-examples.yml ├── .gitignore ├── Monitor-ML-runs-live.ipynb ├── Neptune-API-Tour.ipynb ├── Organize-ML-experiments.ipynb ├── README.md ├── Template.ipynb ├── Use-Neptune-API-to-log-your-first-experiment.ipynb ├── ci ├── __init__.py ├── build.py ├── test_examples_fixed_libs.py └── test_examples_upgraded_libs.py ├── integrations ├── colab │ ├── Basic-Colab-Example.ipynb │ ├── docs │ │ ├── Basic-Colab-Example.ipynb │ │ └── Basic-Colab-Example.py │ ├── showcase │ │ └── Basic-Colab-Example.ipynb │ └── tests │ │ ├── Basic-Colab-Example_fixed_libs.py │ │ └── Basic-Colab-Example_upgraded_libs.py ├── kerastuner │ ├── Neptune-Keras-Tuner.ipynb │ ├── docs │ │ ├── Neptune-Keras-Tuner.ipynb │ │ └── Neptune-Keras-Tuner.py │ ├── showcase │ │ └── Neptune-Keras-Tuner.ipynb │ └── tests │ │ ├── Neptune-Keras-Tuner_fixed_libs.py │ │ └── Neptune-Keras-Tuner_upgraded_libs.py ├── lightgbm │ ├── Neptune_lightGBM.ipynb │ ├── docs │ │ ├── Neptune_lightGBM.ipynb │ │ └── Neptune_lightGBM.py │ ├── showcase │ │ └── Neptune_lightGBM.ipynb │ └── tests │ │ ├── Neptune_lightGBM_fixed_libs.py │ │ └── Neptune_lightGBM_upgraded_libs.py ├── mlflow │ ├── Neptune-MLflow.ipynb │ ├── docs │ │ ├── Neptune-MLflow.ipynb │ │ └── Neptune-MLflow.py │ ├── showcase │ │ └── Neptune-MLflow.ipynb │ └── tests │ │ ├── Neptune-MLflow_fixed_libs.py │ │ └── Neptune-MLflow_upgraded_libs.py ├── optuna │ ├── Neptune-Optuna.ipynb │ ├── docs │ │ ├── Neptune-Optuna.ipynb │ │ └── Neptune-Optuna.py │ ├── showcase │ │ └── Neptune-Optuna.ipynb │ └── tests │ │ ├── Neptune-Optuna_fixed_libs.py │ │ └── Neptune-Optuna_upgraded_libs.py ├── pytorch-lightning-legacy │ ├── legacy-logger-complex.py │ └── legacy-logger-simple.py ├── pytorch-lightning │ ├── Neptune-PyTorch-Lightning-advanced.ipynb │ ├── Neptune-PyTorch-Lightning-basic.ipynb │ ├── docs │ │ ├── Neptune-PyTorch-Lightning-advanced.ipynb │ │ ├── Neptune-PyTorch-Lightning-advanced.py │ │ ├── Neptune-PyTorch-Lightning-basic.ipynb │ │ └── Neptune-PyTorch-Lightning-basic.py │ ├── showcase │ │ ├── Neptune-PyTorch-Lightning-advanced.ipynb │ │ └── Neptune-PyTorch-Lightning-basic.ipynb │ └── tests │ │ ├── Neptune-PyTorch-Lightning-advanced_fixed_libs.py │ │ ├── Neptune-PyTorch-Lightning-advanced_upgraded_libs.py │ │ ├── Neptune-PyTorch-Lightning-basic_fixed_libs.py │ │ └── Neptune-PyTorch-Lightning-basic_upgraded_libs.py ├── pytorch │ ├── Neptune-PyTorch.ipynb │ ├── docs │ │ ├── Neptune-PyTorch.ipynb │ │ └── Neptune-PyTorch.py │ ├── showcase │ │ └── Neptune-PyTorch.ipynb │ └── tests │ │ ├── Neptune-PyTorch_fixed_libs.py │ │ └── Neptune-PyTorch_upgraded_libs.py ├── r │ ├── Neptune-R.ipynb │ └── Neptune-R.r ├── sklearn │ ├── Neptune-Scikit-learn.ipynb │ ├── docs │ │ ├── Neptune-Scikit-learn.ipynb │ │ └── Neptune-Scikit-learn.py │ ├── showcase │ │ └── Neptune-Scikit-learn.ipynb │ └── tests │ │ ├── Neptune-Scikit-learn_fixed_libs.py │ │ └── Neptune-Scikit-learn_upgraded_libs.py ├── skopt │ ├── Neptune-Skopt.ipynb │ ├── docs │ │ ├── Neptune-Skopt.ipynb │ │ └── Neptune-Skopt.py │ ├── showcase │ │ └── Neptune-Skopt.ipynb │ └── tests │ │ ├── Neptune-Skopt_fixed_libs.py │ │ └── Neptune-Skopt_upgraded_libs.py ├── tensorboard │ ├── Neptune-TensorBoard.ipynb │ ├── docs │ │ ├── Neptune-TensorBoard.ipynb │ │ └── Neptune-TensorBoard.py │ ├── showcase │ │ └── Neptune-TensorBoard.ipynb │ └── tests │ │ ├── Neptune-TensorBoard_fixed_libs.py │ │ └── Neptune-TensorBoard_upgraded_libs.py ├── tensorflow-keras │ ├── Neptune-TensorFlow-Keras.ipynb │ ├── docs │ │ ├── Neptune-TensorFlow-Keras.ipynb │ │ └── Neptune-TensorFlow-Keras.py │ ├── showcase │ │ └── Neptune-TensorFlow-Keras.ipynb │ └── tests │ │ ├── Neptune-TensorFlow-Keras_fixed_libs.py │ │ └── Neptune-TensorFlow-Keras_upgraded_libs.py └── xgboost │ ├── Neptune-XGBoost.ipynb │ ├── docs │ ├── Neptune-XGBoost.ipynb │ └── Neptune-XGBoost.py │ ├── showcase │ └── Neptune-XGBoost.ipynb │ └── tests │ ├── Neptune-XGBoost_fixed_libs.py │ └── Neptune-XGBoost_upgraded_libs.py ├── logging_snippets.ipynb ├── neptune_test_run.ipynb ├── product-tours ├── how-it-works │ ├── Neptune-API-Tour.ipynb │ ├── docs │ │ ├── Neptune-API-Tour.ipynb │ │ └── Neptune-API-Tour.py │ ├── my_model.h5 │ ├── showcase │ │ └── Neptune-API-Tour.ipynb │ └── tests │ │ ├── Neptune-API-Tour_fixed_libs.py │ │ └── Neptune-API-Tour_upgraded_libs.py ├── tour-pytorch │ ├── Tour-with-PyTorch.ipynb │ ├── docs │ │ ├── Tour-with-PyTorch.ipynb │ │ └── Tour-with-PyTorch.py │ ├── showcase │ │ └── Tour-with-PyTorch.ipynb │ └── tests │ │ ├── Tour-with-PyTorch_fixed_libs.py │ │ └── Tour-with-PyTorch_upgraded_libs.py ├── tour-sklearn │ ├── Tour-with-Sklearn.ipynb │ ├── docs │ │ ├── Tour-with-Sklearn.ipynb │ │ └── Tour-with-Sklearn.py │ ├── showcase │ │ └── Tour-with-Sklearn.ipynb │ └── tests │ │ ├── Tour-with-Sklearn_fixed_libs.py │ │ └── Tour-with-Sklearn_upgraded_libs.py └── tour-tf-keras │ ├── Tour-with-TensorFlow-and-Keras.ipynb │ ├── docs │ ├── Tour-with-TensorFlow-and-Keras.ipynb │ └── Tour-with-TensorFlow-and-Keras.py │ ├── showcase │ └── Tour-with-TensorFlow-and-Keras.ipynb │ └── tests │ ├── Tour-with-TensorFlow-and-Keras_fixed_libs.py │ └── Tour-with-TensorFlow-and-Keras_upgraded_libs.py ├── pytest.ini ├── pytorch_lightning-integration.ipynb ├── quick-starts ├── first-experiment │ ├── Use-Neptune-API-to-log-your-first-experiment.ipynb │ ├── docs │ │ ├── Use-Neptune-API-to-log-your-first-experiment.ipynb │ │ └── Use-Neptune-API-to-log-your-first-experiment.py │ ├── showcase │ │ └── Use-Neptune-API-to-log-your-first-experiment.ipynb │ └── tests │ │ ├── Use-Neptune-API-to-log-your-first-experiment_fixed_libs.py │ │ └── Use-Neptune-API-to-log-your-first-experiment_upgraded_libs.py ├── monitor-ml-runs │ ├── Monitor-ML-runs-live.ipynb │ ├── docs │ │ ├── Monitor-ML-runs-live.ipynb │ │ └── Monitor-ML-runs-live.py │ ├── showcase │ │ └── Monitor-ML-runs-live.ipynb │ └── tests │ │ ├── Monitor-ML-runs-live_fixed_libs.py │ │ └── Monitor-ML-runs-live_upgraded_libs.py └── organize-ml-experimentation │ ├── Organize-ML-experiments.ipynb │ ├── docs │ ├── Organize-ML-experiments.ipynb │ └── Organize-ML-experiments.py │ ├── showcase │ └── Organize-ML-experiments.ipynb │ └── tests │ ├── Organize-ML-experiments_fixed_libs.py │ └── Organize-ML-experiments_upgraded_libs.py ├── r-integration.ipynb ├── requirements.txt ├── run.sh └── xgboost-integration.ipynb /.github/workflows/neptune-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/.github/workflows/neptune-examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Monitor-ML-runs-live.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/Monitor-ML-runs-live.ipynb -------------------------------------------------------------------------------- /Neptune-API-Tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/Neptune-API-Tour.ipynb -------------------------------------------------------------------------------- /Organize-ML-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/Organize-ML-experiments.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/README.md -------------------------------------------------------------------------------- /Template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/Template.ipynb -------------------------------------------------------------------------------- /Use-Neptune-API-to-log-your-first-experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/Use-Neptune-API-to-log-your-first-experiment.ipynb -------------------------------------------------------------------------------- /ci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/ci/build.py -------------------------------------------------------------------------------- /ci/test_examples_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/ci/test_examples_fixed_libs.py -------------------------------------------------------------------------------- /ci/test_examples_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/ci/test_examples_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/colab/Basic-Colab-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/Basic-Colab-Example.ipynb -------------------------------------------------------------------------------- /integrations/colab/docs/Basic-Colab-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/docs/Basic-Colab-Example.ipynb -------------------------------------------------------------------------------- /integrations/colab/docs/Basic-Colab-Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/docs/Basic-Colab-Example.py -------------------------------------------------------------------------------- /integrations/colab/showcase/Basic-Colab-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/showcase/Basic-Colab-Example.ipynb -------------------------------------------------------------------------------- /integrations/colab/tests/Basic-Colab-Example_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/tests/Basic-Colab-Example_fixed_libs.py -------------------------------------------------------------------------------- /integrations/colab/tests/Basic-Colab-Example_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/colab/tests/Basic-Colab-Example_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/kerastuner/Neptune-Keras-Tuner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/Neptune-Keras-Tuner.ipynb -------------------------------------------------------------------------------- /integrations/kerastuner/docs/Neptune-Keras-Tuner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/docs/Neptune-Keras-Tuner.ipynb -------------------------------------------------------------------------------- /integrations/kerastuner/docs/Neptune-Keras-Tuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/docs/Neptune-Keras-Tuner.py -------------------------------------------------------------------------------- /integrations/kerastuner/showcase/Neptune-Keras-Tuner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/showcase/Neptune-Keras-Tuner.ipynb -------------------------------------------------------------------------------- /integrations/kerastuner/tests/Neptune-Keras-Tuner_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/tests/Neptune-Keras-Tuner_fixed_libs.py -------------------------------------------------------------------------------- /integrations/kerastuner/tests/Neptune-Keras-Tuner_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/kerastuner/tests/Neptune-Keras-Tuner_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/lightgbm/Neptune_lightGBM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/Neptune_lightGBM.ipynb -------------------------------------------------------------------------------- /integrations/lightgbm/docs/Neptune_lightGBM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/docs/Neptune_lightGBM.ipynb -------------------------------------------------------------------------------- /integrations/lightgbm/docs/Neptune_lightGBM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/docs/Neptune_lightGBM.py -------------------------------------------------------------------------------- /integrations/lightgbm/showcase/Neptune_lightGBM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/showcase/Neptune_lightGBM.ipynb -------------------------------------------------------------------------------- /integrations/lightgbm/tests/Neptune_lightGBM_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/tests/Neptune_lightGBM_fixed_libs.py -------------------------------------------------------------------------------- /integrations/lightgbm/tests/Neptune_lightGBM_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/lightgbm/tests/Neptune_lightGBM_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/mlflow/Neptune-MLflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/Neptune-MLflow.ipynb -------------------------------------------------------------------------------- /integrations/mlflow/docs/Neptune-MLflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/docs/Neptune-MLflow.ipynb -------------------------------------------------------------------------------- /integrations/mlflow/docs/Neptune-MLflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/docs/Neptune-MLflow.py -------------------------------------------------------------------------------- /integrations/mlflow/showcase/Neptune-MLflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/showcase/Neptune-MLflow.ipynb -------------------------------------------------------------------------------- /integrations/mlflow/tests/Neptune-MLflow_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/tests/Neptune-MLflow_fixed_libs.py -------------------------------------------------------------------------------- /integrations/mlflow/tests/Neptune-MLflow_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/mlflow/tests/Neptune-MLflow_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/optuna/Neptune-Optuna.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/Neptune-Optuna.ipynb -------------------------------------------------------------------------------- /integrations/optuna/docs/Neptune-Optuna.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/docs/Neptune-Optuna.ipynb -------------------------------------------------------------------------------- /integrations/optuna/docs/Neptune-Optuna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/docs/Neptune-Optuna.py -------------------------------------------------------------------------------- /integrations/optuna/showcase/Neptune-Optuna.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/showcase/Neptune-Optuna.ipynb -------------------------------------------------------------------------------- /integrations/optuna/tests/Neptune-Optuna_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/tests/Neptune-Optuna_fixed_libs.py -------------------------------------------------------------------------------- /integrations/optuna/tests/Neptune-Optuna_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/optuna/tests/Neptune-Optuna_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning-legacy/legacy-logger-complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning-legacy/legacy-logger-complex.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning-legacy/legacy-logger-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning-legacy/legacy-logger-simple.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/Neptune-PyTorch-Lightning-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/Neptune-PyTorch-Lightning-advanced.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/Neptune-PyTorch-Lightning-basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/Neptune-PyTorch-Lightning-basic.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-advanced.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-advanced.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-basic.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/docs/Neptune-PyTorch-Lightning-basic.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/showcase/Neptune-PyTorch-Lightning-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/showcase/Neptune-PyTorch-Lightning-advanced.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/showcase/Neptune-PyTorch-Lightning-basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/showcase/Neptune-PyTorch-Lightning-basic.ipynb -------------------------------------------------------------------------------- /integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-advanced_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-advanced_fixed_libs.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-advanced_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-advanced_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-basic_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-basic_fixed_libs.py -------------------------------------------------------------------------------- /integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-basic_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch-lightning/tests/Neptune-PyTorch-Lightning-basic_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/pytorch/Neptune-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/Neptune-PyTorch.ipynb -------------------------------------------------------------------------------- /integrations/pytorch/docs/Neptune-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/docs/Neptune-PyTorch.ipynb -------------------------------------------------------------------------------- /integrations/pytorch/docs/Neptune-PyTorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/docs/Neptune-PyTorch.py -------------------------------------------------------------------------------- /integrations/pytorch/showcase/Neptune-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/showcase/Neptune-PyTorch.ipynb -------------------------------------------------------------------------------- /integrations/pytorch/tests/Neptune-PyTorch_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/tests/Neptune-PyTorch_fixed_libs.py -------------------------------------------------------------------------------- /integrations/pytorch/tests/Neptune-PyTorch_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/pytorch/tests/Neptune-PyTorch_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/r/Neptune-R.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/r/Neptune-R.ipynb -------------------------------------------------------------------------------- /integrations/r/Neptune-R.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/r/Neptune-R.r -------------------------------------------------------------------------------- /integrations/sklearn/Neptune-Scikit-learn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/Neptune-Scikit-learn.ipynb -------------------------------------------------------------------------------- /integrations/sklearn/docs/Neptune-Scikit-learn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/docs/Neptune-Scikit-learn.ipynb -------------------------------------------------------------------------------- /integrations/sklearn/docs/Neptune-Scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/docs/Neptune-Scikit-learn.py -------------------------------------------------------------------------------- /integrations/sklearn/showcase/Neptune-Scikit-learn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/showcase/Neptune-Scikit-learn.ipynb -------------------------------------------------------------------------------- /integrations/sklearn/tests/Neptune-Scikit-learn_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/tests/Neptune-Scikit-learn_fixed_libs.py -------------------------------------------------------------------------------- /integrations/sklearn/tests/Neptune-Scikit-learn_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/sklearn/tests/Neptune-Scikit-learn_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/skopt/Neptune-Skopt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/Neptune-Skopt.ipynb -------------------------------------------------------------------------------- /integrations/skopt/docs/Neptune-Skopt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/docs/Neptune-Skopt.ipynb -------------------------------------------------------------------------------- /integrations/skopt/docs/Neptune-Skopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/docs/Neptune-Skopt.py -------------------------------------------------------------------------------- /integrations/skopt/showcase/Neptune-Skopt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/showcase/Neptune-Skopt.ipynb -------------------------------------------------------------------------------- /integrations/skopt/tests/Neptune-Skopt_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/tests/Neptune-Skopt_fixed_libs.py -------------------------------------------------------------------------------- /integrations/skopt/tests/Neptune-Skopt_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/skopt/tests/Neptune-Skopt_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/tensorboard/Neptune-TensorBoard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/Neptune-TensorBoard.ipynb -------------------------------------------------------------------------------- /integrations/tensorboard/docs/Neptune-TensorBoard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/docs/Neptune-TensorBoard.ipynb -------------------------------------------------------------------------------- /integrations/tensorboard/docs/Neptune-TensorBoard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/docs/Neptune-TensorBoard.py -------------------------------------------------------------------------------- /integrations/tensorboard/showcase/Neptune-TensorBoard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/showcase/Neptune-TensorBoard.ipynb -------------------------------------------------------------------------------- /integrations/tensorboard/tests/Neptune-TensorBoard_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/tests/Neptune-TensorBoard_fixed_libs.py -------------------------------------------------------------------------------- /integrations/tensorboard/tests/Neptune-TensorBoard_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorboard/tests/Neptune-TensorBoard_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/tensorflow-keras/Neptune-TensorFlow-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/Neptune-TensorFlow-Keras.ipynb -------------------------------------------------------------------------------- /integrations/tensorflow-keras/docs/Neptune-TensorFlow-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/docs/Neptune-TensorFlow-Keras.ipynb -------------------------------------------------------------------------------- /integrations/tensorflow-keras/docs/Neptune-TensorFlow-Keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/docs/Neptune-TensorFlow-Keras.py -------------------------------------------------------------------------------- /integrations/tensorflow-keras/showcase/Neptune-TensorFlow-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/showcase/Neptune-TensorFlow-Keras.ipynb -------------------------------------------------------------------------------- /integrations/tensorflow-keras/tests/Neptune-TensorFlow-Keras_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/tests/Neptune-TensorFlow-Keras_fixed_libs.py -------------------------------------------------------------------------------- /integrations/tensorflow-keras/tests/Neptune-TensorFlow-Keras_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/tensorflow-keras/tests/Neptune-TensorFlow-Keras_upgraded_libs.py -------------------------------------------------------------------------------- /integrations/xgboost/Neptune-XGBoost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/Neptune-XGBoost.ipynb -------------------------------------------------------------------------------- /integrations/xgboost/docs/Neptune-XGBoost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/docs/Neptune-XGBoost.ipynb -------------------------------------------------------------------------------- /integrations/xgboost/docs/Neptune-XGBoost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/docs/Neptune-XGBoost.py -------------------------------------------------------------------------------- /integrations/xgboost/showcase/Neptune-XGBoost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/showcase/Neptune-XGBoost.ipynb -------------------------------------------------------------------------------- /integrations/xgboost/tests/Neptune-XGBoost_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/tests/Neptune-XGBoost_fixed_libs.py -------------------------------------------------------------------------------- /integrations/xgboost/tests/Neptune-XGBoost_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/integrations/xgboost/tests/Neptune-XGBoost_upgraded_libs.py -------------------------------------------------------------------------------- /logging_snippets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/logging_snippets.ipynb -------------------------------------------------------------------------------- /neptune_test_run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/neptune_test_run.ipynb -------------------------------------------------------------------------------- /product-tours/how-it-works/Neptune-API-Tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/Neptune-API-Tour.ipynb -------------------------------------------------------------------------------- /product-tours/how-it-works/docs/Neptune-API-Tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/docs/Neptune-API-Tour.ipynb -------------------------------------------------------------------------------- /product-tours/how-it-works/docs/Neptune-API-Tour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/docs/Neptune-API-Tour.py -------------------------------------------------------------------------------- /product-tours/how-it-works/my_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/my_model.h5 -------------------------------------------------------------------------------- /product-tours/how-it-works/showcase/Neptune-API-Tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/showcase/Neptune-API-Tour.ipynb -------------------------------------------------------------------------------- /product-tours/how-it-works/tests/Neptune-API-Tour_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/tests/Neptune-API-Tour_fixed_libs.py -------------------------------------------------------------------------------- /product-tours/how-it-works/tests/Neptune-API-Tour_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/how-it-works/tests/Neptune-API-Tour_upgraded_libs.py -------------------------------------------------------------------------------- /product-tours/tour-pytorch/Tour-with-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/Tour-with-PyTorch.ipynb -------------------------------------------------------------------------------- /product-tours/tour-pytorch/docs/Tour-with-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/docs/Tour-with-PyTorch.ipynb -------------------------------------------------------------------------------- /product-tours/tour-pytorch/docs/Tour-with-PyTorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/docs/Tour-with-PyTorch.py -------------------------------------------------------------------------------- /product-tours/tour-pytorch/showcase/Tour-with-PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/showcase/Tour-with-PyTorch.ipynb -------------------------------------------------------------------------------- /product-tours/tour-pytorch/tests/Tour-with-PyTorch_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/tests/Tour-with-PyTorch_fixed_libs.py -------------------------------------------------------------------------------- /product-tours/tour-pytorch/tests/Tour-with-PyTorch_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-pytorch/tests/Tour-with-PyTorch_upgraded_libs.py -------------------------------------------------------------------------------- /product-tours/tour-sklearn/Tour-with-Sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/Tour-with-Sklearn.ipynb -------------------------------------------------------------------------------- /product-tours/tour-sklearn/docs/Tour-with-Sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/docs/Tour-with-Sklearn.ipynb -------------------------------------------------------------------------------- /product-tours/tour-sklearn/docs/Tour-with-Sklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/docs/Tour-with-Sklearn.py -------------------------------------------------------------------------------- /product-tours/tour-sklearn/showcase/Tour-with-Sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/showcase/Tour-with-Sklearn.ipynb -------------------------------------------------------------------------------- /product-tours/tour-sklearn/tests/Tour-with-Sklearn_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/tests/Tour-with-Sklearn_fixed_libs.py -------------------------------------------------------------------------------- /product-tours/tour-sklearn/tests/Tour-with-Sklearn_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-sklearn/tests/Tour-with-Sklearn_upgraded_libs.py -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/Tour-with-TensorFlow-and-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/Tour-with-TensorFlow-and-Keras.ipynb -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/docs/Tour-with-TensorFlow-and-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/docs/Tour-with-TensorFlow-and-Keras.ipynb -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/docs/Tour-with-TensorFlow-and-Keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/docs/Tour-with-TensorFlow-and-Keras.py -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/showcase/Tour-with-TensorFlow-and-Keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/showcase/Tour-with-TensorFlow-and-Keras.ipynb -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/tests/Tour-with-TensorFlow-and-Keras_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/tests/Tour-with-TensorFlow-and-Keras_fixed_libs.py -------------------------------------------------------------------------------- /product-tours/tour-tf-keras/tests/Tour-with-TensorFlow-and-Keras_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/product-tours/tour-tf-keras/tests/Tour-with-TensorFlow-and-Keras_upgraded_libs.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/pytest.ini -------------------------------------------------------------------------------- /pytorch_lightning-integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/pytorch_lightning-integration.ipynb -------------------------------------------------------------------------------- /quick-starts/first-experiment/Use-Neptune-API-to-log-your-first-experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/Use-Neptune-API-to-log-your-first-experiment.ipynb -------------------------------------------------------------------------------- /quick-starts/first-experiment/docs/Use-Neptune-API-to-log-your-first-experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/docs/Use-Neptune-API-to-log-your-first-experiment.ipynb -------------------------------------------------------------------------------- /quick-starts/first-experiment/docs/Use-Neptune-API-to-log-your-first-experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/docs/Use-Neptune-API-to-log-your-first-experiment.py -------------------------------------------------------------------------------- /quick-starts/first-experiment/showcase/Use-Neptune-API-to-log-your-first-experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/showcase/Use-Neptune-API-to-log-your-first-experiment.ipynb -------------------------------------------------------------------------------- /quick-starts/first-experiment/tests/Use-Neptune-API-to-log-your-first-experiment_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/tests/Use-Neptune-API-to-log-your-first-experiment_fixed_libs.py -------------------------------------------------------------------------------- /quick-starts/first-experiment/tests/Use-Neptune-API-to-log-your-first-experiment_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/first-experiment/tests/Use-Neptune-API-to-log-your-first-experiment_upgraded_libs.py -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/Monitor-ML-runs-live.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/Monitor-ML-runs-live.ipynb -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/docs/Monitor-ML-runs-live.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/docs/Monitor-ML-runs-live.ipynb -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/docs/Monitor-ML-runs-live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/docs/Monitor-ML-runs-live.py -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/showcase/Monitor-ML-runs-live.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/showcase/Monitor-ML-runs-live.ipynb -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/tests/Monitor-ML-runs-live_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/tests/Monitor-ML-runs-live_fixed_libs.py -------------------------------------------------------------------------------- /quick-starts/monitor-ml-runs/tests/Monitor-ML-runs-live_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/monitor-ml-runs/tests/Monitor-ML-runs-live_upgraded_libs.py -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/Organize-ML-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/Organize-ML-experiments.ipynb -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/docs/Organize-ML-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/docs/Organize-ML-experiments.ipynb -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/docs/Organize-ML-experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/docs/Organize-ML-experiments.py -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/showcase/Organize-ML-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/showcase/Organize-ML-experiments.ipynb -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/tests/Organize-ML-experiments_fixed_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/tests/Organize-ML-experiments_fixed_libs.py -------------------------------------------------------------------------------- /quick-starts/organize-ml-experimentation/tests/Organize-ML-experiments_upgraded_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/quick-starts/organize-ml-experimentation/tests/Organize-ML-experiments_upgraded_libs.py -------------------------------------------------------------------------------- /r-integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/r-integration.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/run.sh -------------------------------------------------------------------------------- /xgboost-integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neptune-ai/neptune-examples/HEAD/xgboost-integration.ipynb --------------------------------------------------------------------------------