Neural Networks and Their Applications 

Student Name

Professor Rodriguez

Don't use plagiarized sources. Get Your Custom Essay on
Neural Networks and Their Applications 
Just from $9/Page
Order Essay

ENG 1103 – First Year Composition

17 November 2020

Bibliographic Outline

Neural Networks and Their Applications  <- This is the student’s working title

A common joke at the expense of computer scientists is that trees—the data structure—are drawn with the root node at the top and the leaf nodes at the bottom because the computer scientists who formed that convention never bothered to go outside and look at a real tree. If that is true, then modern computer scientists have truly surpassed their predecessors by designing their algorithms based on the most complicated biological structure currently known: the human brain. Through this study, they created the artificial neural network, an incredibly powerful, deep, and versatile machine learning algorithm that essentially functions as a connected, layered set of simulated neurons. As the algorithm grew in popularity, many variations of it began to branch off into their own, more specialized algorithms, which all perform better in specific situations. However, this is not always readily apparent, and the terminology can be very confusing. Some of the more common types of neural networks are convolutional neural networks, recurrent neural networks, and generative adversarial networks, and their individual uses will be discussed subsequently.

 

 

Section 1: Background Information <-this section title is just for the bib outline. On the final paper, it will be removed

  1. To understand specific types of neural networks, though, it is important to understand neural networks generally. <- Topic sentence
  2. Sources: <-Notice how he gives the complete citation as it will appear in his paper
    1. Pouyanfar, Samira, et al. “A Survey on Deep Learning.” ACM Computing Surveys (CSUR), vol. 51, no. 5, 2019, pp. 1–36. https://na03.alma.exlibrisgroup.com/view/action/uresolver.do?operation=resolveService&package_service_id=37839874190002901&institutionId=2901&customerId=2900. Accessed 8 Oct. 2020.
    2. Schmidhuber, Jürgen. “Deep Learning in Neural Networks: An Overview.” Neural Networks, vol. 61, 2015, pp. 85–117. https://na03.alma.exlibrisgroup.com/view/action/uresolver.do?operation=resolveService&package_service_id=37840903500002901&institutionId=2901&customerId=2900. Accessed 14 Oct. 2020.
  3. Sentences:
    1. Deep learning algorithms are defined by having multi-layered structures where each layer extracts key features from the input data at progressively higher levels.
    2. Each neuron computes the weighted sum of the values of the previous layer’s neurons, then feeds that sum to an activation function whose purpose is to map the output to a desired range.

Section 2: Convolutional Neural Networks

  1. One type of neural network is the convolutional neural network, which uses special filters called kernels to extract complex features from the given data.
  2. Sources:
    1. Teuwen, Jonas, and Nikita Moriakov. “Chapter 20 – Convolutional Neural Networks.” Handbook of Medical Image Computing and Computer Assisted Intervention, edited by Kevin Zhou et al., Academic Press, 2020, pp. 481–501. ScienceDirect. www.sciencedirect.com/science/article/pii/B9780128161760000259. Accessed 29 Oct. 2020.
    2. Maggiori, Emmanuel, et al. “Convolutional Neural Networks for Large-Scale Remote-Sensing Image Classification.” IEEE Transactions on Geoscience and Remote Sensing, vol. 55, no. 2, 2017, pp. 645–657.  https://na03.alma.exlibrisgroup.com/view/action/uresolver.do?operation=resolveService&package_service_id=37839428510002901&institutionId=2901&customerId=2900. Accessed 8 Oct. 2020.
  3. Sentences:
    1. Because kernels are generally localized, CNNs work very well on tasks where pieces of data that are close to each other are more likely to be related, such as images.
    2. A CNN can be thought of as a neural network that takes convolved inputs instead of raw inputs, and it learns in much the same way as a traditional neural network otherwise.

Section 3: Recurrent Neural Networks

  1. Another type of neural network, the recurrent neural network, tends to be most useful in situations where looking at a single training example is ineffective and context is required.
  2. Sources:
    1. DiPietro, Robert, and Gregory D. Hager. “Chapter 21 – Deep Learning: RNNs and LSTM.” Handbook of Medical Image Computing and Computer Assisted Intervention, edited by Kevin Zhou et al., Academic Press, 2020, pp. 481–501. ScienceDirect. https://www-sciencedirect-com.proxy.library.cpp.edu/science/article/pii/B9780128161760000260. Accessed 29 Oct. 2020.
    2. Pouyanfar, Samira, et al. “A Survey on Deep Learning.” ACM Computing Surveys (CSUR), vol. 51, no. 5, 2019, pp. 1–36. https://na03.alma.exlibrisgroup.com/view/action/uresolver.do?operation=resolveService&package_service_id=37839874190002901&institutionId=2901&customerId=2900. Accessed 8 Oct. 2020.
  3. Sentences:
    1. A recurrent neural network is one that essentially maintains a short-term memory of previous inputs and uses its memorized inputs to determine its output.
    2. RNNs are very useful in areas such as natural language processing where context is absolutely necessary; to understand the meaning of a single word in the sentence, the neural net would need to look at the words before it as well.

