Compare commits

...

2 Commits
master ... f18

Author SHA1 Message Date
Justin Hsu
768ba69a22 Archive target. 2018-12-25 17:19:21 -06:00
Justin Hsu
8fa41673c9 Final project titles. 2018-12-25 17:03:36 -06:00
2 changed files with 22 additions and 3 deletions

View File

@ -1,6 +1,9 @@
DEPLOY=driftless:/u/j/u/justhsu/public/html-s/teaching/current/cs839 HOST=driftless
DEPLOY=/u/j/u/justhsu/public/html-s/teaching/current/cs839
# DEPLOY=rockhopper-07.cs.wisc.edu:/u/j/u/justhsu/public/html-s/teaching/current/cs839 # DEPLOY=rockhopper-07.cs.wisc.edu:/u/j/u/justhsu/public/html-s/teaching/current/cs839
# DEPLOY=jackknife:/home/justhsu/html/staging/cs839/ # DEPLOY=jackknife:/home/justhsu/html/staging/cs839/
ARCHIVE=/u/j/u/justhsu/public/html-s/teaching/f18/cs839
build: build:
make assets && mkdocs build make assets && mkdocs build
@ -18,4 +21,11 @@ deploy:
make build make build
find . -type d -exec chmod a+rx {} \; find . -type d -exec chmod a+rx {} \;
find . -type f -exec chmod a+r {} \; find . -type f -exec chmod a+r {} \;
rsync -avzp --delete -e ssh ./site/ $(DEPLOY) rsync -avzp --delete -e ssh ./site/ $(HOST):$(DEPLOY)
archive:
make build
find . -type d -exec chmod a+rx {} \;
find . -type f -exec chmod a+r {} \;
ssh $(HOST) mkdir -p $(ARCHIVE)
rsync -avzp --delete -e ssh ./site/ $(HOST):$(ARCHIVE)

View File

@ -1,3 +1,12 @@
# Final Projects # Final Projects
To come! - Yue Gao and Fayi Zhang. *Theory and Optimization of Homomorphic Encryption*.
- Yinglun Zhu. *Answering Evolving Sets of Queries*.
- Yan Nan and Shimaa Ahmed. *Private Voice Transcription*.
- Samuel Drews. *Verifying Decision Tree Stability*.
- Madeleine Berner and Yaman Yu. *Evaluate Adversarial Machine Learning Attacks
on Chinese Character Recognition*.
- Kyrie Zhou and Meghana Moorthy Bhat. *Detecting Fake News with NLP*.
- Hiba Nassereddine and Junxiong Huang. *Adversarial Machine Learning and Autonomous Vehicles*.
- Zichuan Tian and Arjun Kashyap. *pyDiff: Differential Privacy as a Library*.
- Zhiyi Chen and Yiqin Pan. *Detect Compromised Items from Data with Adversarial Attacks*.