Thursday, October 14, 2021

مراجع Machine Translation

البحث بجوجل:

example test and train machine translation in nlp

كورس

https://www.coursera.org/learn/machinetranslation/home/welcome

--

https://www.analyticssteps.com/blogs/4-types-machine-translation-nlp

https://core.ac.uk/download/pdf/72802356.pdf

https://www.analyticsvidhya.com/blog/2019/01/neural-machine-translation-keras/

For train

by google

https://towardsdatascience.com/neural-machine-translation-15ecf6b0b

by bython

https://machinelearningmastery.com/develop-neural-machine-translation-system-keras/

https://stackabuse.com/python-for-nlp-neural-machine-translation-with-seq2seq-in-keras/

---


https://upcommons.upc.edu/bitstream/handle/2117/349371/156436.pdf?sequence=1


https://www.smartydns.com/knowledge-base/vpn-benefits-and-disadvantages/?amp


https://vpnoverview.com/vpn-information/what-is-a-vpn/




مراجع Genetic Code

 

https://www.ndsu.edu/pubweb/~mcclean/plsc411/History-of-Genetics-and-Genomics-narrative-and-overheads.pdf

https://www.ebi.ac.uk/sites/ebi.ac.uk/files/shared/documents/phdtheses/klawler_thesis_final.pdf

https://guava.physics.uiuc.edu/~nigel/courses/569/Essays_Spring2006/files/jeraldo.pdf

---


https://dspace.stir.ac.uk/bitstream/1893/26007/1/thesis.pdf


https://www.researchgate.net/publication/326717267_The_Study_of_the_Secrets_of_the_Genetic_Code

http://www.ece.iit.edu/~biitcomm/research/Genetic%20Code/The%20Origin%20and%20Evolution%20of%20the%20Genetic%20Code%20Statistical%20and%20Experimental%20Investigations%20-%202001.pdf



مراجع Arabic Sentiment


Detecting Arabic Depressed Users from Twitter Data

https://www.researchgate.net/publication/338761456_Detecting_Arabic_Depressed_Users_from_Twitter_Data

Arabic Sentiment Analysis using Deep Learning for COVID-19 Twitter Data

https://pesquisa.bvsalud.org/global-literature-on-novel-coronavirus-2019-ncov/resource/en/covidwho-914934



Wednesday, October 13, 2021

dfs not binary tree \\python

 https://steven-chen.medium.com/python-graph-search-dfs-bfs-and-tree-traversal-preorder-inorder-postorder-88be4b1df0f9

https://www.educative.io/edpresso/how-to-implement-depth-first-search-in-python


https://stackabuse.com/depth-first-search-dfs-in-python-theory-and-implementation/


from typing import Dict, List, Any, Union
graph: Dict[Any, Union[List[str], List[Any]]] = dict(
S=['A', 'B', 'C'],
A=['D', 'E', 'G'],
B=['G'], D=[], E=[], G=[], C=['G'])
def dfs(graph, start, target, path, visited = set()):
path.append(start)
visited.add(start)
if start == target:
return path
for neighbour in graph[start]:
if neighbour not in visited:
result = dfs(graph, neighbour, target, path, visited)
if result is not None:
return result
return None
traversal_path = []
traversal_path = dfs(graph, 'S', 'G', traversal_path)
print(traversal_path)

Thursday, October 7, 2021

مراجع AI

 


https://www.coursera.org/learn/ai-for-everyone-ar/lecture


Interactive Transcript - Enable basic transcript mode by pressing the escape key








  • Give example of what AI application most popular is used on a daily basis

  • how will AI impact application development?



https://emerj.com/ai-sector-overviews/everyday-examples-of-ai/


https://blog.adobe.com/en/publish/2018/01/07/5-examples-of-ai-in-our-everyday-lives.html#gs.d2u0zu



https://www.lucidpix.com/10-examples-of-artificial-intelligence-in-our-everyday-lives/


https://usmsystems.com/ai-examples-in-our-daily-life/


---

https://madanswer.com/35316/in-your-opinion-how-will-ai-impact-application-development


https://www.hurix.com/role-of-artificial-intelligence-in-custom-application-development/



https://emerj.com/ai-sector-overviews/everyday-examples-of-ai/


https://blog.adobe.com/en/publish/2018/01/07/5-examples-of-ai-in-our-everyday-lives.html#gs.d2u0zu



https://www.lucidpix.com/10-examples-of-artificial-intelligence-in-our-everyday-lives/


https://usmsystems.com/ai-examples-in-our-daily-life/


---

https://madanswer.com/35316/in-your-opinion-how-will-ai-impact-application-development


https://www.hurix.com/role-of-artificial-intelligence-in-custom-application-development/


مراجع امن الشبكات VPN

virtual private network

https://www.coursera.org/lecture/computer-networking/virtual-private-networks-c9tV0

https://www.youtube.com/watch?v=RqrH4fIi4uo

https://salamatechwiki.org/wiki/%D8%A7%D9%84%D8%B4%D8%A8%D9%83%D8%A9_%D8%A7%D9%84%D8%AE%D8%A7%D8%B5%D8%A9_%D8%A7%D9%84%D8%A7%D9%81%D8%AA%D8%B1%D8%A7%D8%B6%D9%8A%D8%A9_Virtual_Private_Network

https://freedomhacker.net/check-and-see-if-your-vpn-connection-is-secure/

------ 

https://media.defense.gov/2021/Sep/28/2002863184/-1/-1/0/CSI_SELECTING-HARDENING-REMOTE-ACCESS-VPNS-20210928.PDF

Types of Virtual Private Network (VPN) and its Protocols.    

https://www.mppolytechnic.ac.in/mp-staff/notes_upload_photo/CS1Documents5.pdf

Technical Overview of Virtual Private Networks(VPNs).   

https://www.researchgate.net/publication/274929918_Technical_Overview_of_Virtual_Private_NetworksVPNs

The Advantages & Disadvantages of a VP

https://www.cdwg.com/content/cdwg/en/articles/security/advantages-and-disadvantages-of-vpn.html


https://eshop.macsales.com/blog/48649-network-and-security-series-the-benefits-of-virtual-private-networks-vpns/

IPSec, VPN, and Firewall Concepts

https://www.cs.unh.edu/~it666/reading_list/Networking/firewall_concept_terms.pdf


https://library.wmo.int/doc_num.php?explnum_id=5221

Technical Overview of Virtual Private Networks(VPNs)

https://www.researchgate.net/publication/274929918_Technical_Overview_of_Virtual_Private_NetworksVPNs

ZeroTier VPN Test

https://www.researchgate.net/publication/347954150_ZeroTier_VPN_Test

https://www.researchgate.net/publication/345641555_Using_WireGuard_VPN

VPN encryption

https://support.google.com/chromebook/answer/1282338?hl=en

https://www.cactusvpn.com/beginners-guide-to-vpn/vpn-encryption/