Section 4: Generative Adversarial Networks

  1. The final type of neural network, the generative adversarial network (GAN) is different from the other two in that its primary goal is to synthesize data that is very realistic instead of performing an operation on existing data.
  2. Sources:
    1. Hong, Yongjun, et al. “How Generative Adversarial Networks and Their Variants Work.” ACM Computing Surveys (CSUR), vol. 52, no. 1, 2019, pp. 1–43. https://dl-acm-org.proxy.library.cpp.edu/doi/abs/10.1145/3301282. Accessed 29 Oct. 2020.
  3. Sentences:
    1. A GAN works by having two neural networks: one to generate images, and one to try to choose which images are generated and which are real, and they both compete against each other, training themselves in the process.
    2. GANs are commonly used to generate realistic-looking images, and well-trained GANs can produce images that are indistinguishable from real captured images without looking very closely.

 

 

 

Discussion

  1. Neural networks are highly varied, each with their own specific method of functioning and their own optimal use case. <-Because this is an explanatory essay, the student is combining the topic sentence and the direction of the discussion into one sentence!
  2. CNNs tend to be useful on things such as images, where data tends to be close to what it is related to over multiple decisions. Convolutions also prove very useful when dealing with large training examples, because they can reduce the size of the data before it gets to the neural network proper. RNNs, meanwhile, are useful in situations where it is necessary to look at previous examples when making a conclusion, which lends them well to working with sequences of data points such as words or musical notes. GANs are separate, and should be used for projects involving image generation. <- Since this is an explanatory research paper on the different types of networks, the discussion section is mostly concluding when and how they can be used. This student overrode requirement C. by simply writing more sentences. You can do it this way, or you can write a bullet about your discussion point and then two sentences that would be in this section.

Conclusion

  1. This is incredibly important to know when doing projects involving neural networks because using a given type of network on unsuited data would drastically decrease the efficiency of the algorithm, making it very difficult to perform the task. <-for this section, the student did not look to the future and was a bit confused. Do not follow this section as a guide.
  2. However, this information should make any kind of neural network-related project much easier by providing context on what types should be used in which situations and how best to use them.

Get Professional Assignment Help Cheaply

Buy Custom Essay

Are you busy and do not have time to handle your assignment? Are you scared that your paper will not make the grade? Do you have responsibilities that may hinder you from turning in your assignment on time? Are you tired and can barely handle your assignment? Are your grades inconsistent?

Whichever your reason is, it is valid! You can get professional academic help from our service at affordable rates. We have a team of professional academic writers who can handle all your assignments.

Why Choose Our Academic Writing Service?

  • Plagiarism free papers
  • Timely delivery
  • Any deadline
  • Skilled, Experienced Native English Writers
  • Subject-relevant academic writer
  • Adherence to paper instructions
  • Ability to tackle bulk assignments
  • Reasonable prices
  • 24/7 Customer Support
  • Get superb grades consistently

Online Academic Help With Different Subjects

Literature

Students barely have time to read. We got you! Have your literature essay or book review written without having the hassle of reading the book. You can get your literature paper custom-written for you by our literature specialists.

Finance

Do you struggle with finance? No need to torture yourself if finance is not your cup of tea. You can order your finance paper from our academic writing service and get 100% original work from competent finance experts.

Computer science

Computer science is a tough subject. Fortunately, our computer science experts are up to the match. No need to stress and have sleepless nights. Our academic writers will tackle all your computer science assignments and deliver them on time. Let us handle all your python, java, ruby, JavaScript, php , C+ assignments!

Psychology

While psychology may be an interesting subject, you may lack sufficient time to handle your assignments. Don’t despair; by using our academic writing service, you can be assured of perfect grades. Moreover, your grades will be consistent.

Engineering

Engineering is quite a demanding subject. Students face a lot of pressure and barely have enough time to do what they love to do. Our academic writing service got you covered! Our engineering specialists follow the paper instructions and ensure timely delivery of the paper.

Nursing

In the nursing course, you may have difficulties with literature reviews, annotated bibliographies, critical essays, and other assignments. Our nursing assignment writers will offer you professional nursing paper help at low prices.

Sociology

Truth be told, sociology papers can be quite exhausting. Our academic writing service relieves you of fatigue, pressure, and stress. You can relax and have peace of mind as our academic writers handle your sociology assignment.

Business

We take pride in having some of the best business writers in the industry. Our business writers have a lot of experience in the field. They are reliable, and you can be assured of a high-grade paper. They are able to handle business papers of any subject, length, deadline, and difficulty!

