All Projects → jonschlinkert → Merge Deep

jonschlinkert / Merge Deep

Licence: mit
Recursively merge values in a JavaScript object.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Merge Deep

Node Config
Node.js Application Configuration
Stars: ✭ 5,423 (+5925.56%)
Mutual labels:  properties
Model Free Episodic Control
This is the implementation of paper Model Free Episodic Control
Stars: ✭ 31 (-65.56%)
Mutual labels:  deep
Deepc
Suite of Deep compositing tools for Foundry's Nuke.
Stars: ✭ 56 (-37.78%)
Mutual labels:  deep
Deepj
A deep learning model for style-specific music generation.
Stars: ✭ 681 (+656.67%)
Mutual labels:  deep
Pytorch Forecasting
Time series forecasting with PyTorch
Stars: ✭ 849 (+843.33%)
Mutual labels:  deep
Ludwig
Data-centric declarative deep learning framework
Stars: ✭ 8,018 (+8808.89%)
Mutual labels:  deep
Awesome Cybersecurity Datasets
A curated list of amazingly awesome Cybersecurity datasets
Stars: ✭ 380 (+322.22%)
Mutual labels:  deep
Deeplearning Mindmap
A mindmap summarising Deep Learning concepts.
Stars: ✭ 1,251 (+1290%)
Mutual labels:  deep
My Very Deep Caffe
This is an implementation of very deep two stream CNNs for action recognition. The implementation is inspired by Wang et. al., https://github.com/yjxiong/caffe. Some improvements from Wang's implementation include reading videos from LDMB database, faster testing using LDMB interface. The aim is to work better with big dataset such as UCF101, HMDB51, Sports1M and ActivityNet easily.
Stars: ✭ 21 (-76.67%)
Mutual labels:  deep
Confucius
A lightweight Java configuration library
Stars: ✭ 51 (-43.33%)
Mutual labels:  properties
Variational Autoencoder
Variational autoencoder implemented in tensorflow and pytorch (including inverse autoregressive flow)
Stars: ✭ 807 (+796.67%)
Mutual labels:  deep
Py Style Transfer
🎨 Artistic neural style transfer with tweaks (pytorch).
Stars: ✭ 23 (-74.44%)
Mutual labels:  deep
Properties
This library provides convinient way to work with properties. It can handle property-files on hard drive, in classpath or get values from system properties
Stars: ✭ 49 (-45.56%)
Mutual labels:  properties
Amazon Sagemaker Examples
Example 📓 Jupyter notebooks that demonstrate how to build, train, and deploy machine learning models using 🧠 Amazon SageMaker.
Stars: ✭ 6,346 (+6951.11%)
Mutual labels:  deep
Postcss Nested Props
PostCSS plugin to unwrap nested properties.
Stars: ✭ 58 (-35.56%)
Mutual labels:  properties
Deep Object Diff
Deep diffs two objects, including nested structures of arrays and objects, and returns the difference. ❄️
Stars: ✭ 515 (+472.22%)
Mutual labels:  deep
Satellite imagery analysis
Implementation of different techniques to find insights from the satellite data using Python.
Stars: ✭ 31 (-65.56%)
Mutual labels:  deep
Daftlistings
A library that enables programmatic interaction with daft.ie. Daft.ie has nationwide coverage and contains about 80% of the total available properties in Ireland.
Stars: ✭ 86 (-4.44%)
Mutual labels:  properties
Mixin Deep
Deeply mix the properties of objects into the first object, while also mixing-in child objects.
Stars: ✭ 72 (-20%)
Mutual labels:  deep
Deep Nlp
Tensorflow Tutorial files and Implementations of various Deep NLP and CV Models.
Stars: ✭ 51 (-43.33%)
Mutual labels:  deep

merge-deep NPM version NPM monthly downloads NPM total downloads Linux Build Status

Recursively merge values in a javascript object.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

Install

Install with npm:

$ npm install --save merge-deep

Based on mout's implementation of merge

Usage

var merge = require('merge-deep');

merge({a: {b: {c: 'c', d: 'd'}}}, {a: {b: {e: 'e', f: 'f'}}});
//=> { a: { b: { c: 'c', d: 'd', e: 'e', f: 'f' } } }

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Related projects

You might also be interested in these projects:

  • assign-deep: Deeply assign the values of all enumerable-own-properties and symbols from one or more source objects… more | homepage
  • defaults-deep: Like extend but recursively copies only the missing properties/values to the target object. | homepage
  • extend-shallow: Extend an object with the properties of additional objects. node.js/javascript util. | homepage
  • merge-deep: Recursively merge values in a javascript object. | homepage
  • mixin-deep: Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone… more | homepage
  • omit-deep: Recursively omit the specified key or keys from an object. | homepage

Contributors

Commits Contributor
32 jonschlinkert
8 doowb

Author

Jon Schlinkert

License

Copyright © 2021, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.8.0, on January 11, 2021.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].