Statistics

We boast of having some of the most experienced statistics experts in the industry. Our statistics experts have diverse skills, expertise, and knowledge to handle any kind of assignment. They have access to all kinds of software to get your assignment done.

Law

Writing a law essay may prove to be an insurmountable obstacle, especially when you need to know the peculiarities of the legislative framework. Take advantage of our top-notch law specialists and get superb grades and 100% satisfaction.

What discipline/subjects do you deal in?

We have highlighted some of the most popular subjects we handle above. Those are just a tip of the iceberg. We deal in all academic disciplines since our writers are as diverse. They have been drawn from across all disciplines, and orders are assigned to those writers believed to be the best in the field. In a nutshell, there is no task we cannot handle; all you need to do is place your order with us. As long as your instructions are clear, just trust we shall deliver irrespective of the discipline.

Are your writers competent enough to handle my paper?

Our essay writers are graduates with bachelor's, masters, Ph.D., and doctorate degrees in various subjects. The minimum requirement to be an essay writer with our essay writing service is to have a college degree. All our academic writers have a minimum of two years of academic writing. We have a stringent recruitment process to ensure that we get only the most competent essay writers in the industry. We also ensure that the writers are handsomely compensated for their value. The majority of our writers are native English speakers. As such, the fluency of language and grammar is impeccable.

What if I don’t like the paper?

There is a very low likelihood that you won’t like the paper.

Reasons being:

  • When assigning your order, we match the paper’s discipline with the writer’s field/specialization. Since all our writers are graduates, we match the paper’s subject with the field the writer studied. For instance, if it’s a nursing paper, only a nursing graduate and writer will handle it. Furthermore, all our writers have academic writing experience and top-notch research skills.
  • We have a quality assurance that reviews the paper before it gets to you. As such, we ensure that you get a paper that meets the required standard and will most definitely make the grade.

In the event that you don’t like your paper:

  • The writer will revise the paper up to your pleasing. You have unlimited revisions. You simply need to highlight what specifically you don’t like about the paper, and the writer will make the amendments. The paper will be revised until you are satisfied. Revisions are free of charge
  • We will have a different writer write the paper from scratch.
  • Last resort, if the above does not work, we will refund your money.

Will the professor find out I didn’t write the paper myself?

Not at all. All papers are written from scratch. There is no way your tutor or instructor will realize that you did not write the paper yourself. In fact, we recommend using our assignment help services for consistent results.

What if the paper is plagiarized?

We check all papers for plagiarism before we submit them. We use powerful plagiarism checking software such as SafeAssign, LopesWrite, and Turnitin. We also upload the plagiarism report so that you can review it. We understand that plagiarism is academic suicide. We would not take the risk of submitting plagiarized work and jeopardize your academic journey. Furthermore, we do not sell or use prewritten papers, and each paper is written from scratch.

When will I get my paper?

You determine when you get the paper by setting the deadline when placing the order. All papers are delivered within the deadline. We are well aware that we operate in a time-sensitive industry. As such, we have laid out strategies to ensure that the client receives the paper on time and they never miss the deadline. We understand that papers that are submitted late have some points deducted. We do not want you to miss any points due to late submission. We work on beating deadlines by huge margins in order to ensure that you have ample time to review the paper before you submit it.

Will anyone find out that I used your services?

We have a privacy and confidentiality policy that guides our work. We NEVER share any customer information with third parties. Noone will ever know that you used our assignment help services. It’s only between you and us. We are bound by our policies to protect the customer’s identity and information. All your information, such as your names, phone number, email, order information, and so on, are protected. We have robust security systems that ensure that your data is protected. Hacking our systems is close to impossible, and it has never happened.

How our Assignment Help Service Works

1. Place an order

You fill all the paper instructions in the order form. Make sure you include all the helpful materials so that our academic writers can deliver the perfect paper. It will also help to eliminate unnecessary revisions.

2. Pay for the order

Proceed to pay for the paper so that it can be assigned to one of our expert academic writers. The paper subject is matched with the writer’s area of specialization.

3. Track the progress

You communicate with the writer and know about the progress of the paper. The client can ask the writer for drafts of the paper. The client can upload extra material and include additional instructions from the lecturer. Receive a paper.

4. Download the paper

The paper is sent to your email and uploaded to your personal account. You also get a plagiarism report attached to your paper.

smile and order essay GET A PERFECT SCORE!!! smile and order essay Buy Custom Essay


Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more
error: Content is protected !!
Open chat
1
Need assignment help? You can contact our live agent via WhatsApp using +1 718 717 2861

Feel free to ask questions, clarifications, or discounts available when placing an order.
  +1 718 717 2861           + 44 161 818 7126           [email protected]
  +1 718 717 2861         [email protected]